Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/pup/deps.ts>uuid.isNil

Universal process manager built in Deno
Go to Latest
function uuid.isNil
import { uuid } from "https://deno.land/x/pup@1.0.0-rc.14/deps.ts";
const { isNil } = uuid;

Check if the passed UUID is the nil UUID.

Examples

Example 1

import { isNil } from "https://deno.land/std@0.224.0/uuid/mod.ts";

isNil("00000000-0000-0000-0000-000000000000"); // true
isNil(crypto.randomUUID()); // false

Parameters

id: string

Returns

boolean