blob: 094eab7f923dd3488fc39ffd7d3f071570a38849 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
var exportedVar = "exported var";
function exportedFunction() {
return "exported function";
}
let exportedLet = "exported let";
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";
const EXPORTED_SYMBOLS = [
"exportedVar",
"exportedFunction",
"exportedLet",
"exportedConst",
];
|