380 B
380 B
// WASM exposes only async extractBytes; await it from any async context.
import init, { extractBytes } from "kreuzberg-wasm";
await init();
const response = await fetch("document.pdf");
const data = new Uint8Array(await response.arrayBuffer());
const result = await extractBytes(data, "application/pdf", undefined);
console.log(result.content);