We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1ad2ca commit 0958895Copy full SHA for 0958895
src/_DataStructures_/Set/index.js
@@ -21,7 +21,7 @@ class XSet {
21
}
22
23
union(givenSet) {
24
- const result = new Set();
+ const result = new XSet();
25
const firstSetValues = this.values();
26
const givenSetValues = givenSet.values();
27
0 commit comments