asipple1
1/10/2019 - 9:57 PM

Lodash Debound Resize

import debounce from 'lodash/debounce';
window.addEventListener('resize', debounce(resizeFunction, 100), false);

function resizeFunction() {
  // If the window matches the media query then close the menu
  if (window.matchMedia('(max-width: 1080px)').matches) {
   // Resize things here.
  }
}