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