uncomment 3.4.0

A CLI tool to remove comments from code using tree-sitter for accurate parsing
1
2
3
4
5
6
7
8
function Component() {
  return (
    <div>
      {}
      Hello World
    </div>
  );
}