lucaconte 7cc26e831d presentations 6 yıl önce
..
index.js 7cc26e831d presentations 6 yıl önce
license 7cc26e831d presentations 6 yıl önce
package.json 7cc26e831d presentations 6 yıl önce
readme.md 7cc26e831d presentations 6 yıl önce

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