import { isEmpty } from "https://deno.land/x/fun@v.2.0.0-alpha.11/string.ts";
A Predicate for string returning true if the string is empty.
Examples
Example 1
Example 1
import { isEmpty } from "./string.ts";
const result1 = isEmpty("Hello"); // false
const result2 = isEmpty(""); // true