aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/window.js
blob: 9e51339ee600e52224528ea89bd2be8ea2ddba34 (plain)
1
2
3
4
5
6
7
8
9
export const globals = {
  window: typeof window === 'undefined' ? null : window,
  document: typeof document === 'undefined' ? null : document
}

export function registerWindow (win = null, doc = null) {
  globals.window = win
  globals.document = doc
}