mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
29 lines
209 B
JavaScript
29 lines
209 B
JavaScript
/\[^(.css$)]/; // $ Alert
|
|
|
|
|
|
/(a|^b)c/;
|
|
|
|
|
|
/a*(^b|c)/;
|
|
|
|
/a\n^b/; // $ Alert
|
|
|
|
|
|
/a\n^b/m;
|
|
|
|
/a\\n^b/m; // $ MISSING: Alert
|
|
|
|
/ab*^c/; // $ Alert
|
|
|
|
|
|
/^^abc/;
|
|
|
|
|
|
/^(^y|^z)(u$|v$)$/;
|
|
|
|
|
|
/x*^y/;
|
|
|
|
|
|
/(?<=(^|\/)(\.|\.\.))$/;
|