1
0
Fork 0
akkoma-fe/src/services/window_utils/window_utils.js

11 lines
258 B
JavaScript

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