Skip to content

AWinterman/new-from

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

new-from

A modern version of dominictarr's from, implemented with the new stream api.

Deprecation notice

There are other modules that accomplish the same or similar goals.

  • from2 - pretty much identical.
  • into-stream - similar goals.

Also, the readable-stream constructors are much easier to use now.

API:

var from = require('new-from')

var zero_to_nine = from(make_chunk)

function make_chunk(idx) {
  if(idx < 10) {
    return idx
  }  
  return null
}

// Or, in this case:

zero_to_nine = from([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])

Releases

No releases published

Packages

No packages published