Skip to main content
Module

std/uuid/v1.ts>validate

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

Validates the UUID v1.

Examples

Example 1

import { validate } from "https://deno.land/std@0.221.0/uuid/v1.ts";

validate("ea71fc60-a713-11ee-af61-8349da24f689");  // true
validate("fac8c1e0-ad1a-4204-a0d0-8126ae84495d");  // false

Parameters

id: string

UUID value.

Returns

boolean