mirror of
https://github.com/thangisme/notes.git
synced 2024-10-31 23:37:18 -04:00
686 B
686 B
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