Closed
Description
Buffers have picked up a new .buffer
property in 3.0 that seems to be a side effect of the Uint8Array stuff but is breaking code.
2.5
> new Buffer("test").buffer;
undefined
3.1
> new Buffer("test").buffer;
ArrayBuffer {}
Can you remove this new property or do I need to file PR against the modules this breaks?