Appearance
function isPc(): boolean
判断当前浏览器环境是否为 PC 设备。非 Android 且非 iOS 设备都会返回 true。
true
该函数不需要传入参数。
false
boolean
import { isPc } from '@mingto/tools' if (isPc()) { // PC 端逻辑 } isPc() // boolean