Skip to content

Commit 45a5d0e

Browse files
committed
JS: autoformat
1 parent 6816f33 commit 45a5d0e

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

javascript/ql/src/semmle/javascript/frameworks/LodashUnderscore.qll

+8-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,14 @@ module LodashUnderscore {
2121
string name;
2222

2323
DefaultMember() {
24-
this = DataFlow::moduleMember("underscore", name) or
25-
this = DataFlow::moduleMember("lodash", name) or
26-
this = DataFlow::moduleImport("lodash/" + name) or
27-
this = DataFlow::moduleImport("lodash." + name.toLowerCase()) and isLodashMember(name) or
24+
this = DataFlow::moduleMember("underscore", name)
25+
or
26+
this = DataFlow::moduleMember("lodash", name)
27+
or
28+
this = DataFlow::moduleImport("lodash/" + name)
29+
or
30+
this = DataFlow::moduleImport("lodash." + name.toLowerCase()) and isLodashMember(name)
31+
or
2832
this = DataFlow::globalVarRef("_").getAPropertyRead(name)
2933
}
3034

0 commit comments

Comments
 (0)