Files
2025-12-03 21:28:08 +00:00

9 lines
204 B
TypeScript
Executable File

/**
* Localized lower case.
*/
export declare function localeLowerCase(str: string, locale: string): string;
/**
* Lower case as a function.
*/
export declare function lowerCase(str: string): string;