UNPKG

157 BJavaScriptView Raw
1export const a = something()
2export const b = whatever
3
4function something () {
5 return 'abc'
6}
7
8throw 'something'
9
10function whatever () {
11 return 'xyz'
12}