Package Exports
- universal-deep-strict-equal
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 (universal-deep-strict-equal) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
universal-deep-strict-equal
A port of Node v6's internal _deepEqual function in a universal style.
Issues and improvements should be done in Node.js first.
API
deepEqual(actual, expected, [strict])
USAGE
var deepEqual = require('universal-deep-strict-equal');
deepEqual({a:1}, {a:'1'}); // => true
deepEqual({a:1}, {a:'1'}, false); // => true
deepEqual({a:1}, {a:'1'}, true); // => falseINSTALL
npm install universal-deep-strict-equalAUTHOR
CONTRIBUTORS
LICENSE
Licensed under the MIT license.