Lines Matching refs:eachfn
220 function applyEach (eachfn) { argument
224 return eachfn(fns, (fn, cb) => {
232 function _asyncMap(eachfn, arr, iteratee, callback) { argument
238 return eachfn(arr, (value, _, iterCb) => {
2303 return (eachfn, arr, _iteratee, cb) => {
2307 eachfn(arr, (value, _, callback) => {
2946 function filterArray(eachfn, arr, iteratee, callback) { argument
2948 eachfn(arr, (x, index, iterCb) => {
2963 function filterGeneric(eachfn, coll, iteratee, callback) { argument
2965 eachfn(coll, (x, index, iterCb) => {
2981 function _filter(eachfn, coll, iteratee, callback) { argument
2983 return filter(eachfn, coll, wrapAsync(iteratee), callback);
3664 var parallel = awaitify((eachfn, tasks, callback) => {
3667 eachfn(tasks, (task, key, taskCb) => {
4411 function reject(eachfn, arr, _iteratee, callback) { argument
4413 return _filter(eachfn, arr, (value, cb) => {