Package Exports
- mimic-response
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mimic-response) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
mimic-response 
Mimic a Node.js HTTP response stream
Install
$ npm install mimic-responseUsage
const stream = require('stream');
const mimicResponse = require('mimic-response');
const responseStream = getHttpResponseStream();
const myStream = new stream.PassThrough();
mimicResponse(responseStream, myStream);
console.log(myStream.statusCode);
//=> 200API
mimicResponse(from, to)
from
Type: Stream
to
Type: Stream
Any stream.
Related
- mimic-fn - Make a function mimic another one
- clone-response - Clone a Node.js response stream
License
MIT © Sindre Sorhus