Lines Matching refs:eachfn
226 function applyEach (eachfn) { argument
230 return eachfn(fns, (fn, cb) => {
238 function _asyncMap(eachfn, arr, iteratee, callback) { argument
244 return eachfn(arr, (value, _, iterCb) => {
2309 return (eachfn, arr, _iteratee, cb) => {
2313 eachfn(arr, (value, _, callback) => {
2952 function filterArray(eachfn, arr, iteratee, callback) { argument
2954 eachfn(arr, (x, index, iterCb) => {
2969 function filterGeneric(eachfn, coll, iteratee, callback) { argument
2971 eachfn(coll, (x, index, iterCb) => {
2987 function _filter(eachfn, coll, iteratee, callback) { argument
2989 return filter(eachfn, coll, wrapAsync(iteratee), callback);
3670 var parallel = awaitify((eachfn, tasks, callback) => {
3673 eachfn(tasks, (task, key, taskCb) => {
4417 function reject(eachfn, arr, _iteratee, callback) { argument
4419 return _filter(eachfn, arr, (value, cb) => {