weavedev/store

View on GitHub
lib/envGlobal.ts

Summary

Maintainability
A
0 mins
Test Coverage
// tslint:disable-next-line:no-typeof-undefined
export const envGlobal: Window | NodeJS.Process = typeof window === 'undefined' ? process : window;