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

18 lines
368 B
JavaScript

(function (global, factory) {
if (typeof define === "function" && define.amd) {
define("umd/module-name/output", [], factory);
} else if (typeof exports !== "undefined") {
factory();
} else {
var mod = {
exports: {}
};
factory();
global.umdModuleNameOutput = mod.exports;
}
})(this, function () {
"use strict";
foobar();
});