mirror of
https://github.com/servo/servo.git
synced 2025-10-09 21:10:19 +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);
|
|
};
|