mirror of https://github.com/webpack/webpack.git
11 lines
146 B
JavaScript
11 lines
146 B
JavaScript
|
export let value = 0;
|
||
|
export function increment() {
|
||
|
value++;
|
||
|
}
|
||
|
export function decrement() {
|
||
|
value--;
|
||
|
}
|
||
|
export function reset() {
|
||
|
value = 0;
|
||
|
}
|