todos-contra-el-fuego-web/imports/ui/components/Utils/isMobile.js
2018-01-19 11:04:14 +01:00

6 lines
272 B
JavaScript

import isMobile from 'ismobilejs';
// https://github.com/ReactTraining/react-router/issues/184
export const isHomeAndMobile = (window.location.pathname === '/' && isMobile.any);
export const isNotHomeAndMobile = !isHomeAndMobile;
export const isAnyMobile = isMobile.any;