(html: string, opts?: Partial<IHtmlParserOptions>)
| 275 | } |
| 276 | |
| 277 | export function buildTree(html: string, opts?: Partial<IHtmlParserOptions>) { |
| 278 | const htmlRoot = parseHtml(html, opts); |
| 279 | return convertNode(htmlRoot); |
| 280 | } |
no test coverage detected