2015-02-21 13:06:02 +11:00

9 lines
247 B
JavaScript

"use strict";
(function (factory) {
if (typeof define === "function" && define.amd) {
define("my custom module name", ["exports"], factory);
} else if (typeof exports !== "undefined") {
factory(exports);
}
})(function (exports) {});