File size: 95 Bytes
c2b7eb3
 
 
1
2
3
4
export function capitalize(str: string) {
  return str.replace(str[0], str[0].toUpperCase())
}