Use this module if you want to use simd-prng in a browser using Vite as your bundler.
simd-prng
import { init } from "simd-prng/vite";const { createPrng } = await init();const prng = createPrng();console.log(prng.randomInt()); Copy
import { init } from "simd-prng/vite";const { createPrng } = await init();const prng = createPrng();console.log(prng.randomInt());
Use this module if you want to use
simd-prngin a browser using Vite as your bundler.Example