mam-project-templates
Version:
my personal templating projects
26 lines (22 loc) • 511 B
JavaScript
;(function (f) {
// CommonJS
if (typeof exports === "object") {
module.exports = f();
// RequireJS
} else if (typeof define === "function" && define.amd) {
define(f);
// <script>
} else {
var g
if (typeof window !== "undefined") {
g = window;
} else if (typeof global !== "undefined") {
g = global;
} else if (typeof self !== "undefined") {
g = self;
}
{{defineNamespace}};
}
})(function () {
source()//trick uglify-js into not minifying
});