Is there a plugin or something else that makes it possible to mangle names of functions, classes and properties?
Webpack can do this with plugins like terser-webpack-plugin, but due to the dynamic nature of JavaScript, where every property can be referenced by a string, it doesn’t work for properties without some serious hoop jumping.
However, Kotlin is static so maybe there is a tool in the Kotlin ecosystem?
The reason I ask in the JavaScript section is that this question doesn’t really make sense in JVM land.