1.0.2 • Published 10 years ago

object-join v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

object-join

NPM version build status Test coverage

Merge two objects recursively into a new object.

Installation

$ npm i --save object-join

Overview

/**
 * Initialize
 */

var objectJoin = require('object-join');

/**
 * Declare objects
 */

var obj1 = {foo: 'bar'};
var obj2 = {bin: 'baz'};

/**
 * Merge objects
 */

var newObject = objectJoin(obj1, obj2);
// => {foo: 'bar', bin: 'baz'};

API

objectJoin()

Merges two objects into a new object. Takes {Object} obj1 and {Object} obj2 as arguments. If duplicate keys exist, {Object} obj2's keys take presedence.

var newObject = objectJoin(obj1, obj2);
// => {foo: 'bar', bin: 'baz'};

License

MIT © Yoshua Wuyts