11 lines
No EOL
166 B
JavaScript
11 lines
No EOL
166 B
JavaScript
function Component() {
|
|
const x = {};
|
|
{
|
|
const x = [];
|
|
const fn = function () {
|
|
x |> mutate(%);
|
|
};
|
|
fn();
|
|
}
|
|
return x; // should return {}
|
|
} |