Files
reacord/helpers/to-upper.ts
2021-12-26 12:06:06 -06:00

5 lines
144 B
TypeScript

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