mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-06 06:08:22 -05:00
9 lines
341 B
JavaScript
9 lines
341 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isPromise = void 0;
|
|
var isFunction_1 = require("./isFunction");
|
|
function isPromise(value) {
|
|
return isFunction_1.isFunction(value === null || value === void 0 ? void 0 : value.then);
|
|
}
|
|
exports.isPromise = isPromise;
|
|
//# sourceMappingURL=isPromise.js.map
|