Skip to main content
Module

std/uuid/mod.ts>isNil

Deno standard library
Go to Latest
function isNil
import { isNil } from "https://deno.land/std@0.158.0/uuid/mod.ts";

Check if the passed UUID is the nil UUID.

import { isNil } from "./mod.ts";

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

Parameters

id: string

Returns

boolean