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