window.js 156 B

123456
  1. if (typeof define === "function" && define.amd)
  2. define(function () {
  3. return window;
  4. });
  5. else if (typeof exports === "object")
  6. module.exports = window;