mirror of https://github.com/webpack/webpack.git
5 lines
116 B
JavaScript
5 lines
116 B
JavaScript
|
export default async function getNumber() {
|
||
|
const num = (await import("./chunk.js")).default;
|
||
|
return 1 + num();
|
||
|
}
|