npm.io
0.1.1 • Published 14 years ago

joinbuffers

Licence
public domain
Version
0.1.1
Deps
0
Vulns
0
Weekly
0

#joinBuffers Build Status takes an array of small buffers and copies them into a single big one

##installation npm install joinbuffers

example

var joinBuffers = require('joinbuffers')
var smallBuffers = [new Buffer('1'), new Buffer('2')];
var bigBuffer = joinBuffers(smallBuffers);
console.log(bigBuffer.toString('utf8')); // prints 12

license

public domain

Keywords