(iteratee, test, callback)
| 21 | * callback. Invoked with (err, [results]); |
| 22 | */ |
| 23 | export default function doUntil(iteratee, test, callback) { |
| 24 | doWhilst(iteratee, function() { |
| 25 | return !test.apply(this, arguments); |
| 26 | }, callback); |
| 27 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…