renovate/lib/util/html.ts
renovate[bot] 2d2e95c747
chore(deps): update dependency typescript to v4 (#7092)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Jamie Magee <jamie.magee@gmail.com>
Co-authored-by: Jamie Magee <JamieMagee@users.noreply.github.com>
2020-09-08 12:26:17 +02:00

5 lines
132 B
TypeScript

import { JSDOM } from 'jsdom';
export function parse(html: string): HTMLElement {
return new JSDOM(html).window.document.body;
}