@xylabs/set 5.0.17 → 5.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xylabs/set",
3
- "version": "5.0.17",
3
+ "version": "5.0.18",
4
4
  "description": "Base functionality used throughout XY Labs TypeScript/JavaScript libraries",
5
5
  "keywords": [
6
6
  "set",
@@ -42,10 +42,10 @@
42
42
  "src"
43
43
  ],
44
44
  "devDependencies": {
45
- "@xylabs/ts-scripts-yarn3": "~7.1.8",
46
- "@xylabs/tsconfig": "~7.1.8",
45
+ "@xylabs/ts-scripts-yarn3": "~7.2.2",
46
+ "@xylabs/tsconfig": "~7.2.2",
47
47
  "typescript": "~5.9.3",
48
- "vitest": "~3.2.4"
48
+ "vitest": "~4.0.7"
49
49
  },
50
50
  "engines": {
51
51
  "node": ">=18"
@@ -9,7 +9,7 @@ const cases = [
9
9
  [new Set([1, 2, 3]), new Set([2, 3, 4]), new Set([1])],
10
10
  [new Set([2, 3, 4]), new Set([1, 2, 3]), new Set([4])],
11
11
  // Difference of identical sets yields empty set
12
- [new Set([1, 2, 3]), new Set([1, 2, 3]), new Set([])],
12
+ [new Set([1, 2, 3]), new Set([1, 2, 3]), new Set()],
13
13
  ]
14
14
 
15
15
  describe('difference', () => {