Growable 8-bit Byte Buffer In Javascript
I am looking for a type that would allow me to manipulate growable byte buffers in JavaScript; essentially, an equivalent to the Python bytearray type. My criteria for a solution i
Solution 1:
There is a ResizableArrayBuffer specification under development. As of this writing, it is at stage 2, so it has no major implementations. For now, Array
s will have to do.
Post a Comment for "Growable 8-bit Byte Buffer In Javascript"