1
0
Fork 0
firefox/js/xpconnect/tests/unit/esmified-not-exported.sys.mjs
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

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";