Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. const mediaQueries = {
  2. mobile: '(max-width: 425px)',
  3. laptop: '(max-width: 1024px)',
  4. desktop: '(min-width: 1025px)',
  5. };
  6. const DEVICES = keys(mediaQueries);
  7. const matches = (device) => window.matchMedia(mediaQueries[device]).matches;
  8. const currentDevice = () => find(matches, DEVICES) || 'desktop';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement