amis-rpc-design/node_modules/fork-ts-checker-webpack-plugin/lib/utils/async/is-pending.js
2023-10-07 19:42:30 +08:00

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;