Skip to main content
Module

std/uuid/v4.ts>validate

Deno standard library
Go to Latest
function validate
import { validate } from "https://deno.land/std@0.139.0/uuid/v4.ts";

Validate that the passed UUID is an RFC4122 v4 UUID.

import { validate } from "./v4.ts";
import { generate as generateV1 } from "./v1.ts";

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

Parameters

id: string

Returns

boolean