[go: up one dir, main page]

uncomment 2.2.0

A CLI tool to remove comments from code using tree-sitter for accurate parsing
Documentation
1
2
3
4
5
6
7
8
9
// CommonJS JavaScript file
// CJS syntax
module.exports = {
  // Object property comment
  greet: function () {
    // Function comment
    return "Hello CJS";
  },
};