You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
291 B
13 lines
291 B
|
4 months ago
|
import text from "./text.js";
|
||
|
|
|
||
|
|
function parser(type) {
|
||
|
|
return (input, init) => text(input, init)
|
||
|
|
.then(text => (new DOMParser).parseFromString(text, type));
|
||
|
|
}
|
||
|
|
|
||
|
|
export default parser("application/xml");
|
||
|
|
|
||
|
|
export var html = parser("text/html");
|
||
|
|
|
||
|
|
export var svg = parser("image/svg+xml");
|