22 lines
533 B
TypeScript
22 lines
533 B
TypeScript
|
|
/**
|
||
|
|
* String utility.
|
||
|
|
*/
|
||
|
|
export default class StringUtility {
|
||
|
|
/**
|
||
|
|
* ASCII lowercase.
|
||
|
|
*
|
||
|
|
* @see https://infra.spec.whatwg.org/#ascii-lowercase
|
||
|
|
* @param text Text.
|
||
|
|
* @returns Lowercase text.
|
||
|
|
*/
|
||
|
|
static asciiLowerCase(text: string): string;
|
||
|
|
/**
|
||
|
|
* ASCII uppercase.
|
||
|
|
*
|
||
|
|
* @see https://infra.spec.whatwg.org/#ascii-uppercase
|
||
|
|
* @param text Text.
|
||
|
|
* @returns Uppercase text.
|
||
|
|
*/
|
||
|
|
static asciiUpperCase(text: string): string;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=StringUtility.d.ts.map
|