mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 21:59:12 +08:00
5 lines
104 B
JavaScript
Executable File
5 lines
104 B
JavaScript
Executable File
module.exports = isPromise;
|
|
|
|
function isPromise(obj) {
|
|
return obj && typeof obj.then === 'function';
|
|
} |