deep-equal-in-any-order
Advanced tools
Comparing version 1.1.11 to 1.1.12
@@ -15,3 +15,3 @@ 'use strict'; | ||
if (!Array.isArray(object)) { | ||
if (!(typeof object === 'object') || object === null) { | ||
if (typeof object !== 'object' || object === null || object instanceof Date) { | ||
return object; | ||
@@ -18,0 +18,0 @@ } |
{ | ||
"name": "deep-equal-in-any-order", | ||
"version": "1.1.11", | ||
"version": "1.1.12", | ||
"description": "chai plugin to match objects and arrays deep equality with arrays (including nested ones) being in any order", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
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
4323