remove-comments.js 150 B

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