保誠-保戶業務員媒合平台
Mila
2021-12-06 f2fe7c2bacd26cde387d4d3a17ce6161dd189e26
1
2
3
4
export function isMobileDevice(): boolean {
    const mobileDevices = ['Android', 'webOS', 'iPhone', 'iPad', 'iPod', 'BlackBerry', 'Windows Phone'];
    return mobileDevices.some(e => navigator.userAgent.match(e));
}