The source may be
a string or URL, to fetch the binary code from a remote location and compile it using WebAssembly.instantiateStreaming;
an HTTP Response (or a promise resolving to one), to stream the binary code from the response body and compile it using WebAssembly.instantiateStreaming;
the binary code itself as an ArrayBuffer, Uint8Array, or Node.js Buffer (or a promise resolving to one of these), to compile it using WebAssembly.instantiate;
a precompiled WebAssembly.Module (or a promise resolving to one); or
a function that instantiates a WebAssembly module.
Source of the embedded policy decision point server's WebAssembly module (imported from
@cerbos/embedded-server/server.wasm). The most appropriate source to use will depend on the target runtime of your application.