Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/pup/deps.ts>uuid.v3.validate

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

Validate that the passed UUID is an RFC4122 v3 UUID.

Examples

Example 1

import { generate, validate } from "https://deno.land/std@0.224.0/uuid/v3.ts";

validate(await generate("6ba7b811-9dad-11d1-80b4-00c04fd430c8", new Uint8Array())); // true
validate(crypto.randomUUID()); // false
validate("this-is-not-a-uuid"); // false

Parameters

id: string

Returns

boolean