Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

index.js 320B

123456789101112131415
  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. // TODO: Remove this for the next major release
  13. module.exports.default = isPromise;