mirror of
https://github.com/servo/servo.git
synced 2025-10-16 08:20:22 +01:00
4 lines
125 B
JavaScript
4 lines
125 B
JavaScript
window.doParse = (html, mimeType) => {
|
|
const parser = new DOMParser();
|
|
return parser.parseFromString(html, mimeType);
|
|
};
|