node-ejs-renderer/node_modules/thingies/es2020/until.js
2024-06-09 13:55:01 -04:00

13 lines
334 B
JavaScript

"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;