---
title: throttle - 节流函数
nav:
  title: 使用文档
  path: /lib
group:
  path: /
  order: 8
---

## throttle

> 节流函数

Demo:

```tsx | pure
import { throttle } from 'shengjs';

function log(name) {
  log(name);
}

throttle(name, 200)('shengjs');
```
