import { assertNotMatch } from "https://deno.land/std@0.222.0/assert/assert_not_match.ts";
Make an assertion that actual
not match RegExp expected
. If match
then throw.
Examples
Example 1
Example 1
import { assertNotMatch } from "https://deno.land/std@0.222.0/assert/assert_not_match.ts";
assertNotMatch("Denosaurus", RegExp(/Raptor/)); // Doesn't throw
assertNotMatch("Raptor", RegExp(/Raptor/)); // Throws