JSTQL-JS-Transform/output_testing/1054default-param-calls-global-function.js

8 lines
No EOL
196 B
JavaScript

import { identity } from "shared-runtime";
function Component(x = [() => {}, true, 42, "hello"] |> identity(%)) {
return x;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: []
};