function assertNotMatchimport { assertNotMatch } from "https://dotland.deno.dev/std@0.223.0/assert/assert_not_match.ts"; assertNotMatch(actual: string,expected: RegExp,msg?: string,)Make an assertion that actual not match RegExp expected. If match then throw. ExamplesExample 1 import { assertNotMatch } from "https://deno.land/std@0.223.0/assert/assert_not_match.ts"; assertNotMatch("Denosaurus", RegExp(/Raptor/)); // Doesn't throw assertNotMatch("Raptor", RegExp(/Raptor/)); // Throws Parametersactual: stringexpected: RegExpoptionalmsg: string