UNPKG

mz700-js

Version:
19 lines (17 loc) 481 B
"use strict"; export function getDeviceType():string { const ua = navigator.userAgent; if (ua.indexOf('iPhone') >= 0 || ua.indexOf('iPod') >= 0 || ua.indexOf('Android') >= 0 && ua.indexOf('Mobile') >= 0) { return "mobile"; } else if (ua.indexOf('iPad') >= 0 || ua.indexOf('Android') >= 0) { return "tablet"; } return "pc"; } const UserAgentUtil = { getDeviceType }; export default UserAgentUtil; module.exports = UserAgentUtil;