import { isNil } from "https://deno.land/std@0.219.1/uuid/mod.ts";
Check if the passed UUID is the nil UUID.
Examples
Example 1
Example 1
import { isNil } from "https://deno.land/std@0.219.1/uuid/mod.ts";
isNil("00000000-0000-0000-0000-000000000000"); // true
isNil(crypto.randomUUID()); // false