UglifyJS/test/input/reduce/destructured_catch.js

8 lines
80 B
JavaScript

try {
"foo" in 42;
} catch ({
message,
}) {
console.log(message);
}