Skalman/UglifyJS-online

Minimize property names?

ouroborus opened this issue · 1 comments

Is there an option for minimizing property names? (If not, can it be added?)

Something like converting:

let elements = document.querySelectorAll("something");

to:

let p = ["querySelectorAll"];
let elements = document[p[0]]("something");

Sorry, didn't realize this wasn't the uglify repository.