
Product
Introducing the Alert Details Page: A Better Way to Explore Alerts
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.
@arr/reduce
Advanced tools
A tiny, faster alternative to native
Array.prototype.reduce
$ npm install --save @arr/reduce
import reduce from '@arr/reduce';
const total = reduce([0, 1, 2, 3], (sum, value) => sum + value);
//=> 6
const flattened = reduce([[0, 1], [2, 3], [4, 5]], (a, b) => a.concat(b), []);
//=> [0, 1, 2, 3, 4, 5]
Type: Array
The array to iterate upon.
Type: Function
Function to test for each element, taking four arguments:
reduce was called upon.Type: Mixed
Default: arr[0]
The value to use as the first argument to the first call of the callback. If no initial value is supplied, the first element in the array will be used.
MIT © Luke Edwards
FAQs
A tiny, faster alternative to native Array.prototype.reduce
The npm package @arr/reduce receives a total of 23 weekly downloads. As such, @arr/reduce popularity was classified as not popular.
We found that @arr/reduce demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.

Product
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.

Research
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.