mirror of
https://github.com/fluencelabs/marine.git
synced 2025-03-16 06:20:49 +00:00
11 lines
248 B
JavaScript
11 lines
248 B
JavaScript
export function call_export(module_name, export_name) {
|
|
window.MARINE_WASM_MODULES[module_name].exports[export_name]()
|
|
}
|
|
|
|
export function write_memory(module_name, offset, bytes) {
|
|
|
|
}
|
|
|
|
export function read_memory(module_name, offset, size) {
|
|
|
|
} |