isPending.js 317 B

123456789
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. function isPending(promise, timeout = 100) {
  4. return Promise.race([
  5. promise.then(() => false).catch(() => false),
  6. new Promise((resolve) => setTimeout(() => resolve(true), timeout)),
  7. ]);
  8. }
  9. exports.default = isPending;