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

18 lines
362 B
JavaScript

define(["exports", "foo"], function (exports, _foo) {
"use strict";
(function (obj) {
for (var i in obj) {
exports[i] = obj[i];
}
})(_foo);
exports.foo = _foo.foo;
exports.foo = _foo.foo;
exports.bar = _foo.bar;
exports.bar = _foo.foo;
exports["default"] = _foo.foo;
exports["default"] = _foo.foo;
exports.bar = _foo.bar;
});