mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 13:51:19 +03:00
15 lines
191 B
JavaScript
15 lines
191 B
JavaScript
|
export function func({a, b, ...rest}) {
|
||
|
console.log(a,b, rest)
|
||
|
}
|
||
|
|
||
|
const other = { unknow: "foo" }
|
||
|
|
||
|
let foo = {
|
||
|
...other,
|
||
|
bar: "baz"
|
||
|
};
|
||
|
let bar = {
|
||
|
bar: "baz",
|
||
|
...other
|
||
|
};
|