13 lines
397 B
JavaScript
13 lines
397 B
JavaScript
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";
|