UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

16 lines (11 loc) 286 B
'use strict'; require('./ua.js'); var is_mobile = require('./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 !is_mobile(); } module.exports = isPC;