1
0
mirror of https://github.com/hotomoe/hotomoe synced 2025-01-09 19:32:53 +09:00
hotomoe/src/client/scripts/is-mobile.ts

3 lines
109 B
TypeScript
Raw Normal View History

2021-02-17 21:34:20 +09:00
const ua = navigator.userAgent.toLowerCase();
export const isMobile = /mobile|iphone|ipad|android/.test(ua);