We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments are not removed from code that uses interpolated expressions.
For example if campers have a line of code like :
const v = /*a*/`/*b*/${/*c*/12}`;
The expected output should be
const v = `/*b*/${12}`;
However we end up with the following
const v = `/*b*/${/*c*/12}`;
Copied from: jonschlinkert/strip-comments#54
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Comments are not removed from code that uses interpolated expressions.
For example if campers have a line of code like :
The expected output should be
However we end up with the following
Copied from: jonschlinkert/strip-comments#54
The text was updated successfully, but these errors were encountered: