0.0.0 • Published 12 years ago

abe v0.0.0

Weekly downloads
7
License
MIT
Repository
github
Last release
12 years ago

abe

Create read/write streams for decoding/encoding text data from ArrayBuffer arrays.

var ArrayReadStream = require('abe').ArrayReadStream;

// lets say this is some stream which emits data as array buffers
var array_buff_stream;

// by piping the array buffer stream into our decode stream
// we will get the decoded data
var read_stream = array_buff_stream.pipe(new ArrayReadStream('utf-8'));

read_stream.on('data', function(chunk) {
    // chunk is now utf-8 data
});