Files
starface-outlook-sync-addin/node_modules/thingies/lib/until.js
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02: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;