diff --git a/doc/api/http.md b/doc/api/http.md index 442cfc22ded97c..1c6b5717e0049c 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -575,6 +575,17 @@ If `data` is specified, it is equivalent to calling If `callback` is specified, it will be called when the request stream is finished. +### request.finished + + +* {boolean} + +The `request.finished` property will be `true` if [`request.end()`][] +has been called. `request.end()` will automatically be called if the +request was initiated via [`http.get()`][]. + ### request.flushHeaders()