You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
498 B

(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('other')) :
typeof define === 'function' && define.amd ? define(['other'], factory) :
(global.myBundle = factory(global.other));
}(this, (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;
})));