@quenty/tuple 1.3.0 → 1.4.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tuple@1.3.0...@quenty/tuple@1.4.0) (2024-10-06)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Handle arg that is nil ([3878c3e](https://github.com/Quenty/NevermoreEngine/commit/3878c3e8cb90df650d569abfbc5b5d96b09bdb62))
12
+
13
+
14
+
15
+
16
+
6
17
  # [1.3.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/tuple@1.2.0...@quenty/tuple@1.3.0) (2024-10-04)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/tuple",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "Tuple utility package",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,11 +25,11 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/loader": "^10.6.0",
29
- "@quenty/lrucache": "^1.4.0"
28
+ "@quenty/loader": "^10.7.0",
29
+ "@quenty/lrucache": "^1.5.0"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "035abfa088c854a73e1c65b350267eaa17669646"
34
+ "gitHead": "67c5dbf46f6f45213812f3f117419a5534936a0b"
35
35
  }
@@ -31,7 +31,7 @@ function TupleLookup:ToTuple(...)
31
31
  local n = select("#", ...)
32
32
  if n == 1 then
33
33
  local arg = ...
34
- if self._singleArgTuples[arg] then
34
+ if arg ~= nil and self._singleArgTuples[arg] then
35
35
  return self._singleArgTuples[arg]
36
36
  end
37
37
  end