(parsed: ReturnType<typeof parseMutable>)
| 27 | } |
| 28 | |
| 29 | function getStyleText(parsed: ReturnType<typeof parseMutable>): string { |
| 30 | const doc = serializeDocument(parsed); |
| 31 | const m = /<style>([\s\S]*?)<\/style>/i.exec(doc); |
| 32 | return m ? m[1]! : ""; |
| 33 | } |
| 34 | |
| 35 | // ─── validateOp ─────────────────────────────────────────────────────────────── |
| 36 |
no test coverage detected