-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
buffer: only check if instance is Uint8Array
Native Buffer method calls do not require anything from the prototype. So it is unnecessary to check if the Object's prototype is equal to Buffer.prototype. This fixes an issue that prevents Buffer from being inherited the ES5 way. Now the following will work: function A(n) { const b = new Buffer(n); Object.setPrototypeOf(b, A.prototype); return b; } Object.setPrototypeOf(A.prototype, Buffer.prototype); Object.setPrototypeOf(A, Buffer); console.log(new A(4)); Fix: #2882 PR-URL: #3080 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
- Loading branch information
1 parent
d5a1b1a
commit 651a5b5
Showing
2 changed files
with
47 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
|
||
|
||
function T(n) { | ||
const ui8 = new Uint8Array(n); | ||
Object.setPrototypeOf(ui8, T.prototype); | ||
return ui8; | ||
} | ||
Object.setPrototypeOf(T.prototype, Buffer.prototype); | ||
Object.setPrototypeOf(T, Buffer); | ||
|
||
T.prototype.sum = function sum() { | ||
let cntr = 0; | ||
for (let i = 0; i < this.length; i++) | ||
cntr += this[i]; | ||
return cntr; | ||
}; | ||
|
||
|
||
const vals = [new T(4), T(4)]; | ||
|
||
vals.forEach(function(t) { | ||
assert.equal(t.constructor, T); | ||
assert.equal(t.__proto__, T.prototype); | ||
assert.equal(t.__proto__.__proto__, Buffer.prototype); | ||
|
||
t.fill(5); | ||
let cntr = 0; | ||
for (let i = 0; i < t.length; i++) | ||
cntr += t[i]; | ||
assert.equal(t.length * 5, cntr); | ||
|
||
// Check this does not throw | ||
t.toString(); | ||
}); |