I've just been looking at the minified output from a class I've just wrote and it seems the internal property names are not being minified.
If they're an internal function (not accessible externally), its possible these could be minified to single letters too.
An example is as follows;
I've just been looking at the minified output from a class I've just wrote and it seems the internal property names are not being minified. If they're an internal function (not accessible externally), its possible these could be minified to single letters too. An example is as follows;
` const ExampleA = (function () { class exampleA extends HTMLElement { constructor() { super(); }
`
From what I can tell, both the declarations in helperMethod, and usage of those properties (e.g. opt1, opt2...), could be minified(?)