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
The following does not yield the expected result. The order of the entries should not matter but even when ordered, the result is false.
false
const de = require('deep-equal') let a = new Map([[{}, 1], [{}, 2], [{}, 1]]) let b = new Map([[{}, 1], [{}, 2], [{}, 1]]) console.log(de(a, b)) // false a = new Set([{}, 1, {}, {}, 2]) b = new Set([{}, 1, {}, 2, {}]) console.log(de(a, b)) // false
The text was updated successfully, but these errors were encountered:
e4febb4
No branches or pull requests
The following does not yield the expected result. The order of the entries should not matter but even when ordered, the result is
false
.The text was updated successfully, but these errors were encountered: