deep-merge-js

1.0.6 • Public • Published

deep-merge-js

Plain javascript function to deeply merge objects

Bundle is 1.4Kb -> gzipped: 682B

Getting Started

Example Usage

const merge = require('deep-merge-js')
 
const obj1 = {
  foo: 1,
  bar: [1, 2, 3]
}
 
const obj2 = {
  foo: 2,
  baz: {
    test: [1, 2, 3]
  }
}
 
 
merge(obj1, obj2);
 
/*
  Output will be
  {
    foo: 1,
    bar: [1, 2, 3],
    baz: {
      test: [1, 2, 3]
    }
  }
*/

Installation

With npm do:

npm install deep-merge-js

Include

const merge = require('deep-merge-js')

Testing

With npm do:

npm test

Package Sidebar

Install

npm i deep-merge-js

Weekly Downloads

12

Version

1.0.6

License

ISC

Unpacked Size

1.91 kB

Total Files

3

Last publish

Collaborators

  • smiranton.ua