Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
array.prototype.find
Advanced tools
Array.prototype.find
polyfillSimple ES6 Array.prototype.find polyfill for older environments taken from es6-shim.
For browsers and node.js.
npm install array.prototype.find
Array.prototype.find(predicate[, thisArg])
returns first item that matches predicate
function.predicate(value, index, collection)
: takes three arguments
value
: current collection elementindex
: current collection element indexcollection
: the collection// as a function
var find = require('array.prototype.find');
find([1, 2], function (x) { return x === 2; }); // 2
// to shim it
require('array.prototype.find').shim();
Code example:
// Default:
[1, 5, 10, 15].find(function (a) { return a > 9; }) // 10
Tests, fixes and travis support added by _duncanhall
The MIT License (c) 2016 Paul Miller (http://paulmillr.com)
2.0.1
node
v7.0
, v6.9
, v5.12
; improve test matrixnpm run lint
FAQs
Array.prototype.find ES6 polyfill.
The npm package array.prototype.find receives a total of 950,223 weekly downloads. As such, array.prototype.find popularity was classified as popular.
We found that array.prototype.find demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.