UNPKG

@videojs/http-streaming

Version:

Play back HLS and DASH with Video.js, even where it's not natively supported

12 lines (9 loc) 216 B
export const debounce = (callback, wait) => { let timeoutId = null; return (...args) => { clearTimeout(timeoutId); timeoutId = setTimeout(() => { callback.apply(null, args); }, wait); }; };