UNPKG

319 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.isPromise = void 0;
4function isPromise(obj) {
5 return !!obj && (typeof obj === "object" || typeof obj === "function")
6 && typeof obj.then === "function";
7}
8exports.isPromise = isPromise;
9//# sourceMappingURL=isPromise.js.map
\No newline at end of file