mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
14 lines
275 B
TypeScript
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
|
|
}
|