# pull-continue **Repository Path**: mirrors_regular/pull-continue ## Basic Information - **Project Name**: pull-continue - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # pull-continue A concatenated stream of streams, except the next stream is created when the previous one ends. ``` js 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](https://github.com/dominictarr/pull-cat) ## License MIT