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