1.1.0 • Published 7 years ago

object-deep-differ v1.1.0

Weekly downloads
31
License
MIT
Repository
github
Last release
7 years ago

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