File size: 234 Bytes
4a288a7
 
 
 
 
 
1
2
3
4
5
6
7
// @flow
/* eslint-env browser */
import type {Window} from '../../types/window';

// shim window for the case of requiring the browser bundle in Node
export default typeof self !== 'undefined' ? (self: Window) : (({}: any): Window);