res.headersSent
Boolean property that indicates if the app sent HTTP headers for the response.
1 2 3 4 5 | app.get( '/' , function (req, res) { console.log(res.headersSent); // false res.send( 'OK' ); console.log(res.headersSent); // true }); |
Please login to continue.