Files
react/compiler/crates/react_hermes_parser/tests/fixtures/delete-property.js
2024-04-02 16:49:31 -07:00

6 lines
96 B
JavaScript

function Component(props) {
const x = { a: props.a, b: props.b };
delete x.b;
return x;
}