index.js 272 B

1234567891011121314
  1. 'use strict';
  2. const isPromise = input => (
  3. input instanceof Promise ||
  4. (
  5. input !== null &&
  6. typeof input === 'object' &&
  7. typeof input.then === 'function' &&
  8. typeof input.catch === 'function'
  9. )
  10. );
  11. module.exports = isPromise;
  12. module.exports.default = isPromise;