mirror of
https://github.com/wahyd4/cdnjs.git
synced 2026-08-11 22:06:36 +10:00
7 lines
161 B
JavaScript
7 lines
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);
|
|
}; |