export function capitalize(value: T) { return `${value[0].toUpperCase()}${value.slice(1)}` as Capitalize; }