mirror of
https://github.com/github/codeql.git
synced 2026-01-04 18:20:18 +01:00
6 lines
89 B
JavaScript
6 lines
89 B
JavaScript
var regexp = /a*b/;
|
|
|
|
module.exports = function (name) {
|
|
regexp.test(name); // NOT OK
|
|
};
|