define(['other'], function (other) { 'use strict'; const a = 1; const b = 2; const namespace = Object.freeze({ a: a, b: b }); console.log( Object.keys( namespace ) ); console.log( other.name ); const main = 42; return main; });