UNPKG

navigation-stack

Version:

Handles navigation in a web browser

7 lines (6 loc) 162 B
export default function scheduleNextTick(func) { const timerId = window.requestAnimationFrame(func); return () => { cancelAnimationFrame(timerId); }; }