rq-library-wasm
v1.0.2
Published
WASM build of rq-library for the browser
Readme
rq-library-wasm
This package provides a WebAssembly build of the rq-library for use in the browser.
Installation
npm install rq-library-wasmUsage
import init, { some_function } from 'rq-library-wasm';
async function run() {
await init();
some_function();
}
run();