"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.thenable = void0;
// returns true if the given value is a thenable objectfunctionthenable(o) {
return o !== undefined && o !== null && typeof o.then === 'function';
}
exports.thenable = thenable;