aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/root-helpers/string.ts
blob: f81587494449df8839259323c69f04ab897c8493 (plain) (blame)
1
2
3
4
5
6
7
function capitalizeFirstLetter (str: string) {
  return str.charAt(0).toUpperCase() + str.slice(1)
}

export {
  capitalizeFirstLetter
}