pwaLUPMIS2/node_modules/xml-utils/remove-comments.mjs
2026-03-04 12:59:40 +01:00

4 lines
90 B
JavaScript

export default function removeComments(xml) {
return xml.replace(/<!--[^]*-->/g, "");
}