Comparing version 0.1.0 to 0.1.1
0.1.1 / 2013-09-18 | ||
================== | ||
* bug: [fix] last key of deep object ignored | ||
0.1.0 / 2013-09-18 | ||
@@ -3,0 +8,0 @@ ================== |
@@ -249,3 +249,3 @@ /*! | ||
var key; | ||
for (i = ka.length - 1; i >= 1; i--) { | ||
for (i = ka.length - 1; i >= 0; i--) { | ||
key = ka[i]; | ||
@@ -252,0 +252,0 @@ if (!deepEqual(a[key], b[key], m)) { |
{ | ||
"name": "deep-eql" | ||
, "version": "0.1.0" | ||
, "version": "0.1.1" | ||
, "description": "Improved deep equality testing for Node.js and the browser." | ||
@@ -5,0 +5,0 @@ , "author": "Jake Luer <jake@alogicalparadox.com>" |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8731