mirror of
https://github.com/rxliuli/apps.apple.com.git
synced 2025-11-10 01:00:33 +00:00
init commit
This commit is contained in:
9
node_modules/@jet/environment/util/promise.js
generated
vendored
Normal file
9
node_modules/@jet/environment/util/promise.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
"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
|
||||
Reference in New Issue
Block a user