UNPKG

lenye_base

Version:

基础方法

16 lines (12 loc) 326 B
import './ifnodeorbrowser.js'; import './windowsimulate.js'; 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;