Files
PeerTube/server/middlewares/dnt.ts
2018-08-08 09:22:15 +02:00

14 lines
275 B
TypeScript

import * as ipaddr from 'ipaddr.js'
import { format } from 'util'
const advertiseDoNotTrack = (_, res, next) => {
res.setHeader('Tk', 'N')
return next()
}
// ---------------------------------------------------------------------------
export {
advertiseDoNotTrack
}