I have few regular expression used for form validation and I noticed that my project is not accessible through firefox as it shows nothing! but give the error in the console, SyntaxError: invalid regexp group
nicRegex is checking for National Identity Card in my country. Format should be 937962723V or 937962723X or any 11 digit number according to the current format. 
phoneRegex is to check phone numbers with my country code. 94121212121 or 0762323232 
const nicRegex = /^(?:19|20)?\d{2}(?:[01235678]\d\d(?<!(?:000|500|36[7-9]|3[7-9]\d|86[7-9]|8[7-9]\d)))\d{4}(?:[vVxX])$/;
 
     
     
    
