Skip to content

Instantly share code, notes, and snippets.

@mishelashala
Last active July 27, 2020 13:52
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 mishelashala/2f434a9197d11461fb1ad6d58beaa163 to your computer and use it in GitHub Desktop.
Save mishelashala/2f434a9197d11461fb1ad6d58beaa163 to your computer and use it in GitHub Desktop.
// PromisedNumber :: () -> Promise<Error>
const PromisedNumber = () => new Promise(function (fulfill, reject) {
setTimeout(() => { reject(new Error('could not produce number')) }, 500)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment