UNPKG

evenietminus

Version:
4 lines (3 loc) 101 B
export const capitalize = (str: string) => { return str.slice(0, 1).toUpperCase() + str.slice(1) }