1.0.6 • Published 4 years ago

deep-merge-js v1.0.6

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

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