mirror of https://github.com/webpack/webpack.git
6 lines
134 B
JavaScript
6 lines
134 B
JavaScript
|
export const resetCounter = async () => {
|
||
|
(await import("./counter")).reset();
|
||
|
};
|
||
|
|
||
|
export const print = value => console.log(value);
|