mirror of
https://github.com/github/codeql.git
synced 2026-04-28 18:25:24 +02:00
JS: autoformat
This commit is contained in:
@@ -21,10 +21,14 @@ module LodashUnderscore {
|
||||
string name;
|
||||
|
||||
DefaultMember() {
|
||||
this = DataFlow::moduleMember("underscore", name) or
|
||||
this = DataFlow::moduleMember("lodash", name) or
|
||||
this = DataFlow::moduleImport("lodash/" + name) or
|
||||
this = DataFlow::moduleImport("lodash." + name.toLowerCase()) and isLodashMember(name) or
|
||||
this = DataFlow::moduleMember("underscore", name)
|
||||
or
|
||||
this = DataFlow::moduleMember("lodash", name)
|
||||
or
|
||||
this = DataFlow::moduleImport("lodash/" + name)
|
||||
or
|
||||
this = DataFlow::moduleImport("lodash." + name.toLowerCase()) and isLodashMember(name)
|
||||
or
|
||||
this = DataFlow::globalVarRef("_").getAPropertyRead(name)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user