mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-20 16:42:13 +11:00
4 lines
No EOL
156 B
JavaScript
4 lines
No EOL
156 B
JavaScript
export function isPromise(p) {
|
|
return p !== null && typeof p === 'object' && typeof p.then === 'function';
|
|
}
|
|
//# sourceMappingURL=is-promise.util.js.map
|