mirror of https://github.com/webpack/webpack.git
11 lines
122 B
JavaScript
11 lines
122 B
JavaScript
|
import { used, unused } from "./reference";
|
||
|
|
||
|
export function test() {
|
||
|
return {
|
||
|
used,
|
||
|
unused
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export { unused }
|