24 lines
433 B
JavaScript
24 lines
433 B
JavaScript
"use strict";
|
|
|
|
(function (factory) {
|
|
if (typeof define === "function" && define.amd) {
|
|
define(["exports"], factory);
|
|
} else if (typeof exports !== "undefined") {
|
|
factory(exports);
|
|
}
|
|
})(function (exports) {
|
|
exports = foo;
|
|
exports = 42;
|
|
exports = {};
|
|
exports = [];
|
|
exports = foo;
|
|
exports = function () {};
|
|
|
|
exports = function () {};
|
|
|
|
function foo() {}
|
|
var Foo = function Foo() {};
|
|
|
|
exports = Foo;
|
|
});
|