简介
wigo-utils 是一个基于 JavaScript 开发的前端工具函数库,包含了一些常见的实用工具函数,能够帮助开发者提高开发效率和代码质量。
安装
使用 npm 安装 wigo-utils:
npm install wigo-utils
使用方法
引入
在需要使用的文件中引入需要的函数:
import { formatDate } from 'wigo-utils';
函数列表
wigo-utils 中包含的函数如下:
formatDate
将时间戳转化为指定格式的字符串:
formatDate(dateString, format);
参数:
- dateString:时间戳,必选;
- format:日期格式,可选,默认为
yyyy-MM-dd hh:mm:ss
。
示例:
import { formatDate } from 'wigo-utils'; const timestamp = 1620403200000; // 2021年5月8日 0时0分0秒 const formattedDate = formatDate(timestamp, 'yyyy年MM月dd日 hh:mm'); console.log(formattedDate); // 输出:2021年05月08日 00:00
debounce
函数节流,防止函数重复触发:
debounce(fn, delay);
参数:
- fn:需要节流的函数,必选;
- delay:时间间隔,可选,默认为 100 毫秒。
示例:
-- -------------------- ---- ------- ------ - -------- - ---- ------------- -------- ------------- - ------------------- --------- - ----- ----- - ---- -- --- -- ----- -------------------- - --------------------- ------- --------------------------------- ----------------------
throttle
函数防抖,确保函数调用不会频繁:
throttle(fn, interval);
参数:
- fn:需要防抖的函数,必选;
- interval:执行时间间隔,可选,默认为 100 毫秒。
示例:
-- -------------------- ---- ------- ------ - -------- - ---- ------------- -------- ------------- - ------------------- --------- - ----- -------- - ---- -- --- -- ----- -------------------- - --------------------- ---------- --------------------------------- ----------------------
总结
wigo-utils 是一个实用的前端工具函数库,包含了一些常用的工具函数,能够帮助我们提高开发效率和代码质量。感谢你的阅读,希望这篇文章能够对你有所帮助。
来源:JavaScript中文网 ,转载请注明来源 https://www.javascriptcn.com/post/6006710b8dd3466f61ffe10f