
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
cascade-reduce
Advanced tools
0.0.4 update: This update adds a new function that allows you to chain iterators just by adding them as extra arguments. You no longer need to invoke the iterators one inside the other. The updated function also does not require you to use a special function to create iterators. Here is a use example for 0.0.4:
// the new method is called 'cascadeNoNest'
var reduce = require('cascadeReduce').cascadeNoNest;
// it takes an iterator and returns a function
var totalArray = reduce(function(acc, el){
return acc + el;
})
// extra iterators are simply functions that take one element
var onlyEven = function(el){
return (el % 2 > 0) ? 0 : el
}
var timesOneHundred = function(el){
return (el * 100)
}
var timesTwo = function(el){
return (el * 2)
}
/*
when you invoke the reduce function with an array, an accumulator
and a chain of iterators, each item will pass through the chain from
left to right before being passed into the reduce function
*/
totalArray([1,2,3,4], 0, onlyEven, timesOneHundred, timesTwo) //=> 1200
Here is the documentation for the original library, which is still available as part of the module:
Cascade Reduce allows you to pass any number of iterators into a reduce function such that each iterator will be invoked with each item in the collection in a chain. There are two functions in this library: cascadeReduce and cascadeIterator.
cascadeReduce = function(iterator){
return function(collection, accumulator, iterator_chain){...};
}
cascadeReduce is a function that takes an iterator and returns a function that takes a collection, an accumulator, and a nested chain of iterators.
cascadeIterator = function(iterator){
return function(item_or_iterator){...}
}
cascadeIterator takes an iterator function and returns a function that can take either another cascadeIterator or an element as its sole argument. Each element from reduce will pass through the iterators, starting with the outermost iterator, and will finally be passed into the iterator that was passed into cascadeReduce.
var reduce = require('cascade-reduce').cascadeReduce;
var iterator = require('cascade-reduce').cascadeIterator;
var totalArray = reduce(function(acc, item){
return (acc + item);
})
var onlyEven = iterator(function(item){
var modTwo = item % 2;
return (modTwo > 0) ? 0 : item;
})
var timesOneHundred = iterator(function(item){
return (item * 100)
})
var timesTwo = iterator(function(item){
return (item * 2)
})
totalArray([1,2,3,4]) //=> 11
totalArray([1,2,3,4], 0, onlyEven) //=> 4
totalArray([1,2,3,4], 0, onlyEven(timesOneHundred)) //=> 400
totalArray([1,2,3,4], 0, onlyEven(timesOneHundred(timesTwo))) //=> 1200
FAQs
Composable iterators for reduce
We found that cascade-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 Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.