Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Lau <riclau@uk.ibm.com>2020-09-02 18:39:59 +0300
committerRichard Lau <riclau@uk.ibm.com>2020-09-08 18:35:08 +0300
commitb5a47ca2d1f3b8e885164c5f1a6b3db0cdffa1c2 (patch)
tree55221d135c5da082be8dc163650b0b45fe8a56ed /doc/api/crypto.md
parentccdd1bd82acf8d2c92ae08dcfad327f5adb030ac (diff)
2020-09-08, Version 14.10.0 (Current)
Notable changes: - buffer: also alias BigUInt methods (Anna Henningsen) https://github.com/nodejs/node/pull/34960 - crypto: add randomInt function (Oli Lalonde) https://github.com/nodejs/node/pull/34600 - perf_hooks: add idleTime and event loop util (Trevor Norris) https://github.com/nodejs/node/pull/34938 - stream: simpler and faster Readable async iterator (Robert Nagy) https://github.com/nodejs/node/pull/34035 - stream: save error in state (Robert Nagy) https://github.com/nodejs/node/pull/34103 PR-URL: https://github.com/nodejs/node/pull/35023 Conflicts: src/node_version.h
Diffstat (limited to 'doc/api/crypto.md')
-rw-r--r--doc/api/crypto.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/crypto.md b/doc/api/crypto.md
index f85e922a97c..a0e34ee7f03 100644
--- a/doc/api/crypto.md
+++ b/doc/api/crypto.md
@@ -2803,7 +2803,7 @@ request.
### `crypto.randomInt([min, ]max[, callback])`
<!-- YAML
-added: REPLACEME
+added: v14.10.0
-->
* `min` {integer} Start of random range (inclusive). **Default**: `0`.