jsmin icon indicating copy to clipboard operation
jsmin copied to clipboard

spaces within backtick strings are left out in some circumstances

Open louking opened this issue 2 years ago • 1 comments

e.g.,

d3.selectAll(`#${that.options.statstable.containerid} table`).style("display", null);

is compressed to

d3.selectAll(`#${that.options.statstable.containerid}table`).style("display",null);

Note the missing space between } and table

louking avatar Apr 23 '22 10:04 louking