A collection of function for timeouts.
Resolves a promise after a given time.
Return a throttled function that will run the callback at most once until the timer expires.
A re-export of https://github.com/angus-c/just/tree/master/packages/function-throttle
Return a debounced function that will run the callback ms after the last invocation.
A re-export of https://github.com/angus-c/just/tree/master/packages/function-debounce
Creates an interval that calls a function at a fixed interval using requestAnimationFrame. Returns a function that cancels the interval.
Return a throttled function that is called at most once per animation frame.