Lars Kappert fdad51b53b Revert "update umd and amd tests with new moduleName option"
This reverts commit 5409691a3a63290ff7c7013035ec1b351e1eb250.
2014-11-19 08:45:58 +01:00

13 lines
313 B
JavaScript

(function (factory) {
if (typeof define === "function" && define.amd) {
define(["exports", "foo"], factory);
} else if (typeof exports !== "undefined") {
factory(exports, require("foo"));
}
})(function (exports, _foo) {
"use strict";
var foo = _foo["default"];
var foo = _foo["default"];
});