mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
164 B
JavaScript
14 lines
164 B
JavaScript
function f([x, y]) {
|
|
var [a, [, c]] = x;
|
|
try {
|
|
throw [a, c];
|
|
} catch (d) {
|
|
console.log(d);
|
|
}
|
|
}
|
|
|
|
function g({ x, y: z }) {
|
|
var { [x]: w } = z;
|
|
return w;
|
|
}
|