We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If two arrays have same content but different order, deepEqual returns false.
ar1 = [1, 2, 3] ar2 = [3,1,2]
assert(deepEqual(ar1, ar2), false)
true
The text was updated successfully, but these errors were encountered:
#243
a180af4
- fixes unsorted array comparison
386e0f2
- added config option to specify if sorting is required - refactored code
Merge pull request #244 from AtlasOfLivingAustralia/feature/issue243
8189cec
No branches or pull requests
If two arrays have same content but different order, deepEqual returns false.
examples
actual
assert(deepEqual(ar1, ar2), false)
expected
true
The text was updated successfully, but these errors were encountered: