import { type Str } from "https://deno.land/x/rimbu@0.13.5/typical/mod.ts";
const { Tail } = Str;
Returns all but the first character of the given string, or false if the string is empty.
Examples
Example 1
Example 1
Tail<'abcd'> => 'bcd'
Tail<''> => false