11 lines
No EOL
128 B
JavaScript
11 lines
No EOL
128 B
JavaScript
function component(a) {
|
|
let x = {
|
|
a
|
|
};
|
|
let y = {};
|
|
(function () {
|
|
y = x;
|
|
})();
|
|
y |> mutate(%);
|
|
return y;
|
|
} |