is there a / (?! xxx) ooo/ method that can be used in operation?
the results of the following concepts are equivalent to false
console.log(/(?![])/.test(""));
console.log(/(?=[^])/.test(""));
but does not include using the following method
console.log(/(?:[^])/.test(""));