1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/app/scripts/lib/stream-utils.js

23 lines
473 B
JavaScript
Raw Normal View History

import ObjectMultiplex from 'obj-multiplex'
import pump from 'pump'
2016-04-08 23:24:10 +02:00
/**
* Sets up stream multiplexing for the given stream
* @param {any} connectionStream - the stream to mux
* @return {stream.Stream} the multiplexed stream
*/
export function setupMultiplex (connectionStream) {
const mux = new ObjectMultiplex()
pump(
connectionStream,
mux,
connectionStream,
(err) => {
if (err) {
console.error(err)
}
}
)
return mux
2016-06-21 22:18:32 +02:00
}