solorice/vscode/extensions/ritwickdey.liveserver-5.7.5/node_modules/array-find-index
2022-04-28 20:54:44 +03:00
..
index.js Added vscode settings 2022-04-28 20:54:44 +03:00
license Added vscode settings 2022-04-28 20:54:44 +03:00
package.json Added vscode settings 2022-04-28 20:54:44 +03:00
readme.md Added vscode settings 2022-04-28 20:54:44 +03: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