10 lines
328 B
TypeScript
10 lines
328 B
TypeScript
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;
|
|
}
|