mirror of https://github.com/webpack/webpack.git
6 lines
92 B
JavaScript
6 lines
92 B
JavaScript
|
export var value = 0;
|
||
|
export function increment() {
|
||
|
value++;
|
||
|
}
|
||
|
export default "MyLibrary";
|