ruoyi-plus-soybean/src/utils/agent.ts

6 lines
192 B
TypeScript
Raw Normal View History

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