Return the difference between the source object and the default object.
npm install --save object-deep-differ
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'}}}
npm test