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