Files
UglifyJS/test/input/reduce/destructured_catch.reduced.js
2020-12-20 11:22:45 +08:00

15 lines
264 B
JavaScript

// (beautified)
try {
1 in 0;
} catch ({
message: message
}) {
console.log(message);
}
// output: Cannot use 'in' operator to search for '1' in 0
//
// minify: Cannot use 'in' operator to search for '0' in 0
//
// options: {
// "mangle": false
// }