import { type Tail } from "https://deno.land/x/rimbu@0.13.5/typical/str.ts";
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
import { type Tail } from "https://deno.land/x/rimbu@0.13.5/typical/str.ts";
Returns all but the first character of the given string, or false if the string is empty.
Example 1
Tail<'abcd'> => 'bcd'
Tail<''> => false