@iwotech/utils
v1.5.0
Published
常用的工具集合(持续扩充)
Downloads
18
Readme
工具库
常用的工具集合(持续扩充)
安装
yarn add @iwotech/utils
模块目录
- copyText - 复制文本
- debounce - 防抖
- throttle - 节流
- file - 文件处理
- image - 图片处理
- regular - 正则
- scoket
- types - 类型判断
- xlsx
copyText (文本复制)
示例
import copyText from '@iwotech/utils/es/copyText'
copyText('复制的内容')
参数
| Param | Type | Description | | --- | --- | --- | | text | string | 要复制的文本内容 |
防抖、节流
从 lodash 源码中提取,api 完全一致
import debounce from '@iwotech/utils/es/debounce'
import throttle from '@iwotech/utils/es/throttle'