summaryrefslogtreecommitdiff
path: root/std/uuid/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'std/uuid/README.md')
-rw-r--r--std/uuid/README.md15
1 files changed, 15 insertions, 0 deletions
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);
+```