Skip to main content
Module

std/uuid/mod.ts>validate

The Deno Standard Library
Latest
function validate
import { validate } from "https://deno.land/std@0.223.0/uuid/mod.ts";

Test a string to see if it is a valid UUID.

Examples

Example 1

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

validate("not a UUID"); // false
validate("6ec0bd7f-11c0-43da-975e-2a8ad9ebae0b"); // true

Parameters

uuid: string

Returns

boolean