UNPKG

xml-utils

Version:

Parse XML without Blowing Up Your Bundle Size

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