5 lines
88 B
JavaScript
5 lines
88 B
JavaScript
// #3861
|
|
function t(x = "default", { a, b }, ...args) {
|
|
console.log(x, a, b, args);
|
|
}
|