Are there any javascript libraries that can take a byte array and bz2 depress it into another byte array? I know that many browsers have this capability for an entire stream, but this array is at an offset from the start of the stream.
Are there any javascript libraries that can take a byte array and bz2 depress it into another byte array? I know that many browsers have this capability for an entire stream, but this array is at an offset from the start of the stream.
Share Improve this question asked Feb 24, 2012 at 16:42 graphicsMangraphicsMan 4024 silver badges8 bronze badges 1- Are you doing this in a browser? Or using node.js? – Kekoa Commented Feb 24, 2012 at 17:02
1 Answer
Reset to default 5Yes. Here's ont for byte array: https://github./antimatter15/bzip2.js And for binary strings: https://github./kirilloid/bzip2-js