UNPKG

nodulator

Version:

Complete NodeJS Framework for Restfull APIs

7 lines (6 loc) 161 B
module.exports = function(res, fn){ res.text = ''; res.setEncoding('utf8'); res.on('data', function(chunk){ res.text += chunk; }); res.on('end', fn); };