Files
alfresco-ng2-components/ng2-components/ng2-alfresco-documentslist/dist/node_modules/array-find-index
Mario Romano 07807e7bc3 # add dist
2016-04-21 11:56:31 +01:00
..
2016-04-21 11:56:31 +01:00
2016-04-21 11:56:31 +01:00
2016-04-21 11:56:31 +01:00
2016-04-21 11:56:31 +01:00

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