mirror of https://github.com/webpack/webpack.git
10 lines
140 B
JavaScript
10 lines
140 B
JavaScript
|
import { a as a1, b as b1 } from "big-module";
|
||
|
import { a as a2, b as b2 } from "big-module-with-flag";
|
||
|
|
||
|
console.log(
|
||
|
a1,
|
||
|
b1,
|
||
|
a2,
|
||
|
b2
|
||
|
);
|