mirror of
https://github.com/danbulant/Nertivia-Client
synced 2026-06-18 05:51:11 +00:00
9 lines
329 B
JavaScript
9 lines
329 B
JavaScript
exports.isMobile = () => {
|
|
// if we want a more complete list use this: http://detectmobilebrowsers.com/
|
|
// str.test() is more efficent than str.match()
|
|
// remember str.test is case sensitive
|
|
var isMobile = /iphone|ipod|android|ie|blackberry|fennec/.test(
|
|
navigator.userAgent.toLowerCase()
|
|
);
|
|
return isMobile;
|
|
};
|