UNPKG

float-sidebar

Version:

A lightweight (2kb gzipped), zero-dependency javascript library for making a sidebar float

13 lines (11 loc) 231 B
export function requestAnimationFrameThrottle(callback) { let requestId; return () => { if (!requestId) { requestId = requestAnimationFrame(() => { requestId = null; callback(); }); } } }