UNPKG

superagent

Version:

elegant & feature rich browser / node HTTP with a fluent API

7 lines (6 loc) 161 B
module.exports = function(res, fn){ res.text = ''; res.setEncoding('utf8'); res.on('data', function(chunk){ res.text += chunk; }); res.on('end', fn); };