diff --git a/benchmark/buffers/buffer-from.js b/benchmark/buffers/buffer-from.js index c35a0f23e06958..c7889b2ec63f22 100644 --- a/benchmark/buffers/buffer-from.js +++ b/benchmark/buffers/buffer-from.js @@ -10,7 +10,8 @@ const bench = common.createBenchmark(main, { 'buffer', 'uint8array', 'string', - 'string-base64' + 'string-base64', + 'object' ], len: [10, 2048], n: [1024] @@ -25,6 +26,7 @@ function main(conf) { const str = 'a'.repeat(len); const buffer = Buffer.allocUnsafe(len); const uint8array = new Uint8Array(len); + const obj = { length: null }; // Results in a new, empty Buffer var i; @@ -80,6 +82,13 @@ function main(conf) { } bench.end(n); break; + case 'object': + bench.start(); + for (i = 0; i < n * 1024; i++) { + Buffer.from(obj); + } + bench.end(n); + break; default: assert.fail(null, null, 'Should not get here'); } diff --git a/lib/buffer.js b/lib/buffer.js index 557ac867e2e0fc..a6a0d59f74f52f 100644 --- a/lib/buffer.js +++ b/lib/buffer.js @@ -108,6 +108,9 @@ Buffer.from = function(value, encodingOrOffset, length) { Object.setPrototypeOf(Buffer, Uint8Array); +// The 'assertSize' method will remove itself from the callstack when an error +// occurs. This is done simply to keep the internal details of the +// implementation from bleeding out to users. function assertSize(size) { let err = null; @@ -117,9 +120,6 @@ function assertSize(size) { err = new RangeError('"size" argument must not be negative'); if (err) { - // The following hides the 'assertSize' method from the - // callstack. This is done simply to hide the internal - // details of the implementation from bleeding out to users. Error.captureStackTrace(err, assertSize); throw err; } @@ -258,7 +258,7 @@ function fromObject(obj) { } if (obj) { - if ('length' in obj || isArrayBuffer(obj.buffer) || + if (obj.length !== undefined || isArrayBuffer(obj.buffer) || isSharedArrayBuffer(obj.buffer)) { if (typeof obj.length !== 'number' || obj.length !== obj.length) { return new FastBuffer();