Socket
Socket
Sign inDemoInstall

array-find

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

array-find

ES6 Array.find ponyfill. Return the first array element which satisfies a testing function.


Version published
Maintainers
1
Weekly downloads
900,510
decreased by-6.99%

Weekly downloads

Readme

Source

array-find

Build Status

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.

Usage

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.

Install

$ npm install array-find

License

MIT

Keywords

FAQs

Last updated on 21 May 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc