blob: bd3e349bdf0be55f4915d4dfbea5dfcfaefa4b4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
const mod = function() {
const c = "c";
const c1 = c;
class C {
}
const __default = C;
return {
c,
default: C
};
}();
const c = mod;
const b = "b";
console.log(b);
console.log(mod);
|