swc/tests/tsc-references/es6/destructuring/destructuringParameterDeclaration8/input.ts/es2015.2.minified/output.js

20 lines
260 B
JavaScript

function test({ method ="z" , nested: { p ="c" } }) {
}
test({
}), test({
method: "x",
nested: {
p: "a"
}
}), test({
method: "z",
nested: {
p: "b"
}
}), test({
method: "one",
nested: {
p: "a"
}
});