|
hace 7 años | |
---|---|---|
.. | ||
.npmignore | hace 7 años | |
.travis.yml | hace 7 años | |
LICENSE | hace 7 años | |
README.md | hace 7 años | |
find.js | hace 7 años | |
package.json | hace 7 años | |
test.js | hace 7 años |
ES 2015 Array.find
ponyfill.
Ponyfill: A polyfill that doesn't overwrite the native method.
Find array elements. Executes a callback for each element, returns the first element for which its callback returns a truthy value.
var find = require('array-find');
var numbers = [1, 2, 3, 4];
find(numbers, function (element, index, array) {
return element === 2;
});
// => 2
var robots = [{name: 'Flexo'}, {name: 'Bender'}, {name: 'Buster'}];
find(robots, function (robot, index, array) {
return robot.name === 'Bender';
});
// => {name: 'Bender'}
find(robots, function (robot, index, array) {
return robot.name === 'Fry';
});
// => undefined
Optionally pass in an object as third argument to use as this
when executing callback.
$ npm install array-find
MIT