utils.ts 110 B

12345
  1. export function capitalize(string : string) {
  2. return string.charAt(0).toUpperCase() + string.slice(1);
  3. }