mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-20 23:05:09 +00:00
7 lines
No EOL
161 B
JavaScript
7 lines
No EOL
161 B
JavaScript
|
|
module.exports = function(res, fn){
|
|
res.text = '';
|
|
res.setEncoding('utf8');
|
|
res.on('data', function(chunk){ res.text += chunk; });
|
|
res.on('end', fn);
|
|
}; |