aboutsummaryrefslogtreecommitdiff
path: root/sourcehut-builds/string_utils.luau
blob: 1072bef5fcc41cb085df171383669673bc257a81 (plain)
1
2
3
4
5
return {
  capitalize = function(str: string): string
    return str:lower():gsub("^%l", string.upper)
  end
}