Skip to content

Instantly share code, notes, and snippets.

@ejnshtein
Last active January 7, 2019 17:27
Show Gist options
  • Save ejnshtein/c4d2b1d8c2ed12cc4cb77d890eeda2e0 to your computer and use it in GitHub Desktop.
Save ejnshtein/c4d2b1d8c2ed12cc4cb77d890eeda2e0 to your computer and use it in GitHub Desktop.
const a = require('module');
(async () => {
cons result = await a()
console.log(result)
})()
// or
a.then(result => console.log(result))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment