mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 08:36:26 +00:00
7 lines
167 B
TypeScript
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);
|
|
}
|