2025-06-25 21:46:00 +00:00
let wasm ;
let WASM _VECTOR _LEN = 0 ;
let cachedUint8ArrayMemory0 = null ;
function getUint8ArrayMemory0 ( ) {
if ( cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0 . byteLength === 0 ) {
cachedUint8ArrayMemory0 = new Uint8Array ( wasm . memory . buffer ) ;
}
return cachedUint8ArrayMemory0 ;
}
2025-06-26 02:56:39 +00:00
const cachedTextEncoder = ( typeof TextEncoder !== 'undefined' ? new TextEncoder ( 'utf-8' ) : { encode : ( ) => { throw Error ( 'TextEncoder not available' ) } } ) ;
2025-06-25 21:46:00 +00:00
const encodeString = ( typeof cachedTextEncoder . encodeInto === 'function'
? function ( arg , view ) {
return cachedTextEncoder . encodeInto ( arg , view ) ;
}
: function ( arg , view ) {
const buf = cachedTextEncoder . encode ( arg ) ;
view . set ( buf ) ;
return {
read : arg . length ,
written : buf . length
} ;
} ) ;
function passStringToWasm0 ( arg , malloc , realloc ) {
if ( realloc === undefined ) {
const buf = cachedTextEncoder . encode ( arg ) ;
const ptr = malloc ( buf . length , 1 ) >>> 0 ;
getUint8ArrayMemory0 ( ) . subarray ( ptr , ptr + buf . length ) . set ( buf ) ;
WASM _VECTOR _LEN = buf . length ;
return ptr ;
}
let len = arg . length ;
let ptr = malloc ( len , 1 ) >>> 0 ;
const mem = getUint8ArrayMemory0 ( ) ;
let offset = 0 ;
for ( ; offset < len ; offset ++ ) {
const code = arg . charCodeAt ( offset ) ;
if ( code > 0x7F ) break ;
mem [ ptr + offset ] = code ;
}
if ( offset !== len ) {
if ( offset !== 0 ) {
arg = arg . slice ( offset ) ;
}
ptr = realloc ( ptr , len , len = offset + arg . length * 3 , 1 ) >>> 0 ;
const view = getUint8ArrayMemory0 ( ) . subarray ( ptr + offset , ptr + len ) ;
const ret = encodeString ( arg , view ) ;
offset += ret . written ;
ptr = realloc ( ptr , len , offset , 1 ) >>> 0 ;
}
WASM _VECTOR _LEN = offset ;
return ptr ;
}
2025-06-26 02:56:39 +00:00
const cachedTextDecoder = ( typeof TextDecoder !== 'undefined' ? new TextDecoder ( 'utf-8' , { ignoreBOM : true , fatal : true } ) : { decode : ( ) => { throw Error ( 'TextDecoder not available' ) } } ) ;
2025-06-25 21:46:00 +00:00
2025-06-26 02:56:39 +00:00
if ( typeof TextDecoder !== 'undefined' ) { cachedTextDecoder . decode ( ) ; } ;
2025-06-25 21:46:00 +00:00
function getStringFromWasm0 ( ptr , len ) {
ptr = ptr >>> 0 ;
return cachedTextDecoder . decode ( getUint8ArrayMemory0 ( ) . subarray ( ptr , ptr + len ) ) ;
}
/ * *
* @ param { string } src
* @ returns { string }
* /
2025-06-26 02:56:39 +00:00
export function ludus ( src ) {
2025-06-25 21:46:00 +00:00
let deferred2 _0 ;
let deferred2 _1 ;
try {
const ptr0 = passStringToWasm0 ( src , wasm . _ _wbindgen _malloc , wasm . _ _wbindgen _realloc ) ;
const len0 = WASM _VECTOR _LEN ;
2025-06-26 02:56:39 +00:00
const ret = wasm . ludus ( ptr0 , len0 ) ;
2025-06-25 21:46:00 +00:00
deferred2 _0 = ret [ 0 ] ;
deferred2 _1 = ret [ 1 ] ;
return getStringFromWasm0 ( ret [ 0 ] , ret [ 1 ] ) ;
} finally {
wasm . _ _wbindgen _free ( deferred2 _0 , deferred2 _1 , 1 ) ;
}
2025-06-26 02:56:39 +00:00
}
async function _ _wbg _load ( module , imports ) {
if ( typeof Response === 'function' && module instanceof Response ) {
if ( typeof WebAssembly . instantiateStreaming === 'function' ) {
try {
return await WebAssembly . instantiateStreaming ( module , imports ) ;
} catch ( e ) {
if ( module . headers . get ( 'Content-Type' ) != 'application/wasm' ) {
console . warn ( "`WebAssembly.instantiateStreaming` failed because your server does not serve Wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n" , e ) ;
} else {
throw e ;
}
}
}
2025-06-25 21:46:00 +00:00
2025-06-26 02:56:39 +00:00
const bytes = await module . arrayBuffer ( ) ;
return await WebAssembly . instantiate ( bytes , imports ) ;
} else {
const instance = await WebAssembly . instantiate ( module , imports ) ;
if ( instance instanceof WebAssembly . Instance ) {
return { instance , module } ;
} else {
return instance ;
}
}
}
function _ _wbg _get _imports ( ) {
const imports = { } ;
imports . wbg = { } ;
imports . wbg . _ _wbindgen _init _externref _table = function ( ) {
const table = wasm . _ _wbindgen _export _0 ;
const offset = table . grow ( 4 ) ;
table . set ( 0 , undefined ) ;
table . set ( offset + 0 , undefined ) ;
table . set ( offset + 1 , null ) ;
table . set ( offset + 2 , true ) ;
table . set ( offset + 3 , false ) ;
;
} ;
return imports ;
}
function _ _wbg _init _memory ( imports , memory ) {
}
function _ _wbg _finalize _init ( instance , module ) {
wasm = instance . exports ;
_ _wbg _init . _ _wbindgen _wasm _module = module ;
cachedUint8ArrayMemory0 = null ;
wasm . _ _wbindgen _start ( ) ;
return wasm ;
}
2025-06-25 21:46:00 +00:00
2025-06-26 02:56:39 +00:00
function initSync ( module ) {
if ( wasm !== undefined ) return wasm ;
2025-06-25 21:46:00 +00:00
2025-06-26 02:56:39 +00:00
if ( typeof module !== 'undefined' ) {
if ( Object . getPrototypeOf ( module ) === Object . prototype ) {
( { module } = module )
} else {
console . warn ( 'using deprecated parameters for `initSync()`; pass a single object instead' )
}
}
const imports = _ _wbg _get _imports ( ) ;
_ _wbg _init _memory ( imports ) ;
if ( ! ( module instanceof WebAssembly . Module ) ) {
module = new WebAssembly . Module ( module ) ;
}
const instance = new WebAssembly . Instance ( module , imports ) ;
return _ _wbg _finalize _init ( instance , module ) ;
}
async function _ _wbg _init ( module _or _path ) {
if ( wasm !== undefined ) return wasm ;
if ( typeof module _or _path !== 'undefined' ) {
if ( Object . getPrototypeOf ( module _or _path ) === Object . prototype ) {
( { module _or _path } = module _or _path )
} else {
console . warn ( 'using deprecated parameters for the initialization function; pass a single object instead' )
}
}
if ( typeof module _or _path === 'undefined' ) {
module _or _path = new URL ( 'rudus_bg.wasm' , import . meta . url ) ;
}
const imports = _ _wbg _get _imports ( ) ;
if ( typeof module _or _path === 'string' || ( typeof Request === 'function' && module _or _path instanceof Request ) || ( typeof URL === 'function' && module _or _path instanceof URL ) ) {
module _or _path = fetch ( module _or _path ) ;
}
_ _wbg _init _memory ( imports ) ;
const { instance , module } = await _ _wbg _load ( await module _or _path , imports ) ;
return _ _wbg _finalize _init ( instance , module ) ;
}
2025-06-25 21:46:00 +00:00
2025-06-26 02:56:39 +00:00
export { initSync } ;
export default _ _wbg _init ;