import { type DropStrict } from "https://deno.land/x/rimbu@1.1.0/typical/str.ts";
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