Skip to content

Instantly share code, notes, and snippets.

@theArina
Created June 19, 2024 15:00
Show Gist options
  • Save theArina/54e8d49fefb5ed01e2644c9fd3dbcab2 to your computer and use it in GitHub Desktop.
Save theArina/54e8d49fefb5ed01e2644c9fd3dbcab2 to your computer and use it in GitHub Desktop.
let tailPromise = Promise.resolve();
const enqueuePromise = (fn) => {
return tailPromise = tailPromise.then(fn);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment