Files
reacord/packages/helpers/to-upper.ts
2022-07-27 22:42:35 -05: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>
}