7 lines
166 B
JavaScript
7 lines
166 B
JavaScript
/**
|
|
* @ruvector/rvf-wasm ESM entry point.
|
|
* Re-exports the init function from the CJS-compatible module.
|
|
*/
|
|
import init from './rvf_wasm.js';
|
|
export default init;
|