Added metadata readers for litemods and forgemods.

This commit is contained in:
Daniel Scalzi
2019-08-22 00:10:15 -04:00
parent 9e6d057462
commit 79ab8abad2
10 changed files with 187 additions and 23 deletions

6
src/util/stringutils.ts Normal file
View File

@@ -0,0 +1,6 @@
export function capitalize(str: string) {
if (!str) {
return str
}
return str.charAt(0).toUpperCase() + str.slice(1)
}