
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@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 63 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.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.