Files: 376f4f657ecb2c3c7640f681618f5ba8ac8f055b / README.md
2152 bytesRaw
SYNOPSIS
A simple pipe for buffers. Write data to one end and read data off the other end.
INSTALL
npm install buffer-pipe
USAGE
const pipe = require('buffer-pipe')
const p = new Pipe()
p.write(Buffer.from([1,2,3,4]))
const buf = p.read(2)
// <1, 2>
API
constructor
Creates a new instance of a pipe
Parameters
buf
Buffer an optional buffer to start with (optional, defaultBuffer.from([])
)
read
read num
number of bytes from the pipe
Parameters
num
Number
Returns Buffer
write
Wites a buffer to the pipe
Parameters
buf
Buffer
end
Whether or not there is more data to read from the buffer returns {Boolean}
LICENSE
Built with git-ssb-web