mirror of
https://github.com/facebook/react.git
synced 2026-02-26 04:14:59 +00:00
20 lines
218 B
JavaScript
20 lines
218 B
JavaScript
function foo(a, b, c) {
|
|
const [
|
|
d,
|
|
[
|
|
{
|
|
e: { f },
|
|
...g
|
|
},
|
|
],
|
|
...h
|
|
] = a;
|
|
const {
|
|
l: {
|
|
m: [[n], ...o],
|
|
},
|
|
p,
|
|
} = b;
|
|
return [d, f, g, h, n, o, p];
|
|
}
|