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

x/deno_es/deps.ts>v4.validate

deno elasticsearch
Go to Latest
function v4.validate
import { v4 } from "https://deno.land/x/deno_es@v0.4.3/deps.ts";
const { validate } = v4;

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