npm.io
2.5.0 • Published 9 years ago

object-combine

Licence
UNLICENSED
Version
2.5.0
Deps
1
Vulns
0
Weekly
0

object-combine

npm npm CircleCI

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