0.2.0 • Published 11 years ago

byteslice v0.2.0

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

byteslice

Simple way to concat and slice arrays through bytewise encoding and decoding.

var b = byteslice(['yes', 1])

bytewise.decode( b.encode(['x']) )
// ['yes', 1, 'x']

bytewise.decode( b.encode(['x', ['y']]), )
// ['yes', 1, 'x', ['y']]

b = b.concat('no')

bytewise.decode( b.encode(['x']) )
// ['yes', 1, 'no', 'x']
bytewise.decode( b.encode(['x', ['y']]) )
// ['yes', 1, 'no', 'x', ['y']]