0.1.0 • Published 11 years ago

string-accumulating-sink v0.1.0

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

string-accumulating-sink

A Node.js stream that accumulates all received chunks into a string.

Pipe a source into an instance of string_accumulating_sink. It will accumulate the chunks of data it receives into a string and then send that string to the callback.

Getting Started

Install the module with: npm install string-accumulating-sink

string_accumulating_sink([encoding],function (result){});

Example

var string_accumulating_sink = require( 'string-accumulating-sink' );
source_stream.pipe(string_accumulating_sink(function (result) {
    console.log(result);
}))

Release History

(Nothing yet)

Build Status

License

Copyright (c) 2013 Randy McLaughlin

Licensed under the MIT license.