mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
8 lines
190 B
Plaintext
8 lines
190 B
Plaintext
import javascript
|
|
|
|
query predicate test_RequestInputAccess(
|
|
HTTP::RequestInputAccess ria, string res, NodeJSLib::RouteHandler rh
|
|
) {
|
|
ria.getRouteHandler() = rh and res = ria.getKind()
|
|
}
|