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