site/node_modules/d3-fetch/src/xml.js

13 lines
291 B
JavaScript
Raw Normal View History

2024-10-14 08:09:33 +02:00
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");