Created
February 18, 2016 01:33
-
-
Save ebramanti/db42d7b9e32d8692d181 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const requestFromLinkInFile = Promise.coroutine(function*() { | |
const url = yield fs.readFile('link.txt'); | |
const response = yield request.get(url); | |
return response.body ? response.body : 'No body returned from request.'; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment