13 lines
227 B
JavaScript
13 lines
227 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = (res, fn) => {
|
||
|
const data = []; // Binary data needs binary storage
|
||
|
|
||
|
res.on('data', chunk => {
|
||
|
data.push(chunk);
|
||
|
});
|
||
|
res.on('end', () => {
|
||
|
fn(null, Buffer.concat(data));
|
||
|
});
|
||
|
};
|