buffer-browserify
buffer-browserify copied to clipboard
node's buffer module, but for the browser.
Hi! I need slicing for a library that i am porting. I have started to look into how to make it work. The main issue seems to me that Buffer.slice...
I ran into this while writing a browser side Writable Stream. The problem is basically that `Buffer.isBuffer(buf)` returns `false` although it is one. This is due to `buf instanceof Buffer`...
Causing zlib-browserify to be broken: https://github.com/brianloveswords/zlib-browserify/issues/6 To produce the issue: 1. Clone [this gist](https://gist.github.com/superjoe30/6187455) 2. `browserify test.js >out.js` 3. Copy out.js into jsbeautifier.org and then paste back into out.js 4....
I tried to run this module with the Buffer tests from node ( https://github.com/joyent/node/blob/master/test/simple/test-buffer.js ) Tests run in Chrome 19.0.1084.52 m. May not all tests can be fixed... I tried...