vj4/ui/utils/mediaQuery.js

Summary

Maintainability
A
2 hrs
Test Coverage
export function isAbove(width) {
  if (window.matchMedia) {
    return window.matchMedia(`(min-width: ${width}px)`).matches;
  }
  return window.innerWidth >= width;
}

export function isBelow(width) {
  if (window.matchMedia) {
    return window.matchMedia(`(max-width: ${width}px)`).matches;
  }
  return window.innerWidth <= width;
}