Calls a function repeatedly if a condition returns false and until the condition returns true and then resolves the promise
$ npm install --save promise-until
import promiseUntil from 'promise-until';
let count = 0;
promiseUntil(() => {
return count === 5;
}, () => {
count++;
}).then(() => {
console.log(count);
// => 5
});
// ...
let max = 0;
promiseUntil(() => {
return max === 0;
}, () => {
max++;
}).then(() => {
console.log(max);
// => 0
});
Executes action
repeatedly if condition
returns false
and until condition
returns true
and then resolves the promise. Rejects if action
returns a promise that rejects or if an error is thrown anywhere.
Type: function
Should return a boolean of whether to continue.
Type: function
Action to run for each iteration.
You can return a promise and it will be handled.
ISC © Buster Collings