UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

14 lines (10 loc) 262 B
import './ua.js'; import isMobile from './is_mobile.js'; /** * detect PC / Mobile * From https://stackoverflow.com/questions/3514784/what-is-the-best-way-to-detect-a-mobile-device-in-jquery */ function isPC() { return !isMobile(); } export default isPC;