Skip to content

Instantly share code, notes, and snippets.

@Qard
Last active February 15, 2019 16:59
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 Qard/bef66f5c887209131001cd02df8e93a2 to your computer and use it in GitHub Desktop.
Save Qard/bef66f5c887209131001cd02df8e93a2 to your computer and use it in GitHub Desktop.
function betterPromise (executor) {
let args
const promise = new Promise((..._args) => {
args = _args
})
executor.apply(null, args)
return promise
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment