Skip to content

Instantly share code, notes, and snippets.

@mafintosh
Last active March 28, 2019 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mafintosh/23f93ad87111263560350a711810e181 to your computer and use it in GitHub Desktop.
Save mafintosh/23f93ad87111263560350a711810e181 to your computer and use it in GitHub Desktop.
function thunkyPromise (worker) {
let current = null
return function () {
if (!current) current = worker().catch(onerror)
return current
}
function onerror () {
current = null
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment