Fix camelCase

This commit is contained in:
Joey Yakimowich-Payne 2020-09-09 04:36:57 -06:00
commit 0c36d9d1bd

View file

@ -12,6 +12,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 =