9 lines
247 B
JavaScript
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) {}); |