Package Exports
- node-document-differ-objectdiff
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-document-differ-objectdiff) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
NODE-DOCUMENT-DIFFER-OBJECTDIFF 
Differ adapter objectdiff for node-document ODM for Node.js.
Installation
$ npm install node-document-differ-objectdiffUsage
Basic:
var Differ = require('node-document-differ-objectdiff');
var differ = new Differ();
var a = {foo: 1, bar: "baz"},
b = {foo: 2, baz: "qux"};
differ.diff(a, b, function(err, diff, identical) {
console.log("Equal: %s \nDiff:\n", identical, diff);
});For details; see node-document.
Test
Local tests:
$ make testLicense
Released under the MIT license.
Copyright (c) Jonas Grimfelt