This file contains hidden or 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
/* | |
* Complete reworking of JS from https://gist.github.com/803410 | |
* Removes external `request` dependency | |
* Caveats: | |
* * No error checking | |
* * Largely a POC. `data` URI is accurate, but this code cannot simply be inserted into an `express` app | |
*/ | |
var URL = require('url'), | |
sURL = 'http://nodejs.org/logo.png', | |
oURL = URL.parse(sURL), |