summaryrefslogtreecommitdiffhomepage
path: root/gui/src/shared/string-helpers.ts
blob: 30a2ac9d58e271e835f3365bbb03a6a5c4de5d68 (plain)
1
2
3
export function capitalize(inputString: string): string {
  return inputString.charAt(0).toUpperCase() + inputString.slice(1);
}