Skip to content

Commit befc825

Browse files
committed
👍 Use human readable SHA256 on helper.load
1 parent 758cc3c commit befc825

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

denops_std/helper/load.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function getLocalFilename(url: URL): string {
5959
const h = hash.createHash("sha256");
6060
h.update(url.href);
6161
const basename = path.basename(url.pathname);
62-
return `${h.digest()}-${basename}`;
62+
return `${h.toString()}-${basename}`;
6363
}
6464

6565
async function getOrCreateCacheDir(): Promise<string> {

0 commit comments

Comments
 (0)