array_decoder

Like string_decoder but for arrays

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
array_decoder
0.1.011 years ago11 years agoMinified + gzip package size for array_decoder in KB

Readme

Array Decoder

This class can be used to stream arrays of data when chunks may end with partial elements. Similar to string decoder but for arrays.

Installation

npm install array_decoder

Usage

var ArrayDecoder = require('array_decoder').ArrayDecoder

var decoder = new ArrayDecoder

// Outputs: ['abc', 'def']
console.log(decoder.write(['abc', 'def', 'gh']))

// Outputs: ['ghi', 'jkl']
console.log(decoder.write(['i', 'jkl', 'mn']))

// Outputs: ['mnl']
console.log(decoder.write(['l'], true))

new ArrayDecoder(format)

Output can be string or buffer. If not specified it will be as input.

write(array, complete)

array - Array of strings, buffers or array of arrays of string or buffers. complete - Set to true for last chunk.