New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

pull-continue

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pull-continue

A concatenated stream of streams, except the next stream is created when the previous one ends.

latest
Source
npmnpm
Version
0.0.1
Version published
Weekly downloads
3
50%
Maintainers
1
Weekly downloads
 
Created
Source

pull-continue

A concatenated stream of streams, except the next stream is created when the previous one ends.

var pcontinue = require('pull-continue')

  //log a stream of 0-99 10 times.
  pull(
    //i = the index of the stream you are up to (first stream is 0)
    //n = number of items in previous stream.
    pcontinue(function (i, n) {
      if(i > 10) return
      return pull.count(100)
    }),
    pull.log()
  )

see also pull-cat

License

MIT

FAQs

Package last updated on 24 Apr 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts