UNPKG

ts-prime

Version:

A utility library for JavaScript and Typescript.

13 lines (12 loc) 276 B
/** * Capitalize first letter of word * @param str - Any string * @signature * P.capitalize(str) * @example * P.capitalize("tom") //=> Tom * @category String */ export function capitalize(str: string): string { return str.charAt(0).toUpperCase() + str.slice(1); }