mirror of
https://github.com/rxliuli/apps.apple.com.git
synced 2025-11-09 22:00:32 +00:00
9 lines
331 B
JavaScript
9 lines
331 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isPromise = void 0;
|
|
/** Whether the given object is a promise. */
|
|
function isPromise(obj) {
|
|
return obj !== null && typeof obj === "object" && typeof obj.then === "function";
|
|
}
|
|
exports.isPromise = isPromise;
|
|
//# sourceMappingURL=promise.js.map
|