@jk-core/utils
Version:
utils for jk
16 lines (11 loc) • 307 B
text/typescript
const checkIsMobile = () => {
const { userAgent } = navigator;
if (userAgent.match(/Android/i) || userAgent.match(/iPhone|iPad|iPod/i)) {
return true;
}
if (userAgent.match(/Windows/i) || userAgent.match(/Macintosh/i)) {
return false;
}
return true;
};
export default checkIsMobile;