source: imaps-frontend/node_modules/globalthis/implementation.browser.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 254 bytes
RevLine 
[d565449]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.