A tiny, faster alternative to native Array.prototype.forEach
npm install @arr/foreach> A tiny, faster alternative to native Array.prototype.forEach
:warning: Unlike native, @arr/foreach does _not_ support the optional thisArg parameter!
```
$ npm install --save @arr/foreach
`js
import forEach from '@arr/foreach';
forEach(['a', 'b', 'c'], val => {
console.log(val);
});
//=> a
//=> b
//=> c
`
#### arr
Type: Array
The array to iterate upon.
#### callback(value[, index, array])
Type: Function
Function to test for each element, taking three arguments:
* value (required) -- The current element being processed in the array.
* index (optional) -- The index of the current element being processed in the array.
* array (optional) -- The array forEach` was called upon.
MIT © Luke Edwards