You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
334 B

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.until = void 0;
const tick_1 = require("./tick");
const until = async (check, pollInterval = 1) => {
do {
if (await check())
return;
await (0, tick_1.tick)(pollInterval);
} while (true);
};
exports.until = until;