How to use the multistream.prototype function in multistream

To help you get started, we’ve selected a few multistream examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github digidem / mosaic-image-stream / lib / pixel-multi-stream.js View on Github external
PixelMultiStream.prototype._gotNextStream = function (stream) {
  if (stream) {
    if (stream.format && stream.format.height) {
      onFormat.call(this, stream.format)
    } else {
      stream.on('format', onFormat.bind(this))
    }
  } else if (this._actualHeight !== this.format.height) {
    this.emit('error', new Error('Total height of mosaiced images (' + this._actualHeight +
      'px) did not match specified height (' + this.format.height + 'px)'))
  }
  MultiStream.prototype._gotNextStream.call(this, stream)
}

multistream

A stream that emits multiple other streams one after another (streams3)

MIT
Latest version published 3 years ago

Package Health Score

71 / 100
Full package analysis