13 lines
317 B
JavaScript
13 lines
317 B
JavaScript
"use strict";
|
|
|
|
(function (root, factory) {
|
|
if (typeof define === "function" && define.amd) {
|
|
define(["exports", "foo"], factory);
|
|
} else if (typeof exports !== "undefined") {
|
|
factory(exports, require("foo"));
|
|
}
|
|
})(this, function (exports, _foo) {
|
|
var foo = _foo.default;
|
|
var foo = _foo.default;
|
|
});
|