aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/window.js
blob: f44ebb9cf56150a1d309ea6d7b0594f2360857d6 (plain)
1
2
3
4
5
6
7
8
9
10
const globals = {
  window, document
}

export default globals

export function registerWindow (w) {
  globals.window = w
  globals.document = w.document
}