happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
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