摘要: /** * @desc 格式化日期 * date为日期格式: Date 或date字符串 Date | number | string * fmt为要转化的格式,如:'yyyy-MM-dd HH:mm:ss' */ export const dateFormatter = (date, fmt = 阅读全文
posted @ 2023-02-28 14:11 ^柒 阅读(63) 评论(0) 推荐(0)
摘要: // 节流 export function throttle({ delay = 300, callback = () => { } }) { return function (...args) { const { isRunning } = throttle if (isRunning) retu 阅读全文
posted @ 2023-02-28 11:36 ^柒 阅读(24) 评论(0) 推荐(0)