Skip to content

Commit 27e8ea8

Browse files
committed
JS: Fix bug from sorting lines
1 parent 86885f4 commit 27e8ea8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,9 +390,9 @@ module LodashUnderscore {
390390
name = "partition" or
391391
name = "reduce" or
392392
name = "reduceRight" or
393-
name = "replace"
393+
name = "replace" or
394394
name = "some" or
395-
name = "transform" or
395+
name = "transform"
396396
)
397397
}
398398

0 commit comments

Comments
 (0)