mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:55:55 +00:00
19 lines
194 B
JavaScript
19 lines
194 B
JavaScript
function foo(a, b, c) {
|
|
let d, g, n, o;
|
|
[
|
|
d,
|
|
[
|
|
{
|
|
e: { f: g },
|
|
},
|
|
],
|
|
] = a;
|
|
({
|
|
l: {
|
|
m: [[n]],
|
|
},
|
|
o,
|
|
} = b);
|
|
return { d, g, n, o };
|
|
}
|