A tiny, faster alternative to native Array.prototype.includes
npm install @arr/includes> A tiny, faster alternative to native Array.prototype.includes
```
$ npm install --save @arr/includes
`js
import includes from '@arr/includes';
const foo = ['a', 'b', 'c', 'd'];
includes(foo, 'c');
//=> true
includes(foo, 'g');
//=> false
includes(foo, 'b', 2);
//=> false
`
#### arr
Type: Array
The array to iterate upon.
#### item
Type: Mixed
The element to search for.
#### fromIndex
Type: Integer0
Default: arr` at which to begin searching.
The position in the
MIT © Luke Edwards