django-vue3-admin-web/node_modules/@uppy/utils/lib/isMobileDevice.js
2025-10-20 21:21:14 +08:00

17 lines
377 B
JavaScript

"use strict";
function isMobileDevice() {
if (typeof window !== 'undefined' && window.navigator && window.navigator.userAgent && window.navigator.userAgent.match(/Mobi/)) {
return true;
}
return false;
}
/**
* Checks if current device reports itself as “mobile”.
* Very simple, not very reliable.
*
* @returns {boolean}
*/
module.exports = isMobileDevice;