aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/utilities/helpers.js
blob: 8cc88c9cdf60a940056dddbc629fe2fecd68eaaf (plain)
1
2
3
4
5
6
7
8
9
10
/**
 * Check the size of the current viewport.
 * @returns {Boolean} True if viewport lower than 1200px; false otherwise.
 */
function isSmallVw() {
  return window.innerWidth < 1200;
}

// eslint-disable-next-line import/prefer-default-export
export { isSmallVw };