About the JavaScript Minifier
The JavaScript Minifier performs safe, conservative minification: comments removed, whitespace collapsed, strings fully preserved. It never renames variables — for aggressive minification use a build tool like terser.
Full minification (variable renaming, dead-code removal) requires a real parser. This covers the safe majority of savings with zero risk of breaking code.