nowrapper
Version:
nowrapper
17 lines (16 loc) • 351 B
JavaScript
(function (global, factory) {
if (typeof define === "function" && define.amd) {
define([], factory);
} else if (typeof exports !== "undefined") {
factory();
} else {
var mod = {
exports: {}
};
factory();
global.unknown = mod.exports;
}
})(this, function () {
"use strict";
console.log('hello nowrapper');
});