We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8b5275 commit b286c36Copy full SHA for b286c36
src/bootstrap/NodeBootstrapper.ts
@@ -11,7 +11,7 @@ import { Utils } from '../Utils';
11
12
export class NodeBootstrapper implements IBootstrapper {
13
public register(): void {
14
- if (typeof window === 'undefined' && typeof global !== 'undefined' && {}.toString.call(global) === '[object global]') {
+ if (!(typeof window === 'undefined' && typeof global !== 'undefined' && {}.toString.call(global) === '[object global]')) {
15
return;
16
}
17
0 commit comments