aboutsummaryrefslogtreecommitdiff
path: root/node_modules/superagent/lib/node/parsers/text.js
blob: 03575c698a610dc67e0ceeecdd4b86f0f05d44c3 (plain) (blame)
1
2
3
4
5
6
7
module.exports = function(res, fn){
  res.text = '';
  res.setEncoding('utf8');
  res.on('data', function(chunk){ res.text += chunk; });
  res.on('end', fn);
};