Created
September 14, 2018 11:12
-
-
Save slikts/d83232178c1b177b0225b11ae369a0f9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]) |
Author
slikts
commented
Sep 14, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment