Skip to content

A port of Node v6's internal _deepEqual function in a universal style

Notifications You must be signed in to change notification settings

twada/universal-deep-strict-equal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

universal-deep-strict-equal

A port of Node v6's internal _deepEqual function in a universal style.

Build Status NPM version License

Sauce Test Status

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.

About

A port of Node v6's internal _deepEqual function in a universal style

Resources

Stars

Watchers

Forks

Packages

No packages published