esmified-not-exported.sys.mjs (397B)
1 export var exportedVar = "exported var"; 2 export function exportedFunction() { 3 return "exported function"; 4 } 5 export let exportedLet = "exported let"; 6 export const exportedConst = "exported const"; 7 8 var notExportedVar = "not exported var"; 9 function notExportedFunction() { 10 return "not exported function"; 11 } 12 let notExportedLet = "not exported let"; 13 const notExportedConst = "not exported const";