SourceTermAnalysisSystem_vue/node_modules/xml-utils/remove-comments.js
2026-05-15 10:22:44 +08:00

7 lines
150 B
JavaScript

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