UNPKG

superagent

Version:

elegant & feature rich browser / node HTTP with a fluent API

11 lines (9 loc) 172 B
'use strict'; module.exports = (res, fn) => { res.text = ''; res.setEncoding('utf8'); res.on('data', chunk => { res.text += chunk; }); res.on('end', fn); };