blob: e4ae8c0815487df6748a7896201357b4ea4995c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export var exportedVar = "exported var";
export function exportedFunction() {
return "exported function";
}
export let exportedLet = "exported let";
export const exportedConst = "exported const";
var notExportedVar = "not exported var";
function notExportedFunction() {
return "not exported function";
}
let notExportedLet = "not exported let";
const notExportedConst = "not exported const";
|