This commit is contained in:
2026-02-14 13:56:37 +08:00
parent ee4455d82f
commit 25f35f7b53
2 changed files with 126 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
import {fetchDataWithTimeout} from "https://script.hatter.ink/@49/deno-commons-mod.ts";
// JQ WASM URL:
// https://cdn.hatter.ink/doc/8998_BE8D1CBE6106C77968183F226E2129B5/jq.wasm
async function getCachedWasm(wasmUrl: string): Promise<string> {
const wasmResponse = await fetchDataWithTimeout(wasmUrl);
return null;
}