Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/s3si/deps.ts>uuid.v1.validate

Export your battles from SplatNet to https://stat.ink
Latest
function uuid.v1.validate
import { uuid } from "https://deno.land/x/s3si@gui-v0.4.20/deps.ts";
const { validate } = uuid.v1;

Validates the UUID v1.

Examples

Example 1

import { validate } from "https://deno.land/std@0.224.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