Files
FloatApi/node_modules/superagent/lib/node/parsers/text.js
T
2022-03-07 22:07:57 +07:00

11 lines
176 B
JavaScript

'use strict';
module.exports = function(res, fn){
res.text = '';
res.setEncoding('utf8');
res.on('data', chunk => {
res.text += chunk;
});
res.on('end', fn);
};