JS: Add a query ID

This commit is contained in:
Asger F
2025-02-21 14:30:32 +01:00
parent a0f8e28790
commit cded75766f

View File

@@ -234,7 +234,7 @@ var good33 = /(a+)*([^]*|X)$/;
var bad64 = /((a+)*$|[^]+)/; // $ Alert[js/redos]
var good34 = /([^]+|(a+)*$)/; // $ SPURIOUS: Alert - The only change compared to the above is the order of alternatives, which we don't model.
var good34 = /([^]+|(a+)*$)/; // $ SPURIOUS: Alert[js/redos] - The only change compared to the above is the order of alternatives, which we don't model.
var good35 = /((;|^)a+)+$/;