Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Latest
function v4.validate
import { v4 } from "https://deno.land/x/dmm@v2.1.2/tests/integration/up-to-date-deps/original_deps.ts";
const { validate } = v4;

Validate that the passed UUID is an RFC4122 v4 UUID.

Examples

Example 1

import { validate } from "https://deno.land/std@0.224.0/uuid/v4.ts";
import { generate as generateV1 } from "https://deno.land/std@0.224.0/uuid/v1.ts";

validate(crypto.randomUUID()); // true
validate(generateV1() as string); // false
validate("this-is-not-a-uuid"); // false

Parameters

id: string

Returns

boolean