mirror of
https://github.com/github/codeql.git
synced 2026-03-05 07:06:47 +01:00
6 lines
195 B
Plaintext
6 lines
195 B
Plaintext
import semmle.javascript.ES2015Modules
|
|
|
|
query predicate test_Imports(ImportDeclaration id, PathExprInModule res0, int res1) {
|
|
res0 = id.getImportedPath() and res1 = count(id.getASpecifier())
|
|
}
|