swc/ecmascript/transforms/module/tests/fixture/commonjs/issue-2297/input.js

8 lines
147 B
JavaScript
Raw Normal View History

import { bar } from './Bar';
const makeX = (props) => {
const _bar = props.bar;
const { list } = _bar;
return list.map(() => bar);
};