Yet another equality node module
This Node module is port to CoffeeScript of the old isEqual
implementation
from underscore that was removed in
this commit.
It is basically the same as underscore's current isEqual
function except that
it uses either value's isEqual
function when available.
npm install tantamount
isEqual = require 'tantamount'
Tests if a
is equal to b
.
a
- A value to test.
b
- A value to test.
Returns true
if the two objects are equal, false
otherwise.
You can use this library as your Jasmine equality tester by doing:
jasmine.getEnv().addEqualityTester(require('tantamount'))
You can use this library to replace the default _.isEqual
by doing:
require('underscore').isEqual = require('tantamount')