Sha256: 06b8b47bdab880d8472a3a0555dc1f3f2dcde3137eafb6535ec8b3bd0f014444
Contents?: true
Size: 441 Bytes
Versions: 5
Compression:
Stored size: 441 Bytes
Contents
'use strict'; const common = require('../common'); const stream = require('stream'); const r = new stream.Stream(); r.listenerCount = undefined; const w = new stream.Stream(); w.listenerCount = undefined; w.on('pipe', function() { r.emit('error', new Error('Readable Error')); w.emit('error', new Error('Writable Error')); }); r.on('error', common.mustCall(noop)); w.on('error', common.mustCall(noop)); r.pipe(w); function noop() {}
Version data entries
5 entries across 4 versions & 1 rubygems