Skip to content

Instantly share code, notes, and snippets.

@octatone
Created October 26, 2014 16:32
Show Gist options
  • Save octatone/495f002fefc1e24d9a1c to your computer and use it in GitHub Desktop.
Save octatone/495f002fefc1e24d9a1c to your computer and use it in GitHub Desktop.
Promisifying a normal Node function
const request = require('request'),
promisify = require('es6-promisify'),
get = promisify(request.get);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment