mirror of https://github.com/webpack/webpack.git
14 lines
307 B
JavaScript
14 lines
307 B
JavaScript
export function A(s) {
|
|
return s + "A";
|
|
}
|
|
export function B(s) {
|
|
return s + "B";
|
|
}
|
|
export function C(s) {
|
|
return s + "C";
|
|
}
|
|
|
|
export const exportAUsed = __webpack_exports_info__.A.used;
|
|
export const exportBUsed = __webpack_exports_info__.B.used;
|
|
export const exportCUsed = __webpack_exports_info__.C.used;
|