tiny_request
tiny_request copied to clipboard
It is makes possible to convert from win1251 to utf-8 by iconv, for example
Even though the API looks like it works with streams, `_getFileSizeInBytes` method in `Network` class defers to `fs.statSync` method. So if the `multipart` object is provided with any kind of...
Why don't you use the accepted in node style for callback functions? When err comes first parameter. ``` javascript req.get('http://google.com', (err, body, response) => { if (err) return console.error(err); if...