Files
reacord/packages/helpers/to-upper.ts
2023-08-16 19:32:28 -05:00

5 lines
143 B
TypeScript

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