object-combine
v2.5.0
Published
Combine two objects
Downloads
3
Readme
object-combine
me: Hey @ajithranka, how do I do something like this?
ajithranka: Ummm. Give me a minute.
...
npm publish
Combine two objects using a combineFunction
.
Install
npm install object-combine
Example
var objectCombine = require('object-combine');
var items = {'chairs': 10, 'tables': 4};
var moreItems = {'chairs': 2, 'stools': 34};
var combineFunction = function (a, b) { return a + b; }
var combined = objectCombine(items, moreItems, combineFunction);
console.log(combined);
# {'chairs': 12, 'tables': 4, 'stools': 34}
Testing
# Install package dependencies.
npm install
# Run tests.
npm test