2014-10-19 17:48:59 +11:00

12 lines
271 B
JavaScript

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