isMobileDevice.js 377 B

1234567891011121314151617
  1. "use strict";
  2. function isMobileDevice() {
  3. if (typeof window !== 'undefined' && window.navigator && window.navigator.userAgent && window.navigator.userAgent.match(/Mobi/)) {
  4. return true;
  5. }
  6. return false;
  7. }
  8. /**
  9. * Checks if current device reports itself as “mobile”.
  10. * Very simple, not very reliable.
  11. *
  12. * @returns {boolean}
  13. */
  14. module.exports = isMobileDevice;