isPromise.js 104 B

12345
  1. var _ = require("./_");
  2. module.exports = function (obj) {
  3. return obj && _.isFunction(obj.then);
  4. };