MCPcopy
hub / github.com/caolan/async / until

Function until

lib/until.js:25–29  ·  view source on GitHub ↗
(test, iteratee, callback)

Source from the content-addressed store, hash-verified

23 * callback. Invoked with (err, [results]);
24 */
25export default function until(test, iteratee, callback) {
26 whilst(function() {
27 return !test.apply(this, arguments);
28 }, iteratee, callback);
29}

Callers

nothing calls this directly

Calls 1

whilstFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…