ihs-wasm
v2.0.41
Published
ihs wasm modules
Downloads
13
Readme
ihs-wasm
This package contains wasm modules to be used for webapps. For the moment, the package is only for internal testing.
USAGE
Add the following inside the head tag:
<script src = 'https://unpkg.com/ihs-wasm@latest/modules/functions/js/functions.js'></script>
Inside your html or js, the modules can be used as below:
<script>
functionsCPP()
.then(cppF => {
.......
cppF.function_name(functions_args);
.......
})
.catch((err)=>{ console.log(err) });
</script>
DOCUMENTATION
on the way ....