export function capitalize(string: S): Capitalize { return (string[0].toUpperCase() + string.slice(1)) as Capitalize }