@noir-lang/noir_wasm 0.2.0-93d83bf → 0.2.0-ed0e1ab
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/README.md +1 -1
- package/nodejs/noir_wasm.js +4 -4
- package/nodejs/noir_wasm_bg.wasm +0 -0
- package/package.json +2 -2
- package/web/noir_wasm.js +3 -3
- package/web/noir_wasm_bg.wasm +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
# Noir Lang WASM JavaScript Package
|
|
2
2
|
|
|
3
3
|
## Tracks
|
|
4
|
-
Noir lang Repository [noir-lang/noir@
|
|
4
|
+
Noir lang Repository [noir-lang/noir@ed0e1ab](https://github.com/noir-lang/noir/tree/ed0e1ab4c7a3461da1a3fd500335d146ce43176c)
|
package/nodejs/noir_wasm.js
CHANGED
|
@@ -211,15 +211,15 @@ function handleError(f, args) {
|
|
|
211
211
|
}
|
|
212
212
|
}
|
|
213
213
|
|
|
214
|
+
module.exports.__wbindgen_object_drop_ref = function(arg0) {
|
|
215
|
+
takeObject(arg0);
|
|
216
|
+
};
|
|
217
|
+
|
|
214
218
|
module.exports.__wbindgen_is_undefined = function(arg0) {
|
|
215
219
|
const ret = getObject(arg0) === undefined;
|
|
216
220
|
return ret;
|
|
217
221
|
};
|
|
218
222
|
|
|
219
|
-
module.exports.__wbindgen_object_drop_ref = function(arg0) {
|
|
220
|
-
takeObject(arg0);
|
|
221
|
-
};
|
|
222
|
-
|
|
223
223
|
module.exports.__wbg_readfile_1ed72752a157b319 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
224
224
|
const ret = read_file(getStringFromWasm0(arg1, arg2));
|
|
225
225
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
package/nodejs/noir_wasm_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"collaborators": [
|
|
4
4
|
"The Noir Team <kevtheappdev@gmail.com>"
|
|
5
5
|
],
|
|
6
|
-
"version": "0.2.0-
|
|
6
|
+
"version": "0.2.0-ed0e1ab",
|
|
7
7
|
"files": [
|
|
8
8
|
"nodejs",
|
|
9
9
|
"web",
|
|
@@ -21,6 +21,6 @@
|
|
|
21
21
|
"url": "https://github.com/noir-lang/noir_wasm.git"
|
|
22
22
|
},
|
|
23
23
|
"compiler": {
|
|
24
|
-
"versionHash": "
|
|
24
|
+
"versionHash": "ed0e1ab4c7a3461da1a3fd500335d146ce43176c"
|
|
25
25
|
}
|
|
26
26
|
}
|
package/web/noir_wasm.js
CHANGED
|
@@ -243,13 +243,13 @@ async function load(module, imports) {
|
|
|
243
243
|
function getImports() {
|
|
244
244
|
const imports = {};
|
|
245
245
|
imports.wbg = {};
|
|
246
|
+
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
|
|
247
|
+
takeObject(arg0);
|
|
248
|
+
};
|
|
246
249
|
imports.wbg.__wbindgen_is_undefined = function(arg0) {
|
|
247
250
|
const ret = getObject(arg0) === undefined;
|
|
248
251
|
return ret;
|
|
249
252
|
};
|
|
250
|
-
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
|
|
251
|
-
takeObject(arg0);
|
|
252
|
-
};
|
|
253
253
|
imports.wbg.__wbg_readfile_1ed72752a157b319 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
254
254
|
const ret = read_file(getStringFromWasm0(arg1, arg2));
|
|
255
255
|
const ptr0 = passStringToWasm0(ret, wasm.__wbindgen_export_0, wasm.__wbindgen_export_1);
|
package/web/noir_wasm_bg.wasm
CHANGED
|
Binary file
|