Files
react/compiler/crates/react_hermes_parser/tests/fixtures/unused-array-rest-element.js
2024-04-02 16:49:31 -07:00

5 lines
72 B
JavaScript

function foo(props) {
const [x, y, ...z] = props.a;
return x + y;
}