1.0.0 • Published 8 years ago

strings-stream v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

strings-stream

A streaming unix strings port

Build Status

example

var stringsStream = require('strings-stream')

process.stdin
	.pipe(stringsStream())
	.pipe(process.stdout)

api

var stringsStream = require('strings-stream')

var stream = stringsStream([opts])

  • opts is an optional object of options - minLength is the minimum length a string has to be to make it through. (Like the -n/--bytes option in strings.) Default: 4. (Same as strings.)
  • Returns stream, which is a through stream

install

With npm do:

npm install strings-stream

license

MIT