diff options
Diffstat (limited to 'build/es/each.js')
-rw-r--r-- | build/es/each.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/build/es/each.js b/build/es/each.js new file mode 100644 index 0000000..384bb0a --- /dev/null +++ b/build/es/each.js @@ -0,0 +1,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); +} |