decomment icon indicating copy to clipboard operation
decomment copied to clipboard

:hammer: Removes comments from JSON, JavaScript, CSS, HTML, etc.

Results 2 decomment issues
Sort by recently updated
recently updated
newest added

Consider this edge case: ```javascript var/* jsdoc */age = 42; ``` Which emits: ```javascript varage = 42; ```

bug
help wanted

A minimal demo: ```js var decomment = require('decomment'); var code = 'if(true){}/\\d/.test(\'\')'; decomment(code); ``` Error log: ``` Error: Line 1: Unexpected token ILLEGAL at ErrorHandler.constructError (/Users/DIYgod/Code/test/node_modules/esprima/dist/esprima.js:5004:22) at ErrorHandler.createError (/Users/DIYgod/Code/test/node_modules/esprima/dist/esprima.js:5020:27) at...

wontfix
dependency issue