UNPKG

tanglepaysdk-client

Version:

DApp SDK to interact with TanglePay wallets

9 lines (8 loc) 285 B
const mobileAgents = ['Android', 'iPhone', 'SymbianOS', 'Windows Phone', 'iPad', 'iPod']; export const checkIsPc = () => { const agent = navigator.userAgent; for (const mobileAgent of mobileAgents) { if (agent.includes(mobileAgent)) return true; } return false; };