git ssb

0+

wanderer🌟 / buffer-pipe



Tree: 1792ff4568516f8d685178c705a4d9d687d87368

Files: 1792ff4568516f8d685178c705a4d9d687d87368 / README.md

1456 bytesRaw

SYNOPSIS

NPM Package
Build Status
Coverage Status

js-standard-style

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

read

read num number of bytes from the pipe

Parameters

Returns Buffer

write

Wites a buffer to the pipe

Parameters

LICENSE

MPL-2.0)

Built with git-ssb-web