Home Reference Source

src/utils/get-self-scope.js

  1. export function getSelfScope () {
  2. // see https://stackoverflow.com/a/11237259/589493
  3. if (typeof window === 'undefined') {
  4. /* eslint-disable-next-line no-undef */
  5. return self;
  6. } else {
  7. return window;
  8. }
  9. }