/** @see */ export function uncapitalize(str: S): Uncapitalize { return (str.charAt(0).toLowerCase() + str.slice(1)) as any; }