summaryrefslogtreecommitdiff
path: root/build-es/each.js
blob: 384bb0a89254356b67e2f052e95110e8634f7103 (plain)
1
2
3
4
5
6
7
8
'use strict';

import eachOf from './eachOf';
import withoutIndex from './internal/withoutIndex';

export default function each(arr, iterator, cb) {
    return eachOf(arr, withoutIndex(iterator), cb);
}