extract-comments
extract-comments copied to clipboard
Extract JavaScript code comments from a string or glob of files.
I've been following a [google-written guide](https://opensource.google/documentation/reference/releasing/preparing/#scrub-the-comments) for how to evaluate a private codebase for open source release and it includes a step for reading through all the comments in the...
Will there be support for extracting comments from ES6 classes? Example: Contents of `sample.js` file: ```js class SomeName { // A public property. version = "0.1.0"; // A private property....
This should be a self-explanatory PR.