12 lines
310 B
JavaScript
12 lines
310 B
JavaScript
(function (factory) {
|
|
if (typeof define === "function" && define.amd) {
|
|
define("modules-umd/imports-glob/expected", ["exports", "foo"], factory);
|
|
} else if (typeof exports !== "undefined") {
|
|
factory(exports, require("foo"));
|
|
}
|
|
})(function (exports, _foo) {
|
|
"use strict";
|
|
|
|
var foo = _foo;
|
|
});
|