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.
12 lines
291 B
12 lines
291 B
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");
|
|
|