object-combine

2.5.0 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i object-combine

Weekly Downloads

0

Version

2.5.0

License

UNLICENSED

Last publish

Collaborators

  • ajithranka
  • bkowshik