---
title: isPc - 判断设备类型
nav:
  title: 使用文档
  path: /lib
group:
  path: /judge
  title: 常用判断函数
  order: 6
---

## isPc

Demo:

```tsx | pure
import { isPc } from 'xijs';

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