5 lines
144 B
TypeScript
5 lines
144 B
TypeScript
/** A typesafe version of toUpperCase */
|
|
export function toUpper<S extends string>(string: S) {
|
|
return string.toUpperCase() as Uppercase<S>
|
|
}
|