add docs for .headersSent alias
This commit is contained in:
parent
836679c610
commit
770183771e
1 changed files with 7 additions and 0 deletions
|
@ -636,6 +636,13 @@ Context.prototype = {
|
|||
return this.res.headersSent;
|
||||
},
|
||||
|
||||
/**
|
||||
* Alias of `.headerSent`
|
||||
*
|
||||
* @return {Boolean}
|
||||
* @api public
|
||||
*/
|
||||
|
||||
get headersSent() {
|
||||
return this.res.headersSent;
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue