import { type Str } from "https://deno.land/x/rimbu@0.13.5/typical/index.ts";
const { NotContains } = Str;
Returns true if the given string does not contain the given Amount (default 1) of Sub types.
Examples
Example 1
Example 1
NotContains<'abcba', 'b'> => false
NotContains<'abcba', 'b', 2> => false
NotContains<'abcba', 'b', 3> => true
NotContains<'abcba', 'q'> => true