02 2023 档案
摘要:/** * @desc 格式化日期 * date为日期格式: Date 或date字符串 Date | number | string * fmt为要转化的格式,如:'yyyy-MM-dd HH:mm:ss' */ export const dateFormatter = (date, fmt =
阅读全文
摘要:// 节流 export function throttle({ delay = 300, callback = () => { } }) { return function (...args) { const { isRunning } = throttle if (isRunning) retu
阅读全文