UNPKG

@findify/react-components

Version:
11 lines 262 B
export var debounce = function debounce(fn, wait) { var timeout; return function () { var ctx = this; var args = arguments; clearTimeout(timeout); timeout = setTimeout(function () { return fn.apply(ctx, args); }, wait || 0); }; };