mirror of
https://github.com/github/codeql.git
synced 2026-01-30 23:02:56 +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();
|
|
}
|
|
|