1.0.1 • Published 11 years ago

pull-markable v1.0.1

Weekly downloads
4
License
-
Repository
github
Last release
11 years ago

pull-markable

A pull-stream that you can mark, read ahead, and then jump back to the marked point.

Used in regular-stream

Example

var markable = require('pull-markable')

var read = pull.values([1, 2, 3]).pipe(markable)

var revert = read.mark()

read(null, function (end, data) {
  console.log(data) //=> 1
   //data = 1
  read(null, function (end, data) {
    console.log(data) //=> 2
    //revert takes us back to 1!
    revert()
    read(null, function (end, data) {
      console.log(data) //=> 1 !
    })
  })
})

todo

release old marks, and probably also capture groups.

License

MIT