(text: string)
| 122 | * @returns index where the next invocation of `parseStyleNext` should resume. |
| 123 | */ |
| 124 | export function parseStyle(text: string): number { |
| 125 | resetParserState(text); |
| 126 | return parseStyleNext(text, consumeWhitespace(text, 0, parserState.textEnd)); |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Parses the next `cssText` key/values. |
no test coverage detected
searching dependent graphs…