---
title: isIE - 判断是否为IE低版本（11以下）浏览器环境
nav:
  title: 使用文档
  path: /lib
group:
  path: /EnvironmentalJudgment
  title: 环境判断
  order: 6
---

## isIE

Demo:

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

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