diff options
| author | netop://ウィビ <paul@webb.page> | 2026-04-26 20:18:30 -0700 |
|---|---|---|
| committer | netop://ウィビ <paul@webb.page> | 2026-04-26 20:18:30 -0700 |
| commit | 3c06c95f396b6e911076bc3291d5855ed01b5caa (patch) | |
| tree | 17cd218339c52fbeee93d931303b04a3ff294f8b /source/library/fetcher/apq.ts | |
| parent | f059d97ab7f6d74d61139ac698cb871be7cb632e (diff) | |
| download | graphiql-3c06c95f396b6e911076bc3291d5855ed01b5caa.tar.gz graphiql-3c06c95f396b6e911076bc3291d5855ed01b5caa.zip | |
cleanup and ready for launch
Diffstat (limited to 'source/library/fetcher/apq.ts')
| -rw-r--r-- | source/library/fetcher/apq.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/library/fetcher/apq.ts b/source/library/fetcher/apq.ts index 7f9f3c1..854017b 100644 --- a/source/library/fetcher/apq.ts +++ b/source/library/fetcher/apq.ts @@ -54,7 +54,7 @@ export function createApqFetcher(options: ApqOptions): Fetcher { }; } -/*** INTERNAL ----------------------------------------- ***/ +/*** HELPER ------------------------------------------- ***/ async function getHash(cache: Map<string, string>, query: string): Promise<string> { const cached = cache.get(query); @@ -64,6 +64,7 @@ async function getHash(cache: Map<string, string>, query: string): Promise<strin const hash = await sha256Hex(query); cache.set(query, hash); + return hash; } |