implementation.browser.js 254 B

1234567891011
  1. /* eslint no-negated-condition: 0, no-new-func: 0 */
  2. 'use strict';
  3. if (typeof self !== 'undefined') {
  4. module.exports = self;
  5. } else if (typeof window !== 'undefined') {
  6. module.exports = window;
  7. } else {
  8. module.exports = Function('return this')();
  9. }