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