We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cloudflare-mcp-apps/ads-roi'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
browser-async.js•484 B
import { provideWasm } from './esm/browser/wasm.js';
import * as wasm from './dist/wasm/web/blake3_js.js';
import * as blake3 from './esm/browser/index.js';
let cached;
/**
* Manually loads the WebAssembly module, returning a promise that resolves
* to the BLAKE3 implementation once available.
*/
export default function load(module) {
if (!cached) {
cached = wasm.default(module).then(() => {
provideWasm(wasm);
return blake3;
});
}
return cached;
}