test/node_modules/array-find-index
2018-12-13 14:35:49 +01:00
..
index.js added new theme 2018-12-13 14:35:49 +01:00
license added new theme 2018-12-13 14:35:49 +01:00
package.json added new theme 2018-12-13 14:35:49 +01:00
readme.md added new theme 2018-12-13 14:35:49 +01:00

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