Skip to content

Instantly share code, notes, and snippets.

@Gwash3189
Created April 24, 2018 05:41
Show Gist options
  • Save Gwash3189/8f145300fdef6de442ee7b29bcad2989 to your computer and use it in GitHub Desktop.
Save Gwash3189/8f145300fdef6de442ee7b29bcad2989 to your computer and use it in GitHub Desktop.
const request = require('request')
module.exports.get = (url, options) => {
return new Promise((resolve, reject) => {
request.get(url, options, (err, response) => {
if (err) {
reject(err)
} else {
resolve(response)
}
})
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment