leodutra
9/26/2012 - 9:34 PM

Remove HTML/JavaScript Comments

Remove HTML/JavaScript Comments

function removeComments(html) {
    return (''+html)
            .replace/*HTMLComments*/(/<!-[\S\s]*?-->/gm, '')
            .replace/*JSBlockComments*/(/\/\*[\S\s]*?\*\//gm,'')
            .replace/*JSLineComments*/(/^.*?\/\/.*/gm, '$1') // FIXME
}