UNPKG

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