Skip to content
New issue

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

Sets and Maps are not compared properly #75

Closed
BridgeAR opened this issue Dec 4, 2019 · 0 comments
Closed

Sets and Maps are not compared properly #75

BridgeAR opened this issue Dec 4, 2019 · 0 comments

Comments

@BridgeAR
Copy link

BridgeAR commented Dec 4, 2019

The following does not yield the expected result. The order of the entries should not matter but even when ordered, the result is 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
@ljharb ljharb closed this as completed in e4febb4 Dec 5, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant