Blame view

node_modules/is-promise/index.js 165 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
  module.exports = isPromise;
  
  function isPromise(obj) {
    return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
  }