GT2/GT2-iOS/node_modules/is-promise/index.js
2018-02-12 17:26:06 +00:00

5 lines
165 B
JavaScript

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