UNPKG

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