diff options
author | James M Snell <jasnell@gmail.com> | 2016-01-25 15:00:06 -0800 |
---|---|---|
committer | James M Snell <jasnell@gmail.com> | 2016-03-16 08:34:02 -0700 |
commit | 85ab4a5f1281c4e1dd06450ac7bd3250326267fa (patch) | |
tree | 7a51edfc5d6efc231cf821d575c9ca4a26d0545f /doc/node.1 | |
parent | 90a5fc20be22b4278a01bc58acba0cb732da0140 (diff) | |
download | node-new-85ab4a5f1281c4e1dd06450ac7bd3250326267fa.tar.gz |
buffer: add .from(), .alloc() and .allocUnsafe()
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: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Diffstat (limited to 'doc/node.1')
-rw-r--r-- | doc/node.1 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/node.1 b/doc/node.1 index 0f3933a58d..e6f00b61e4 100644 --- a/doc/node.1 +++ b/doc/node.1 @@ -66,6 +66,9 @@ and servers. --prof-process process v8 profiler output generated using --prof + --zero-fill-buffers automatically zero-fill all newly allocated + Buffer and SlowBuffer instances + --v8-options print v8 command line options --tls-cipher-list=list use an alternative default TLS cipher list |