mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
10 lines
238 B
Plaintext
10 lines
238 B
Plaintext
import javascript
|
|
|
|
query predicate test_RequestExpr(Express::RequestExpr e, HTTP::RouteHandler res) {
|
|
res = e.getRouteHandler()
|
|
}
|
|
|
|
query predicate test_RequestExprStandalone(Express::RequestExpr e) {
|
|
not exists(e.getRouteHandler())
|
|
}
|