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