Cheat sheet: modules
Named exports, named imports, namespace imports
If we put export
in front of a named entity inside a module, it becomes a named export of that module. All other entities are private to the module.
//===== lib1.mjs =====
// Named exports