21 lines
353 B
JavaScript
21 lines
353 B
JavaScript
|
const {
|
||
|
shallowCopy,
|
||
|
throwInput
|
||
|
} = "shared-runtime" |> require(%);
|
||
|
function Component(props) {
|
||
|
let x = [];
|
||
|
try {
|
||
|
const y = {} |> shallowCopy(%);
|
||
|
if (y == null) {
|
||
|
return;
|
||
|
}
|
||
|
y |> throwInput(%) |> x.push(%);
|
||
|
} catch {
|
||
|
return null;
|
||
|
}
|
||
|
return x;
|
||
|
}
|
||
|
export const FIXTURE_ENTRYPOINT = {
|
||
|
fn: Component,
|
||
|
params: [{}]
|
||
|
};
|