is-equal-shallow icon indicating copy to clipboard operation
is-equal-shallow copied to clipboard

Does a shallow comparison of two objects, returning false if the keys or values differ.

Results 2 is-equal-shallow issues
Sort by recently updated
recently updated
newest added

For me (`should` 13.2.1), all tests always pass. Even when I trash the implementation. It seems `….should.be.true` returns a function. Calling that function makes the tests behave as expected for...

JavaScript non-primitive objects are memory references. So, if variables in two different objects point to the same memory reference, it should return true. Take this code for example: ```javascript const...