]> zoso.dev Git - buffer.git/commit
Fix copy with typed arrays
authorDevon Govett <devongovett@gmail.com>
Tue, 8 Apr 2014 07:26:20 +0000 (00:26 -0700)
committerDevon Govett <devongovett@gmail.com>
Tue, 8 Apr 2014 07:26:20 +0000 (00:26 -0700)
commit28ee4f41a1b19605fe147dd333bab07862876e41
tree7075b90536d7e8c7d8e745e19d85f898b5343e3f
parentb925f14e4eead0b442fa7106c730338f12e4c524
Fix copy with typed arrays

Creating a new `Uint8Array` from the `this.buffer` doesn't work if `subarray` had previously been used (e.g. `slice`), since `this.buffer` still would refer to the start of the buffer, not the start of the subarray. We can use `subarray` here instead, which keeps previous subarray indices intact.
index.js