Skip to content

Instantly share code, notes, and snippets.

@slikts
Created September 14, 2018 11:12
Show Gist options
  • Save slikts/d83232178c1b177b0225b11ae369a0f9 to your computer and use it in GitHub Desktop.
Save slikts/d83232178c1b177b0225b11ae369a0f9 to your computer and use it in GitHub Desktop.
class JSONSet extends Set{
constructor(values) {
super()
this.map = new Map()
if (values) {
[...values].forEach(value => void this.add(value))
}
}
has(value) {
return this.map.has(JSON.stringify(value))
}
add(value) {
const json = JSON.stringify(value)
if (this.map.has(json)) {
return this
}
this.map.set(json, value)
return super.add(value)
}
delete(value) {
const json = JSON.stringify(value)
super.delete(this.map.get(json))
this.map.delete(json)
return this
}
}
new JSONSet()
.add([1,2])
.add([1,2])
.add([2,3])
.delete([2,3])
@slikts
Copy link
Author

slikts commented Sep 14, 2018

new JSONSet([[1, 2], [1, 2], [3, 4]]) -> JSONSet { [1,2], [3,4] }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment