Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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;