10 lines
No EOL
107 B
JavaScript
10 lines
No EOL
107 B
JavaScript
function component(a) {
|
|
let t = {
|
|
a
|
|
};
|
|
function x() {
|
|
t.foo();
|
|
}
|
|
t |> x(%);
|
|
return t;
|
|
} |