Skip to main content
Module

x/lume/deps/assert.ts>assertNotMatch

🔥 Static site generator for Deno 🦕
Very Popular
Go to Latest
function assertNotMatch
import { assertNotMatch } from "https://deno.land/x/lume@v2.1.2/deps/assert.ts";

Make an assertion that actual not match RegExp expected. If match then throw.

Examples

Example 1

import { assertNotMatch } from "https://deno.land/std@0.224.0/assert/assert_not_match.ts";

assertNotMatch("Denosaurus", RegExp(/Raptor/)); // Doesn't throw
assertNotMatch("Raptor", RegExp(/Raptor/)); // Throws

Parameters

actual: string
expected: RegExp
optional
msg: string