Files
react/compiler/crates/react_fixtures/tests/fixtures/destructure-array.js
2024-04-02 16:49:31 -07:00

6 lines
106 B
JavaScript

function Component(a, b) {
const [c, , ...d] = a;
const [[[e]], ...[f]] = b;
return [c, d, e, f];
}