mirror of
https://github.com/wahyd4/cdnjs.git
synced 2026-08-13 14:55:54 +10:00
9 lines
166 B
JavaScript
9 lines
166 B
JavaScript
|
|
module.exports = function(res, fn){
|
|
var data = '';
|
|
res.on('data', function(chunk){ data += chunk; });
|
|
res.on('end', function () {
|
|
fn(null, data);
|
|
});
|
|
};
|