mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
9 lines
209 B
Plaintext
9 lines
209 B
Plaintext
import javascript
|
|
|
|
query predicate test_query1(string res0, int res1) {
|
|
exists(Folder d |
|
|
res0 = d.getRelativePath() and
|
|
res1 = count(File f | f = d.getAFile() and f.getExtension() = "js" | f)
|
|
)
|
|
}
|