index.js 284 Bytes
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
2
3
4
5
6
7
8
9
10
"use strict"
Object.defineProperty(exports, "__esModule", { value: true })
function xXssProtection() {
	return function xXssProtectionMiddleware(_req, res, next) {
		res.setHeader("X-XSS-Protection", "0")
		next()
	}
}
module.exports = xXssProtection
exports.default = xXssProtection