UNPKG

js-util-libsjia

Version:
12 lines (11 loc) 279 B
// 时间戳写法 export default function throttled1(fn, delay = 500) { let oldtime = Date.now(); return function (...args) { let newTime = Date.now(); if (newTime - oldtime >= delay) { fn.apply(null, args); oldtime = Date.now(); } }; }