Skip to content

Instantly share code, notes, and snippets.

@Ericnr
Created January 25, 2022 17:32
Show Gist options
  • Save Ericnr/29181b20ecbe515bee70a86f484f25d7 to your computer and use it in GitHub Desktop.
Save Ericnr/29181b20ecbe515bee70a86f484f25d7 to your computer and use it in GitHub Desktop.
const makeQueue = () => {
let promise = Promise.resolve();
return function queue(asyncFn) {
promise = promise.then(() => asyncFn());
return promise;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment