@subwallet/web-runner 0.4.2-2 → 0.4.4-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/172.js +1 -0
- package/272.js +1 -0
- package/397.js +1 -0
- package/746.js +1 -0
- package/925.js +1 -0
- package/package.json +5 -5
- package/smoldot.js +2 -0
- package/smoldot.js.LICENSE.txt +22 -0
- package/web-runner.js +3 -3
- package/web-runner.js.LICENSE.txt +0 -15
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* The buffer module from node.js, for the browser.
|
|
3
|
+
*
|
|
4
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
9
|
+
|
|
10
|
+
//!
|
|
11
|
+
|
|
12
|
+
//! Exports a function that provides bindings for the Wasi interface.
|
|
13
|
+
|
|
14
|
+
//! Exports a function that provides bindings for the bindings found in the Rust part of the code.
|
|
15
|
+
|
|
16
|
+
//! In order to use this code, call the function passing an object, then fill the `instance` field
|
|
17
|
+
|
|
18
|
+
//! See <https://wasi.dev/>.
|
|
19
|
+
|
|
20
|
+
//! These bindings can then be used by the Wasm virtual machine to invoke Wasi-related functions.
|
|
21
|
+
|
|
22
|
+
//! of that object with the Wasm instance.
|