From 85ab4a5f1281c4e1dd06450ac7bd3250326267fa Mon Sep 17 00:00:00 2001 From: James M Snell Date: Mon, 25 Jan 2016 15:00:06 -0800 Subject: buffer: add .from(), .alloc() and .allocUnsafe() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Several changes: * Soft-Deprecate Buffer() constructors * Add `Buffer.from()`, `Buffer.alloc()`, and `Buffer.allocUnsafe()` * Add `--zero-fill-buffers` command line option * Add byteOffset and length to `new Buffer(arrayBuffer)` constructor * buffer.fill('') previously had no effect, now zero-fills * Update the docs PR-URL: https://github.com/nodejs/node/pull/4682 Reviewed-By: Сковорода Никита Андреевич Reviewed-By: Stephen Belanger --- benchmark/dgram/single-buffer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'benchmark/dgram/single-buffer.js') diff --git a/benchmark/dgram/single-buffer.js b/benchmark/dgram/single-buffer.js index 765311a72f..2676e0e74c 100644 --- a/benchmark/dgram/single-buffer.js +++ b/benchmark/dgram/single-buffer.js @@ -25,7 +25,7 @@ function main(conf) { len = +conf.len; num = +conf.num; type = conf.type; - chunk = new Buffer(len); + chunk = Buffer.allocUnsafe(len); server(); } -- cgit v1.2.3