UglifyJS/test/input/reduce/destructured_catch.js

8 lines
80 B
JavaScript
Raw Permalink Normal View History

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