11 lines
347 B
JavaScript
11 lines
347 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isPending = void 0;
|
|
function isPending(promise, timeout = 100) {
|
|
return Promise.race([
|
|
promise.then(() => false).catch(() => false),
|
|
new Promise((resolve) => setTimeout(() => resolve(true), timeout)),
|
|
]);
|
|
}
|
|
exports.isPending = isPending;
|