11 lines
No EOL
128 B
JavaScript
11 lines
No EOL
128 B
JavaScript
function component(a) {
|
|
let z = {
|
|
a
|
|
};
|
|
let x = function () {
|
|
{
|
|
z |> console.log(%);
|
|
}
|
|
};
|
|
return x;
|
|
} |