strip-comments icon indicating copy to clipboard operation
strip-comments copied to clipboard

strip comments from interpolated expression

Open skeggse opened this issue 4 years ago • 0 comments

const v = /*a*/`/*b*/${/*c*/12}`;

Expected output

const v = `/*b*/${12}`;

Actual output

const v = `/*b*/${/*c*/12}`;

skeggse avatar May 12 '20 02:05 skeggse