Skip to content

Instantly share code, notes, and snippets.

@GaetanoPiazzolla
Last active April 11, 2021 20:10
Show Gist options
  • Save GaetanoPiazzolla/6082be25518081d1f063149c4dd42629 to your computer and use it in GitHub Desktop.
Save GaetanoPiazzolla/6082be25518081d1f063149c4dd42629 to your computer and use it in GitHub Desktop.
const calculus = require('./calculus')
const asynch_calculus = (num) => {
return new Promise((resolve, reject) => {
resolve(calculus.execute(num))
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment