import { uuid } from "https://deno.land/x/s3si@v0.1.8/deps.ts";
const { isNil } = uuid;
Check if the passed UUID is the nil UUID.
import { isNil } from "https://deno.land/std@0.224.0/uuid/mod.ts";
isNil("00000000-0000-0000-0000-000000000000") // true
isNil(crypto.randomUUID()) // false