mirror of https://github.com/lukechilds/rollup.git
25 lines
495 B
25 lines
495 B
define(['exports'], function (exports) { 'use strict';
|
|
|
|
var browserSpecificThing;
|
|
|
|
if ('ActiveXObject' in window) {
|
|
browserSpecificThing = "InternetExplorerThing";
|
|
} else {
|
|
browserSpecificThing = "DecentBrowserThing";
|
|
}
|
|
|
|
function foo() {}
|
|
|
|
|
|
var browserStuff = (Object.freeze || Object)({
|
|
browserSpecificThing: browserSpecificThing,
|
|
foo: foo
|
|
});
|
|
|
|
console.log(browserSpecificThing);
|
|
|
|
exports.B = browserStuff;
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
|
});
|
|
|