mirror of
https://github.com/github/codeql.git
synced 2026-05-02 12:15:17 +02: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();
|
|
}
|
|
|