Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/capturing-function-alias-computed-load-2-iife.js
T

16 lines
207 B
JavaScript
Raw Normal View History

2026-08-27 21:09:14 +00:00
function bar(a) {
let x = [a];
let y = {};
(function () {
y = x[0][1];
})();
return y;
}
export const FIXTURE_ENTRYPOINT = {
fn: bar,
params: [['val1', 'val2']],
isComponent: false,
};