source: frontend/node_modules/globalthis/implementation.browser.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 254 bytes
Line 
1/* eslint no-negated-condition: 0, no-new-func: 0 */
2
3'use strict';
4
5if (typeof self !== 'undefined') {
6 module.exports = self;
7} else if (typeof window !== 'undefined') {
8 module.exports = window;
9} else {
10 module.exports = Function('return this')();
11}
Note: See TracBrowser for help on using the repository browser.