]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - dnt.ts
a128aadf7879b8640bfde6b410417edcf28195e0
[github/Chocobozzz/PeerTube.git] / dnt.ts
1 import * as express from 'express'
2
3 const advertiseDoNotTrack = (_, res: express.Response, next: express.NextFunction) => {
4 if (!res.headersSent) {
5 res.setHeader('Tk', 'N')
6 }
7
8 return next()
9 }
10
11 // ---------------------------------------------------------------------------
12
13 export {
14 advertiseDoNotTrack
15 }