19 lines
412 B
JavaScript
19 lines
412 B
JavaScript
(function (global, factory) {
|
|
if (typeof define === "function" && define.amd) {
|
|
define(["foo"], factory);
|
|
} else if (typeof exports !== "undefined") {
|
|
factory(require("foo"));
|
|
} else {
|
|
var mod = {
|
|
exports: {}
|
|
};
|
|
factory(global.foo);
|
|
global.actual = mod.exports;
|
|
}
|
|
})(this, function (_foo) {
|
|
"use strict";
|
|
|
|
var foo = babelHelpers.interopRequireWildcard(_foo);
|
|
foo;
|
|
});
|