es6-css-minify
es6-css-minify copied to clipboard
Variables starting with `$` are removed
Describe the bug
Variables starting with $ are removed.
To Reproduce
- Open a new file
- Paste the following code
const $foo = 42
- Select the code
- Run
Minify: Selection - The output is:
const =42;
Expected behavior The following code (or similar):
const $foo=42;
Desktop (please complete the following information):
- OS: Ubuntu 20.04
- Version: 3.3.2
a $ and anything after in a variable is removed, for example
let foo$bar = 0;
becomes
let foo=0;