wait-for-predicate
v0.3.0
Published
A function which resolves a promise when a given predicate becomes true
Downloads
4
Readme
Wait For Predicate
A function which resolves a promise whether a given predicate becomes true.
Installation
npm i wait-for-predicate
Usage
const { waitForPredicate, TIMEOUT_EXPIRED } = require("wait-for-predicate");
let exit = false;
const predicate = () => !!exit;
try {
setTimeout(() => { exit = true }, 5000);
await waitForPredicate(predicate, { timeout: 3000 });
} catch(error) {
if (error.message === TIMEOUT_EXPIRED) {
console.error(TIMEOUT_EXPIRED);
}
throw error;
}