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