window.js 232 B

12345678910111213
  1. var win;
  2. if (typeof window !== "undefined") {
  3. win = window;
  4. } else if (typeof global !== "undefined") {
  5. win = global;
  6. } else if (typeof self !== "undefined"){
  7. win = self;
  8. } else {
  9. win = {};
  10. }
  11. module.exports = win;