diff --git a/doc/api/http.md b/doc/api/http.md index 8a42a3e82d313e..bbddbb295d5a66 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -569,6 +569,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()