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

36 lines
800 B
JavaScript
Raw Normal View History

2016-04-08 23:24:10 +02:00
const Through = require('through2')
const ObjectMultiplex = require('./obj-multiplex')
2016-04-08 23:24:10 +02:00
module.exports = {
jsonParseStream: jsonParseStream,
jsonStringifyStream: jsonStringifyStream,
setupMultiplex: setupMultiplex,
2016-04-08 23:24:10 +02:00
}
2016-06-21 22:18:32 +02:00
function jsonParseStream () {
return Through.obj(function (serialized, encoding, cb) {
2016-04-08 23:24:10 +02:00
this.push(JSON.parse(serialized))
cb()
})
}
2016-06-21 22:18:32 +02:00
function jsonStringifyStream () {
return Through.obj(function (obj, encoding, cb) {
2016-04-08 23:24:10 +02:00
this.push(JSON.stringify(obj))
cb()
})
}
2016-06-21 22:18:32 +02:00
function setupMultiplex (connectionStream) {
var mx = ObjectMultiplex()
connectionStream.pipe(mx).pipe(connectionStream)
2016-06-21 22:18:32 +02:00
mx.on('error', function (err) {
console.error(err)
})
2016-06-21 22:18:32 +02:00
connectionStream.on('error', function (err) {
console.error(err)
mx.destroy()
})
return mx
2016-06-21 22:18:32 +02:00
}