index.js 104 B

12345
  1. module.exports = isPromise;
  2. function isPromise(obj) {
  3. return obj && typeof obj.then === 'function';
  4. }