mirror of
https://github.com/orionprotocol/sdk.git
synced 2026-03-18 03:45:02 +03:00
5 lines
200 B
TypeScript
5 lines
200 B
TypeScript
export default function toUpperCase<T extends string>(str: T): Uppercase<T> {
|
|
// eslint-disable-next-line @typescript-eslint/consistent-type-assertions
|
|
return str.toUpperCase() as Uppercase<T>;
|
|
}
|