Fix camelCase

This commit is contained in:
Joey Yakimowich-Payne 2020-09-09 04:37:18 -06:00
commit e233e28779

View file

@ -11,6 +11,7 @@ template camelCase(str: string): string =
else:
res.add(str[i])
i += 1
res[0] = res[0].toUpperAscii
res
template lowerFirstLetter(str, rep: string): string =