@quenty/string 3.3.1 → 3.3.2-canary.545.2374fb2.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
+ ## [3.3.2-canary.545.2374fb2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/string@3.3.1...@quenty/string@3.3.2-canary.545.2374fb2.0) (2025-04-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Add types to packages ([2374fb2](https://github.com/Quenty/NevermoreEngine/commit/2374fb2b043cfbe0e9b507b3316eec46a4e353a0))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.3.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/string@3.3.0...@quenty/string@3.3.1) (2025-03-21)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/string",
3
- "version": "3.3.1",
3
+ "version": "3.3.2-canary.545.2374fb2.0",
4
4
  "description": "This module provides utility functions for strings",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,5 +28,5 @@
28
28
  "publishConfig": {
29
29
  "access": "public"
30
30
  },
31
- "gitHead": "6b7c3e15e60cdb185986207b574e2b5591261e7a"
31
+ "gitHead": "2374fb2b043cfbe0e9b507b3316eec46a4e353a0"
32
32
  }
@@ -44,7 +44,7 @@ end
44
44
  @return string
45
45
  ]=]
46
46
  function String.uppercaseFirstLetter(str: string): string
47
- return string.gsub(str, "^%a", string.upper)
47
+ return (string.gsub(str, "^%a", string.upper))
48
48
  end
49
49
 
50
50
  --[=[