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

Function doUntil

lib/doUntil.js:23–27  ·  view source on GitHub ↗
(iteratee, test, callback)

Source from the content-addressed store, hash-verified

21 * callback. Invoked with (err, [results]);
22 */
23export default function doUntil(iteratee, test, callback) {
24 doWhilst(iteratee, function() {
25 return !test.apply(this, arguments);
26 }, callback);
27}

Callers

nothing calls this directly

Calls 1

doWhilstFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…