Skip to content

Commit

Permalink
ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
uriva committed Mar 21, 2024
1 parent 42f8116 commit 20f2173
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/io.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export const retry = <F extends AsyncFunction>(
) => conditionalRetry(() => true)(waitMs, times, f);

export const hash = <T>(x: T, maxLength: number) =>
// @ts-expect-error not sure why
// @ts-ignore-error not sure why, but this triggers an error in deno but no in node
crypto.createHash("MD5").update(stableHash(x)).digest("hex").substring(
0,
maxLength,
Expand Down

0 comments on commit 20f2173

Please sign in to comment.