UNPKG

mdui

Version:

a CSS Framework based on material design

14 lines (13 loc) 347 B
import $ from 'mdui.jq/es/$'; import { isNull } from 'mdui.jq/es/utils'; $.throttle = function (fn, delay = 16) { let timer = null; return function (...args) { if (isNull(timer)) { timer = setTimeout(() => { fn.apply(this, args); timer = null; }, delay); } }; };