chensenlai 10988628a0 语音房项目初始化 5 lat temu
..
index.js 10988628a0 语音房项目初始化 5 lat temu
license 10988628a0 语音房项目初始化 5 lat temu
package.json 10988628a0 语音房项目初始化 5 lat temu
readme.md 10988628a0 语音房项目初始化 5 lat temu

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