mirror of https://github.com/webpack/webpack.git
13 lines
156 B
JavaScript
13 lines
156 B
JavaScript
|
const a = 10;
|
||
|
const b = 20;
|
||
|
|
||
|
class MyClass {
|
||
|
getValue() {
|
||
|
return "my-class";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = MyClass;
|
||
|
module.exports.a = a;
|
||
|
module.exports.b = b;
|