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ů.
123456789101112131415 |
- 'use strict';
-
- const isPromise = input => (
- input instanceof Promise ||
- (
- input !== null &&
- typeof input === 'object' &&
- typeof input.then === 'function' &&
- typeof input.catch === 'function'
- )
- );
-
- module.exports = isPromise;
- // TODO: Remove this for the next major release
- module.exports.default = isPromise;
|