mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +00:00
.. | ||
CHANGELOG.md | ||
index.js | ||
package.json | ||
README.md |
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); // => false
INSTALL
npm install universal-deep-strict-equal
AUTHOR
CONTRIBUTORS
LICENSE
Licensed under the MIT license.