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