import { type Str } from "https://deno.land/x/rimbu@0.13.5/typical/mod.ts";
const { DropStrict } = Str;
Returns the given string without the first N characters, or false if the string has less characters.
Examples
Example 1
Example 1
DropStrict<'abcd', 2> => 'cd'
DropStrict<'abcd', 5> => false