object-deep-differ

1.1.0 • Public • Published

Object deep differ

Return the difference between the source object and the default object.

Installation

npm install --save object-deep-differ

Usage

const diff = require('object-deep-differ');
 
const defaultObj = {a:{b:{c:'hello'}}}
 
const sourceObj = {a:{d:{e:'hello world'}}}
 
console.log(diff(defaultObj, sourceObj)); // outputs {a:{d:{e:'hello world'}}}
 

Tests

npm test

Package Sidebar

Install

npm i object-deep-differ

Weekly Downloads

37

Version

1.1.0

License

MIT

Last publish

Collaborators

  • marc.rivelles