webpack/test/configCases/mangle/mangle-with-object-prop/commonjs.js

11 lines
268 B
JavaScript

exports.abc = "abc";
exports.def = "def";
exports.setToString = () => {
exports.toString = () => "toString";
};
exports.moduleId = module.id;
exports.a = "single char";
exports["="] = "single char non-identifier";
exports.$1 = "double char";
exports.__1 = "3 chars";