Files
UglifyJS/test/input/reduce/destructured_catch.reduced.js
2021-01-18 01:47:07 +08:00

13 lines
269 B
JavaScript

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