8 lines
243 B
TypeScript
8 lines
243 B
TypeScript
export function isPC() {
|
|
const agents = ['Android', 'iPhone', 'webOS', 'BlackBerry', 'SymbianOS', 'Windows Phone', 'iPad', 'iPod'];
|
|
|
|
const isMobile = agents.some(agent => window.navigator.userAgent.includes(agent));
|
|
|
|
return !isMobile;
|
|
}
|