mirror of
https://github.com/thangisme/notes.git
synced 2024-10-31 20:47:19 -04:00
.. | ||
index.js | ||
license | ||
package.json | ||
readme.md |
array-find-index
ES2015
Array#findIndex()
ponyfill
Install
$ npm install --save array-find-index
Usage
const arrayFindIndex = require('array-find-index');
arrayFindIndex(['rainbow', 'unicorn', 'pony'], x => x === 'unicorn');
//=> 1
API
Same as Array#findIndex()
, but with the input array as the first argument.
License
MIT © Sindre Sorhus