mirror of
https://codeberg.org/tacerus/teddit.git
synced 2025-01-10 21:32:35 +01:00
11 lines
309 B
JavaScript
11 lines
309 B
JavaScript
|
"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;
|