From 628406f0a50e040d4661629446c620a3a495441f Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Thu, 24 Sep 2026 21:01:06 +0200 Subject: Initial commit --- sourcehut-builds/string_utils.luau | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 sourcehut-builds/string_utils.luau (limited to 'sourcehut-builds/string_utils.luau') diff --git a/sourcehut-builds/string_utils.luau b/sourcehut-builds/string_utils.luau new file mode 100644 index 0000000..1072bef --- /dev/null +++ b/sourcehut-builds/string_utils.luau @@ -0,0 +1,5 @@ +return { + capitalize = function(str: string): string + return str:lower():gsub("^%l", string.upper) + end +} -- cgit