mirror of https://github.com/webpack/webpack.git
10 lines
95 B
JavaScript
10 lines
95 B
JavaScript
|
let counter = 0;
|
||
|
|
||
|
test();
|
||
|
|
||
|
export default function test() {
|
||
|
counter += 1;
|
||
|
|
||
|
return counter;
|
||
|
}
|