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
path: root/doc/api
diff options
context:
space:
mode:
authorRichard Lau <riclau@uk.ibm.com>2020-03-31 13:51:47 +0300
committerBeth Griggs <Bethany.Griggs@uk.ibm.com>2020-04-07 18:28:21 +0300
commit8bfbb5e3b4eaf12358287e25cfeaabab60254d32 (patch)
treec4682159ffaa8204e9bc7fcbc13becaf46db7b47 /doc/api
parentebb55720d5fba368157caa0eedbd66796bb34704 (diff)
doc: fix return type of `crypto.getFips()`
`crypto.getFips()` returns a number, not a boolean. PR-URL: https://github.com/nodejs/node/pull/32580 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Signed-off-by: Richard Lau <riclau@uk.ibm.com>
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/crypto.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/crypto.md b/doc/api/crypto.md
index e5a271ad6d7..351f32c11f6 100644
--- a/doc/api/crypto.md
+++ b/doc/api/crypto.md
@@ -2308,8 +2308,8 @@ console.log(aliceSecret === bobSecret);
added: v10.0.0
-->
-* Returns: {boolean} `true` if and only if a FIPS compliant crypto provider is
- currently in use.
+* Returns: {number} `1` if and only if a FIPS compliant crypto provider is
+ currently in use, `0` otherwise.
### `crypto.getHashes()`
<!-- YAML