renovate/lib/util/html.ts
2021-03-01 15:21:04 +01:00

7 lines
167 B
TypeScript

import { HTMLElement, parse as _parse } from 'node-html-parser';
export { HTMLElement };
export function parse(html: string): HTMLElement {
return _parse(html);
}