diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-07-14 15:24:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 15:24:17 -0400 |
commit | cde4dbb35132848ffece59ef9cfaccff32347124 (patch) | |
tree | cc7830968c6decde704c8cfb83c9185193dc698f /std/uuid/v4.ts | |
parent | 9eca71caa1674c31f9cc5d4e86c03f10b59e0a00 (diff) |
Use dprint for internal formatting (#6682)
Diffstat (limited to 'std/uuid/v4.ts')
-rw-r--r-- | std/uuid/v4.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/uuid/v4.ts b/std/uuid/v4.ts index 83fc6d86e..53fbc92e3 100644 --- a/std/uuid/v4.ts +++ b/std/uuid/v4.ts @@ -4,7 +4,7 @@ import { bytesToUuid } from "./_common.ts"; const UUID_RE = new RegExp( "^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$", - "i" + "i", ); export function validate(id: string): boolean { |