UglifyJS/test/input/reduce/label.reduced.js
alexlamsl bc42bf560f improve --reduce-test
- ignore difference in error messages
- improve readability on trailing whitespace differences
- improve performance & quality via `console.log()` insertions
2020-03-21 05:05:21 +08:00

15 lines
149 B
JavaScript

// (beautified)
var o = this;
for (var k in o) {}
var a;
console.log(k);
// output: a
//
// minify: k
//
// options: {
// "mangle": false
// }