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

7 lines
150 B
JavaScript

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