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:
authorJavier Ledezma <juls0593@gmail.com>2019-09-16 19:02:23 +0300
committerRuben Bridgewater <ruben@bridgewater.de>2019-09-25 19:20:58 +0300
commit38028ef818874622d6134e9a572c9e5abc805282 (patch)
treef0813671da23c7c30834d45ba7ee2e8fa004b5e3 /doc/api
parent7eae707fd9a187627b09b36487d8e27262a6edad (diff)
doc: add missing complete property to http2 docs
PR-URL: https://github.com/nodejs/node/pull/29571 Fixes: https://github.com/nodejs/node/issues/28622 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/http2.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/api/http2.md b/doc/api/http2.md
index 8ddf3b989df..e07d773affd 100644
--- a/doc/api/http2.md
+++ b/doc/api/http2.md
@@ -2708,6 +2708,16 @@ added: v8.4.0
The request authority pseudo header field. It can also be accessed via
`req.headers[':authority']`.
+#### request.complete
+<!-- YAML
+added: v12.10.0
+-->
+
+* {boolean}
+
+The `request.complete` property will be `true` if the request has
+been completed, aborted, or destroyed.
+
#### request.destroy([error])
<!-- YAML
added: v8.4.0