---
title: isPc - 判断设备类型
nav:
  title: 使用文档
  path: /lib
group:
  path: /EnvironmentalJudgment
  title: 环境判断
  order: 6
---

## isPc

Demo:

```tsx | pure
import { isPc } from 'hikauto-utils';

// 判断当前设备是否为pc端
const isPc = isPc();
console.log(isPc); // -> true
```
