conventional-changelog-action/node_modules/array-find-index
Tycho Bokdam 78aace1247
chore: Test release
2019-10-18 10:21:11 +02:00
..
index.js chore: Test release 2019-10-18 10:21:11 +02:00
license chore: Test release 2019-10-18 10:21:11 +02:00
package.json chore: Test release 2019-10-18 10:21:11 +02:00
readme.md chore: Test release 2019-10-18 10:21:11 +02:00

readme.md

array-find-index Build Status

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