import { type Str } from "https://deno.land/x/rimbu@0.13.5/typical/mod.ts";
const { IsNonEmptyString } = Str;
Returns false if the given string is empty, true otherwise.
Examples
Example 1
Example 1
IsNonEmptyString<''> => false
IsNonEmptyString<'abc'> => true
definition: "" extends S ? false : true