import { type Str } from "https://deno.land/x/rimbu@1.1.0/typical/index.ts";
const { First } = Str;
Returns the first character of the given string, or false if the string is empty.
Examples
Example 1
Example 1
First<'abc'> => 'a'
First<''> => false