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:
authorLuigi Pinca <luigipinca@gmail.com>2022-04-15 01:09:04 +0300
committerMichaƫl Zasso <targos@protonmail.com>2022-04-28 07:56:09 +0300
commitef5ab8179b8488fa8115fa401553d22c6e51bcf7 (patch)
treeeb2a1dfe778c636217ebbbe3b6272894904023a0 /doc/api/http.md
parent18ae2c39d53bebf55349ca5cf8317633c64ccf79 (diff)
doc: fix `added:` info for `outgoingMessage.{,un}cork()`
`outgoingMessage.cork()` and `outgoingMessage.uncork()` were added to Node.js v13.2.0 via 62e15a793a56 and backported to Node.js v12.16.0 via db8144be3187. PR-URL: https://github.com/nodejs/node/pull/42711 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc/api/http.md')
-rw-r--r--doc/api/http.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/api/http.md b/doc/api/http.md
index 811071cc33d..7307bee93ad 100644
--- a/doc/api/http.md
+++ b/doc/api/http.md
@@ -2507,7 +2507,9 @@ Aliases of `outgoingMessage.socket`
### `outgoingMessage.cork()`
<!-- YAML
-added: v14.0.0
+added:
+ - v13.2.0
+ - v12.16.0
-->
See [`writable.cork()`][].
@@ -2713,7 +2715,9 @@ After calling `outgoingMessage.end()`, this property will be nulled.
### `outgoingMessage.uncork()`
<!-- YAML
-added: v14.0.0
+added:
+ - v13.2.0
+ - v12.16.0
-->
See [`writable.uncork()`][]