/** * Transforms the input string to lower case. */ export function toLowerCase(value: T) { return value.toLowerCase() as Lowercase; }