1 | exports.exports = function () {}
|
2 | exports.other = () => { console.log('other') }
|
3 |
|
4 | console.log(exports.a = 'hello world')
|
5 | function a() {} exports.b = function () { return a }, console.log(a)
|
6 | var c = (0, exports.c = 'beep boop')
|
7 |
|
8 | exports.d = exports.e = null
|