/** @see */ export function capitalize(str: S): Capitalize { return (str.charAt(0).toUpperCase() + str.slice(1)) as any; }