// Returns global object of a current environment.exportdefault(()=>{if(typeofglobal!=='undefined'&&global.Math===Math){returnglobal;}if(typeofself!=='undefined'&&self.Math===Math){returnself;}if(typeofwindow!=='undefined'&&window.Math===Math){returnwindow;}// eslint-disable-next-line no-new-funcreturnFunction('return this')();})();