Skip to content

Instantly share code, notes, and snippets.

@janpaepke
Created July 4, 2022 09:57
Show Gist options
  • Select an option

  • Save janpaepke/f0e5f60ae5bf57160746f22927a59119 to your computer and use it in GitHub Desktop.

Select an option

Save janpaepke/f0e5f60ae5bf57160746f22927a59119 to your computer and use it in GitHub Desktop.
export const reversibleTimeout = (callback, ms) => {
const timeoutId = setTimeout(callback, ms);
return () => clearTimeout(timeoutId);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment