UNPKG

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.

20 lines 563 B
/** * Style declaration value parser. */ export default class CSSStyleDeclarationValueUtility { /** * Splits by comma while respecting nested parentheses. * * @param value Value to split. * @returns Array of parts. */ static splitByComma(value: string): string[]; /** * Splits by space while respecting nested parentheses. * * @param value Value to split. * @returns Array of parts. */ static splitBySpace(value: string): string[]; } //# sourceMappingURL=CSSStyleDeclarationValueUtility.d.ts.map