$ npm install reduce
Like Array.prototype.reduce
but works on Object and accepts optional
this
value
var reduce = require("reduce")
reduce({
key: "value"
, key2: "value2"
, ...
}, function (acc, value, key) {
/* real code */
acc[key] = value
return acc
}, {
this: "context"
}, {
initial: "value"
})
npm install reduce
© 2010 - cnpmjs.org x YWFE | Home | YWFE