diff options
Diffstat (limited to 'std/uuid/v1.ts')
-rw-r--r-- | std/uuid/v1.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/uuid/v1.ts b/std/uuid/v1.ts index 4adb0d6f9..3c62332e4 100644 --- a/std/uuid/v1.ts +++ b/std/uuid/v1.ts @@ -48,7 +48,7 @@ export function generate( let clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; if (node == null || clockseq == null) { - // eslint-disable-next-line @typescript-eslint/no-explicit-any + // deno-lint-ignore no-explicit-any const seedBytes: any = options.random || options.rng || crypto.getRandomValues(new Uint8Array(16)); |