chensenlai 10988628a0 语音房项目初始化 5 anos atrás
..
index.js 10988628a0 语音房项目初始化 5 anos atrás
license 10988628a0 语音房项目初始化 5 anos atrás
package.json 10988628a0 语音房项目初始化 5 anos atrás
readme.md 10988628a0 语音房项目初始化 5 anos atrás

readme.md

array-find-index Build Status

ES2015 Array#findIndex() ponyfill

Ponyfill: A polyfill that doesn't overwrite the native method

Install

$ npm install --save array-find-index

Usage

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