1 var exportedVar = "exported var";
2 function exportedFunction() {
3 return "exported function";
5 let exportedLet = "exported let";
6 const exportedConst = "exported const";
8 var notExportedVar = "not exported var";
9 function notExportedFunction() {
10 return "not exported function";
12 let notExportedLet = "not exported let";
13 const notExportedConst = "not exported const";
15 const EXPORTED_SYMBOLS = [