1 | ;
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | function xXssProtection() {
|
4 | return function xXssProtectionMiddleware(_req, res, next) {
|
5 | res.setHeader("X-XSS-Protection", "0");
|
6 | next();
|
7 | };
|
8 | }
|
9 | module.exports = xXssProtection;
|
10 | exports.default = xXssProtection;
|