From 151ce0266eb4de2c8fc600c81c192a5f791b6169 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 9 Oct 2019 17:10:09 -0400 Subject: Move everything into std subdir --- std/uuid/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 std/uuid/README.md (limited to 'std/uuid/README.md') diff --git a/std/uuid/README.md b/std/uuid/README.md new file mode 100644 index 000000000..513a6ed53 --- /dev/null +++ b/std/uuid/README.md @@ -0,0 +1,15 @@ +# UUID + +Support for version 1, 3, 4, and 5 UUIDs. + +## Usage + +```ts +import uuid, { validate } from "https://deno.land/std/uuid/mod.ts"; + +// Generate a v4 uuid +const myUUID = uuid(); + +// Validate a v4 uuid +const isValid = validate(aString); +``` -- cgit v1.2.3