index.js 201 B

123456
  1. module.exports = isPromise;
  2. module.exports.default = isPromise;
  3. function isPromise(obj) {
  4. return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
  5. }