2018-01-09 15:36:42 +01:00

20 lines
474 B
JavaScript

(function (global, factory) {
if (typeof define === "function" && define.amd) {
define(["exports", "foo"], factory);
} else if (typeof exports !== "undefined") {
factory(exports, require("foo"));
} else {
var mod = {
exports: {}
};
factory(mod.exports, global.foo);
global.input = mod.exports;
}
})(this, function (_exports, _foo) {
"use strict";
_exports.__esModule = true;
_exports.bar = void 0;
_exports.bar = _foo.foo;
});