This commit is contained in:
Dan Vega 2020-05-30 00:58:12 -04:00 committed by GitHub
parent d4b05dd89e
commit 24e545d5bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,5 +11,5 @@ import { v4 } from "https://deno.land/std/uuid/mod.ts";
const myUUID = v4.generate();
// Validate a v4 uuid
const isValid = v4.validate(aString);
const isValid = v4.validate(myUUID);
```