Files
sanfan.hx ec46955a9e temp
2019-05-28 10:32:16 +08:00

6 lines
165 B
JavaScript

module.exports = isPromise;
function isPromise(obj) {
return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
}