You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exportfunctiongetInst<T>(name: string|number|symbol,useCached?: boolean): T|null{constgbl=(!_cachedGlobal||useCached===false) ? getGlobal(useCached) : _cachedGlobal.v;if(gbl&&gbl[name]){returngbl[name]asT;}// Test workaround, for environments where <global>.window (when global == window) doesn't return the base windowif(name===WINDOW){// tslint:disable-next-line: no-angle-bracket-type-assertionreturn<any>getWindow()asT;}returnNULL_VALUE;}
The text was updated successfully, but these errors were encountered:
The getInst() function is getting mis-optimized via rollup / karma for worker tests in another (as yet) unpublished project (ts-debug)
from
The text was updated successfully, but these errors were encountered: