1.3.0 • Published 11 months ago

unslab v1.3.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
11 months ago

unslab

Unslab some slab'ed buffers

npm install unslab

Usage

const unslab = require('unslab')

// the buf returned unpools the buffer passed from the memory slab
const buf = unslab(Buffer.from('hello world'))

// can do multiple at the same time if you use them together. only does a single alloc in this case
const [a, b] = unslab([Buffer.from('hello'), Buffer.from('world')])

License

Apache-2.0