aboutsummaryrefslogtreecommitdiff
path: root/src/services/window_utils/window_utils.js
blob: 909088dbc186777378245ae573ef630b527baca8 (plain)
1
2
3
4
5
6
7
8
9
10

export const windowWidth = () =>
  window.innerWidth ||
  document.documentElement.clientWidth ||
  document.body.clientWidth

export const windowHeight = () =>
  window.innerHeight ||
  document.documentElement.clientHeight ||
  document.body.clientHeight