mirror of
https://github.com/github/codeql.git
synced 2025-12-19 02:13:17 +01:00
7 lines
114 B
JavaScript
7 lines
114 B
JavaScript
export default function first(req, res, next) {
|
|
req.tainted = source();
|
|
req.safe = 'safe';
|
|
next();
|
|
}
|
|
|