mirror of https://github.com/webpack/webpack.git
13 lines
271 B
JavaScript
13 lines
271 B
JavaScript
|
|
exports.abc = "abc";
|
||
|
|
exports[""] = "";
|
||
|
|
exports["default"] = "default";
|
||
|
|
exports["0"] = "0";
|
||
|
|
exports[1] = 1;
|
||
|
|
exports.length = "length";
|
||
|
|
exports["0_0"] = "0_0";
|
||
|
|
exports.if = "if";
|
||
|
|
exports["\0"] = "\0";
|
||
|
|
exports["\n"] = "\n";
|
||
|
|
exports["*/"] = "*/";
|
||
|
|
exports["a.b.c"] = "a.b.c";
|