@quenty/loader 6.2.1 → 6.2.2-canary.402.40f9a1f.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,14 @@
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
+ ## [6.2.2-canary.402.40f9a1f.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/loader@6.2.1...@quenty/loader@6.2.2-canary.402.40f9a1f.0) (2023-08-16)
7
+
8
+ **Note:** Version bump only for package @quenty/loader
9
+
10
+
11
+
12
+
13
+
6
14
  ## [6.2.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/loader@6.2.0...@quenty/loader@6.2.1) (2023-04-07)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/loader",
3
- "version": "6.2.1",
3
+ "version": "6.2.2-canary.402.40f9a1f.0",
4
4
  "description": "A simple module loader for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -26,5 +26,5 @@
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "0b250b1557f7ac594d38498c5d69af79a96f8bcf"
29
+ "gitHead": "40f9a1fad543e137f1e639cafc45a98cb439b0b6"
30
30
  }
package/src/Utils.lua CHANGED
@@ -18,14 +18,6 @@ function Utils.readonly(_table)
18
18
  return setmetatable(_table, READ_ONLY_METATABLE)
19
19
  end
20
20
 
21
- function Utils.copyTable(target)
22
- local new = {}
23
- for key, value in pairs(target) do
24
- new[key] = value
25
- end
26
- return new
27
- end
28
-
29
21
  function Utils.count(_table)
30
22
  local count = 0
31
23
  for _, _ in pairs(_table) do
package/src2/Utils.lua CHANGED
@@ -18,14 +18,6 @@ function Utils.readonly(_table)
18
18
  return setmetatable(_table, READ_ONLY_METATABLE)
19
19
  end
20
20
 
21
- function Utils.copyTable(target)
22
- local new = {}
23
- for key, value in pairs(target) do
24
- new[key] = value
25
- end
26
- return new
27
- end
28
-
29
21
  function Utils.count(_table)
30
22
  local count = 0
31
23
  for _, _ in pairs(_table) do