stream-to-string
Pipe a stream into a string, collect value with callback or promise
example
var toString = through2 = stream = # or with promises streamstreamstream
api
var toString =
toString(stream[, enc][, cb])
Collects stream data into a string. Accepts an optional encoding argument used when converting the stream. Executes optional callback with err, string
. Returns a promise.
testing
npm test [--dot | --spec] [--coverage | --grep=pattern]
Specifying --dot
or --spec
will change the output from the default TAP style.
Specifying --coverage
will print a text coverage summary to the terminal after
tests have ran, while --pattern
will only run the test files that match the given
pattern.
Open an html coverage report with npm run view-cover
.