7 lines
156 B
JavaScript
7 lines
156 B
JavaScript
if (typeof define === "function" && define.amd)
|
|
define(function () {
|
|
return window;
|
|
});
|
|
else if (typeof exports === "object")
|
|
module.exports = window;
|