• File: implementation.browser.js
  • Full Path: /var/www/sandbox/node_modules/globalthis/implementation.browser.js
  • Date Modified: 02/20/2025 6:17 PM
  • File size: 254 bytes
  • MIME-type: text/plain
  • Charset: utf-8
/* eslint no-negated-condition: 0, no-new-func: 0 */

'use strict';

if (typeof self !== 'undefined') {
	module.exports = self;
} else if (typeof window !== 'undefined') {
	module.exports = window;
} else {
	module.exports = Function('return this')();
}