Merge pull request #3054 from ApamNapat/simplified_redundant_regex

Removed redundant repetitions of | in alias regex
This commit is contained in:
hydroflame 2022-03-10 22:11:35 -05:00 committed by GitHub
commit f802b95b30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -36,7 +36,7 @@ export function printAliases(): void {
// Returns true if successful, false otherwise
export function parseAliasDeclaration(dec: string, global = false): boolean {
const re = /^([\w|!|%|,|@|-]+)=(("(.+)")|('(.+)'))$/;
const re = /^([\w|!%,@-]+)=(("(.+)")|('(.+)'))$/;
const matches = dec.match(re);
if (matches == null || matches.length != 7) {
return false;