webpack/test/cases/parsing/harmony-export-expression/d.js

10 lines
95 B
JavaScript
Raw Normal View History

2025-08-30 03:53:13 +08:00
let counter = 0;
test();
export default function test() {
counter += 1;
return counter;
}