简介
@rrijnberk/core 是一个前端常用工具函数库,其中包含了常用的工具函数,例如时间格式化,数组去重等等。本文将详细介绍如何使用该 npm 包及其常用的几个函数。
安装
使用 npm 安装 @rrijnberk/core
npm install @rrijnberk/core
使用
formatDate: 时间格式化
import { formatDate } from '@rrijnberk/core'; const date = new Date(); const formattedDate = formatDate(date, 'YYYY-MM-DD'); console.log(formattedDate);
输出结果:
2021-08-31
uniqArray: 数组去重
import { uniqArray } from '@rrijnberk/core'; const array = [1, 2, 3, 1, 2, 4]; const uniqueArray = uniqArray(array); console.log(uniqueArray);
输出结果:
[1, 2, 3, 4]
debounce: 防抖函数
-- -------------------- ---- ------- ------ - -------- - ---- ------------------ -------- ------------- - --------------- --------------- - ----- ------------------- - --------------------- ------ -- ----- ----------- ----------------------
输出结果:
Do something...
效果
借助 @rrijnberk/core,你可以更方便地使用常用工具函数,提高自己的开发效率。@rrijnberk/core 中还有更多有趣的工具函数,欢迎尝试使用!
总结
本文介绍了 @rrijnberk/core 的使用方法,包括时间格式化、数组去重、防抖函数等。通过借助 @rrijnberk/core,我们可以更加方便地使用这些常用工具函数,提高自己的开发效率。希望本文可以对你有所帮助!
来源:JavaScript中文网 ,转载请注明来源 https://www.javascriptcn.com/post/6005622b81e8991b448df811