SILENT KILLERPanel

Current Path: > > lib > node_modules > npm > node_modules > stream-iterate >


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //lib/node_modules/npm/node_modules/stream-iterate/

NameTypeSizeLast ModifiedActions
node_modules Directory - -
.npmignore File 13 bytes March 10 2021 14:36:37.
.travis.yml File 60 bytes March 10 2021 14:36:37.
LICENSE File 1079 bytes March 10 2021 14:36:37.
README.md File 834 bytes March 10 2021 14:36:37.
index.js File 1361 bytes March 10 2021 14:36:37.
package.json File 1521 bytes March 10 2021 14:36:37.
test.js File 1231 bytes March 10 2021 14:36:37.

Reading File: //lib/node_modules/npm/node_modules/stream-iterate//index.js

var Readable = require('readable-stream').Readable
var shift = require('stream-shift')

var stream2 = function (stream) {
  if (stream._readableState) return stream
  return new Readable({objectMode: true, highWaterMark: 16}).wrap(stream)
}

module.exports = function (stream) {
  stream = stream2(stream)

  var ended = false
  var data = null
  var err = null
  var destroyed = false
  var fn = null

  var consume = function (e) {
    if (e) {
      destroyed = true
      if (stream.destroy) stream.destroy(e)
      return
    }

    data = null
    err = null
  }

  var onresult = function () {
    if (!fn) return
    var tmp = fn
    fn = undefined
    tmp(err, data, consume)
  }

  var update = function () {
    if (!fn) return
    data = shift(stream)
    if (data === null && !ended) return
    onresult()
  }

  var onend = function () {
    ended = true
    onresult()
  }

  stream.on('readable', update)

  stream.on('error', function (e) {
    err = e
    onresult()
  })

  stream.on('close', function () {
    if (stream._readableState.ended) return
    onend()
  })

  stream.on('end', onend)

  return function (callback) {
    if (destroyed) return
    if (err) return callback(err, null, consume)
    if (data) return callback(null, data, consume)
    if (ended) return callback(null, null, consume)
    fn = callback
    update()
  }
}

SILENT KILLER Tool