pdf-oxide-wasm 0.3.41 → 0.3.43
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/bundler/pdf_oxide_bg.js +100 -114
- package/bundler/pdf_oxide_bg.wasm +0 -0
- package/nodejs/pdf_oxide.js +102 -115
- package/nodejs/pdf_oxide_bg.wasm +0 -0
- package/package.json +1 -1
- package/web/pdf_oxide.js +102 -115
- package/web/pdf_oxide_bg.wasm +0 -0
package/nodejs/pdf_oxide.js
CHANGED
|
@@ -27,7 +27,6 @@ exports.Align = Align;
|
|
|
27
27
|
*/
|
|
28
28
|
class ArtifactStyle {
|
|
29
29
|
static __wrap(ptr) {
|
|
30
|
-
ptr = ptr >>> 0;
|
|
31
30
|
const obj = Object.create(ArtifactStyle.prototype);
|
|
32
31
|
obj.__wbg_ptr = ptr;
|
|
33
32
|
ArtifactStyleFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -82,7 +81,7 @@ class ArtifactStyle {
|
|
|
82
81
|
*/
|
|
83
82
|
constructor() {
|
|
84
83
|
const ret = wasm.wasmartifactstyle_new();
|
|
85
|
-
this.__wbg_ptr = ret
|
|
84
|
+
this.__wbg_ptr = ret;
|
|
86
85
|
ArtifactStyleFinalization.register(this, this.__wbg_ptr, this);
|
|
87
86
|
return this;
|
|
88
87
|
}
|
|
@@ -103,7 +102,6 @@ exports.ArtifactStyle = ArtifactStyle;
|
|
|
103
102
|
*/
|
|
104
103
|
class StreamingTable {
|
|
105
104
|
static __wrap(ptr) {
|
|
106
|
-
ptr = ptr >>> 0;
|
|
107
105
|
const obj = Object.create(StreamingTable.prototype);
|
|
108
106
|
obj.__wbg_ptr = ptr;
|
|
109
107
|
StreamingTableFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -218,7 +216,6 @@ exports.StreamingTable = StreamingTable;
|
|
|
218
216
|
*/
|
|
219
217
|
class WasmArtifact {
|
|
220
218
|
static __wrap(ptr) {
|
|
221
|
-
ptr = ptr >>> 0;
|
|
222
219
|
const obj = Object.create(WasmArtifact.prototype);
|
|
223
220
|
obj.__wbg_ptr = ptr;
|
|
224
221
|
WasmArtifactFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -261,7 +258,7 @@ class WasmArtifact {
|
|
|
261
258
|
*/
|
|
262
259
|
constructor() {
|
|
263
260
|
const ret = wasm.wasmartifact_new();
|
|
264
|
-
this.__wbg_ptr = ret
|
|
261
|
+
this.__wbg_ptr = ret;
|
|
265
262
|
WasmArtifactFinalization.register(this, this.__wbg_ptr, this);
|
|
266
263
|
return this;
|
|
267
264
|
}
|
|
@@ -308,7 +305,6 @@ exports.WasmArtifact = WasmArtifact;
|
|
|
308
305
|
*/
|
|
309
306
|
class WasmCertificate {
|
|
310
307
|
static __wrap(ptr) {
|
|
311
|
-
ptr = ptr >>> 0;
|
|
312
308
|
const obj = Object.create(WasmCertificate.prototype);
|
|
313
309
|
obj.__wbg_ptr = ptr;
|
|
314
310
|
WasmCertificateFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -724,7 +720,7 @@ class WasmDocumentBuilder {
|
|
|
724
720
|
*/
|
|
725
721
|
constructor() {
|
|
726
722
|
const ret = wasm.wasmdocumentbuilder_new();
|
|
727
|
-
this.__wbg_ptr = ret
|
|
723
|
+
this.__wbg_ptr = ret;
|
|
728
724
|
WasmDocumentBuilderFinalization.register(this, this.__wbg_ptr, this);
|
|
729
725
|
return this;
|
|
730
726
|
}
|
|
@@ -914,7 +910,6 @@ exports.WasmDocumentBuilder = WasmDocumentBuilder;
|
|
|
914
910
|
*/
|
|
915
911
|
class WasmEmbeddedFont {
|
|
916
912
|
static __wrap(ptr) {
|
|
917
|
-
ptr = ptr >>> 0;
|
|
918
913
|
const obj = Object.create(WasmEmbeddedFont.prototype);
|
|
919
914
|
obj.__wbg_ptr = ptr;
|
|
920
915
|
WasmEmbeddedFontFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -987,7 +982,6 @@ exports.WasmEmbeddedFont = WasmEmbeddedFont;
|
|
|
987
982
|
*/
|
|
988
983
|
class WasmFluentPageBuilder {
|
|
989
984
|
static __wrap(ptr) {
|
|
990
|
-
ptr = ptr >>> 0;
|
|
991
985
|
const obj = Object.create(WasmFluentPageBuilder.prototype);
|
|
992
986
|
obj.__wbg_ptr = ptr;
|
|
993
987
|
WasmFluentPageBuilderFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -2227,7 +2221,6 @@ exports.WasmFluentPageBuilder = WasmFluentPageBuilder;
|
|
|
2227
2221
|
*/
|
|
2228
2222
|
class WasmFooter {
|
|
2229
2223
|
static __wrap(ptr) {
|
|
2230
|
-
ptr = ptr >>> 0;
|
|
2231
2224
|
const obj = Object.create(WasmFooter.prototype);
|
|
2232
2225
|
obj.__wbg_ptr = ptr;
|
|
2233
2226
|
WasmFooterFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -2270,7 +2263,7 @@ class WasmFooter {
|
|
|
2270
2263
|
*/
|
|
2271
2264
|
constructor() {
|
|
2272
2265
|
const ret = wasm.wasmfooter_new();
|
|
2273
|
-
this.__wbg_ptr = ret
|
|
2266
|
+
this.__wbg_ptr = ret;
|
|
2274
2267
|
WasmFooterFinalization.register(this, this.__wbg_ptr, this);
|
|
2275
2268
|
return this;
|
|
2276
2269
|
}
|
|
@@ -2294,7 +2287,6 @@ exports.WasmFooter = WasmFooter;
|
|
|
2294
2287
|
*/
|
|
2295
2288
|
class WasmHeader {
|
|
2296
2289
|
static __wrap(ptr) {
|
|
2297
|
-
ptr = ptr >>> 0;
|
|
2298
2290
|
const obj = Object.create(WasmHeader.prototype);
|
|
2299
2291
|
obj.__wbg_ptr = ptr;
|
|
2300
2292
|
WasmHeaderFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -2337,7 +2329,7 @@ class WasmHeader {
|
|
|
2337
2329
|
*/
|
|
2338
2330
|
constructor() {
|
|
2339
2331
|
const ret = wasm.wasmheader_new();
|
|
2340
|
-
this.__wbg_ptr = ret
|
|
2332
|
+
this.__wbg_ptr = ret;
|
|
2341
2333
|
WasmHeaderFinalization.register(this, this.__wbg_ptr, this);
|
|
2342
2334
|
return this;
|
|
2343
2335
|
}
|
|
@@ -2375,7 +2367,7 @@ class WasmOcrConfig {
|
|
|
2375
2367
|
*/
|
|
2376
2368
|
constructor() {
|
|
2377
2369
|
const ret = wasm.wasmocrconfig_new();
|
|
2378
|
-
this.__wbg_ptr = ret
|
|
2370
|
+
this.__wbg_ptr = ret;
|
|
2379
2371
|
WasmOcrConfigFinalization.register(this, this.__wbg_ptr, this);
|
|
2380
2372
|
return this;
|
|
2381
2373
|
}
|
|
@@ -2425,7 +2417,7 @@ class WasmOcrEngine {
|
|
|
2425
2417
|
if (r2) {
|
|
2426
2418
|
throw takeObject(r1);
|
|
2427
2419
|
}
|
|
2428
|
-
this.__wbg_ptr = r0
|
|
2420
|
+
this.__wbg_ptr = r0;
|
|
2429
2421
|
WasmOcrEngineFinalization.register(this, this.__wbg_ptr, this);
|
|
2430
2422
|
return this;
|
|
2431
2423
|
} finally {
|
|
@@ -2441,7 +2433,6 @@ exports.WasmOcrEngine = WasmOcrEngine;
|
|
|
2441
2433
|
*/
|
|
2442
2434
|
class WasmPageTemplate {
|
|
2443
2435
|
static __wrap(ptr) {
|
|
2444
|
-
ptr = ptr >>> 0;
|
|
2445
2436
|
const obj = Object.create(WasmPageTemplate.prototype);
|
|
2446
2437
|
obj.__wbg_ptr = ptr;
|
|
2447
2438
|
WasmPageTemplateFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -2484,7 +2475,7 @@ class WasmPageTemplate {
|
|
|
2484
2475
|
*/
|
|
2485
2476
|
constructor() {
|
|
2486
2477
|
const ret = wasm.wasmpagetemplate_new();
|
|
2487
|
-
this.__wbg_ptr = ret
|
|
2478
|
+
this.__wbg_ptr = ret;
|
|
2488
2479
|
WasmPageTemplateFinalization.register(this, this.__wbg_ptr, this);
|
|
2489
2480
|
return this;
|
|
2490
2481
|
}
|
|
@@ -2512,7 +2503,6 @@ exports.WasmPageTemplate = WasmPageTemplate;
|
|
|
2512
2503
|
*/
|
|
2513
2504
|
class WasmPdf {
|
|
2514
2505
|
static __wrap(ptr) {
|
|
2515
|
-
ptr = ptr >>> 0;
|
|
2516
2506
|
const obj = Object.create(WasmPdf.prototype);
|
|
2517
2507
|
obj.__wbg_ptr = ptr;
|
|
2518
2508
|
WasmPdfFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -3670,7 +3660,7 @@ class WasmPdfDocument {
|
|
|
3670
3660
|
flattenToImages(dpi) {
|
|
3671
3661
|
try {
|
|
3672
3662
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
3673
|
-
wasm.wasmpdfdocument_flattenToImages(retptr, this.__wbg_ptr, isLikeNone(dpi) ?
|
|
3663
|
+
wasm.wasmpdfdocument_flattenToImages(retptr, this.__wbg_ptr, isLikeNone(dpi) ? Number.MAX_SAFE_INTEGER : (dpi) >>> 0);
|
|
3674
3664
|
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
3675
3665
|
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
3676
3666
|
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
|
|
@@ -3916,7 +3906,7 @@ class WasmPdfDocument {
|
|
|
3916
3906
|
if (r2) {
|
|
3917
3907
|
throw takeObject(r1);
|
|
3918
3908
|
}
|
|
3919
|
-
this.__wbg_ptr = r0
|
|
3909
|
+
this.__wbg_ptr = r0;
|
|
3920
3910
|
WasmPdfDocumentFinalization.register(this, this.__wbg_ptr, this);
|
|
3921
3911
|
return this;
|
|
3922
3912
|
} finally {
|
|
@@ -4138,7 +4128,7 @@ class WasmPdfDocument {
|
|
|
4138
4128
|
renderPage(page_index, dpi) {
|
|
4139
4129
|
try {
|
|
4140
4130
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
4141
|
-
wasm.wasmpdfdocument_renderPage(retptr, this.__wbg_ptr, page_index, isLikeNone(dpi) ?
|
|
4131
|
+
wasm.wasmpdfdocument_renderPage(retptr, this.__wbg_ptr, page_index, isLikeNone(dpi) ? Number.MAX_SAFE_INTEGER : (dpi) >>> 0);
|
|
4142
4132
|
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
4143
4133
|
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
4144
4134
|
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
|
|
@@ -4366,7 +4356,7 @@ class WasmPdfDocument {
|
|
|
4366
4356
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
4367
4357
|
const ptr0 = passStringToWasm0(pattern, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
4368
4358
|
const len0 = WASM_VECTOR_LEN;
|
|
4369
|
-
wasm.wasmpdfdocument_search(retptr, this.__wbg_ptr, ptr0, len0, isLikeNone(case_insensitive) ? 0xFFFFFF : case_insensitive ? 1 : 0, isLikeNone(literal) ? 0xFFFFFF : literal ? 1 : 0, isLikeNone(whole_word) ? 0xFFFFFF : whole_word ? 1 : 0, isLikeNone(max_results) ?
|
|
4359
|
+
wasm.wasmpdfdocument_search(retptr, this.__wbg_ptr, ptr0, len0, isLikeNone(case_insensitive) ? 0xFFFFFF : case_insensitive ? 1 : 0, isLikeNone(literal) ? 0xFFFFFF : literal ? 1 : 0, isLikeNone(whole_word) ? 0xFFFFFF : whole_word ? 1 : 0, isLikeNone(max_results) ? Number.MAX_SAFE_INTEGER : (max_results) >>> 0);
|
|
4370
4360
|
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
4371
4361
|
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
4372
4362
|
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
|
|
@@ -4393,7 +4383,7 @@ class WasmPdfDocument {
|
|
|
4393
4383
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
4394
4384
|
const ptr0 = passStringToWasm0(pattern, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
4395
4385
|
const len0 = WASM_VECTOR_LEN;
|
|
4396
|
-
wasm.wasmpdfdocument_searchPage(retptr, this.__wbg_ptr, page_index, ptr0, len0, isLikeNone(case_insensitive) ? 0xFFFFFF : case_insensitive ? 1 : 0, isLikeNone(literal) ? 0xFFFFFF : literal ? 1 : 0, isLikeNone(whole_word) ? 0xFFFFFF : whole_word ? 1 : 0, isLikeNone(max_results) ?
|
|
4386
|
+
wasm.wasmpdfdocument_searchPage(retptr, this.__wbg_ptr, page_index, ptr0, len0, isLikeNone(case_insensitive) ? 0xFFFFFF : case_insensitive ? 1 : 0, isLikeNone(literal) ? 0xFFFFFF : literal ? 1 : 0, isLikeNone(whole_word) ? 0xFFFFFF : whole_word ? 1 : 0, isLikeNone(max_results) ? Number.MAX_SAFE_INTEGER : (max_results) >>> 0);
|
|
4397
4387
|
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
4398
4388
|
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
4399
4389
|
var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
|
|
@@ -4967,7 +4957,6 @@ exports.WasmPdfDocument = WasmPdfDocument;
|
|
|
4967
4957
|
*/
|
|
4968
4958
|
class WasmPdfPageRegion {
|
|
4969
4959
|
static __wrap(ptr) {
|
|
4970
|
-
ptr = ptr >>> 0;
|
|
4971
4960
|
const obj = Object.create(WasmPdfPageRegion.prototype);
|
|
4972
4961
|
obj.__wbg_ptr = ptr;
|
|
4973
4962
|
WasmPdfPageRegionFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -5209,7 +5198,6 @@ exports.WasmPdfPageRegion = WasmPdfPageRegion;
|
|
|
5209
5198
|
*/
|
|
5210
5199
|
class WasmSignature {
|
|
5211
5200
|
static __wrap(ptr) {
|
|
5212
|
-
ptr = ptr >>> 0;
|
|
5213
5201
|
const obj = Object.create(WasmSignature.prototype);
|
|
5214
5202
|
obj.__wbg_ptr = ptr;
|
|
5215
5203
|
WasmSignatureFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -5403,7 +5391,6 @@ exports.WasmSignature = WasmSignature;
|
|
|
5403
5391
|
*/
|
|
5404
5392
|
class WasmTimestamp {
|
|
5405
5393
|
static __wrap(ptr) {
|
|
5406
|
-
ptr = ptr >>> 0;
|
|
5407
5394
|
const obj = Object.create(WasmTimestamp.prototype);
|
|
5408
5395
|
obj.__wbg_ptr = ptr;
|
|
5409
5396
|
WasmTimestampFinalization.register(obj, obj.__wbg_ptr, obj);
|
|
@@ -5720,11 +5707,11 @@ exports.signPdfBytes = signPdfBytes;
|
|
|
5720
5707
|
function __wbg_get_imports() {
|
|
5721
5708
|
const import0 = {
|
|
5722
5709
|
__proto__: null,
|
|
5723
|
-
|
|
5710
|
+
__wbg_Error_3639a60ed15f87e7: function(arg0, arg1) {
|
|
5724
5711
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
5725
5712
|
return addHeapObject(ret);
|
|
5726
5713
|
},
|
|
5727
|
-
|
|
5714
|
+
__wbg_Number_a3d737fd183f7dca: function(arg0) {
|
|
5728
5715
|
const ret = Number(getObject(arg0));
|
|
5729
5716
|
return ret;
|
|
5730
5717
|
},
|
|
@@ -5735,68 +5722,68 @@ function __wbg_get_imports() {
|
|
|
5735
5722
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
5736
5723
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5737
5724
|
},
|
|
5738
|
-
|
|
5725
|
+
__wbg___wbindgen_bigint_get_as_i64_3af6d4ca77193a4b: function(arg0, arg1) {
|
|
5739
5726
|
const v = getObject(arg1);
|
|
5740
5727
|
const ret = typeof(v) === 'bigint' ? v : undefined;
|
|
5741
5728
|
getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true);
|
|
5742
5729
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
5743
5730
|
},
|
|
5744
|
-
|
|
5731
|
+
__wbg___wbindgen_boolean_get_c3dd5c39f1b5a12b: function(arg0) {
|
|
5745
5732
|
const v = getObject(arg0);
|
|
5746
5733
|
const ret = typeof(v) === 'boolean' ? v : undefined;
|
|
5747
5734
|
return isLikeNone(ret) ? 0xFFFFFF : ret ? 1 : 0;
|
|
5748
5735
|
},
|
|
5749
|
-
|
|
5736
|
+
__wbg___wbindgen_debug_string_07cb72cfcc952e2b: function(arg0, arg1) {
|
|
5750
5737
|
const ret = debugString(getObject(arg1));
|
|
5751
5738
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
5752
5739
|
const len1 = WASM_VECTOR_LEN;
|
|
5753
5740
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
5754
5741
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5755
5742
|
},
|
|
5756
|
-
|
|
5743
|
+
__wbg___wbindgen_in_2617fa76397620d3: function(arg0, arg1) {
|
|
5757
5744
|
const ret = getObject(arg0) in getObject(arg1);
|
|
5758
5745
|
return ret;
|
|
5759
5746
|
},
|
|
5760
|
-
|
|
5747
|
+
__wbg___wbindgen_is_bigint_d6a8167cac401b95: function(arg0) {
|
|
5761
5748
|
const ret = typeof(getObject(arg0)) === 'bigint';
|
|
5762
5749
|
return ret;
|
|
5763
5750
|
},
|
|
5764
|
-
|
|
5751
|
+
__wbg___wbindgen_is_function_2f0fd7ceb86e64c5: function(arg0) {
|
|
5765
5752
|
const ret = typeof(getObject(arg0)) === 'function';
|
|
5766
5753
|
return ret;
|
|
5767
5754
|
},
|
|
5768
|
-
|
|
5755
|
+
__wbg___wbindgen_is_null_066086be3abe9bb3: function(arg0) {
|
|
5769
5756
|
const ret = getObject(arg0) === null;
|
|
5770
5757
|
return ret;
|
|
5771
5758
|
},
|
|
5772
|
-
|
|
5759
|
+
__wbg___wbindgen_is_object_5b22ff2418063a9c: function(arg0) {
|
|
5773
5760
|
const val = getObject(arg0);
|
|
5774
5761
|
const ret = typeof(val) === 'object' && val !== null;
|
|
5775
5762
|
return ret;
|
|
5776
5763
|
},
|
|
5777
|
-
|
|
5764
|
+
__wbg___wbindgen_is_string_eddc07a3efad52e6: function(arg0) {
|
|
5778
5765
|
const ret = typeof(getObject(arg0)) === 'string';
|
|
5779
5766
|
return ret;
|
|
5780
5767
|
},
|
|
5781
|
-
|
|
5768
|
+
__wbg___wbindgen_is_undefined_244a92c34d3b6ec0: function(arg0) {
|
|
5782
5769
|
const ret = getObject(arg0) === undefined;
|
|
5783
5770
|
return ret;
|
|
5784
5771
|
},
|
|
5785
|
-
|
|
5772
|
+
__wbg___wbindgen_jsval_eq_403eaa3610500a25: function(arg0, arg1) {
|
|
5786
5773
|
const ret = getObject(arg0) === getObject(arg1);
|
|
5787
5774
|
return ret;
|
|
5788
5775
|
},
|
|
5789
|
-
|
|
5776
|
+
__wbg___wbindgen_jsval_loose_eq_1978f1e77b4bce62: function(arg0, arg1) {
|
|
5790
5777
|
const ret = getObject(arg0) == getObject(arg1);
|
|
5791
5778
|
return ret;
|
|
5792
5779
|
},
|
|
5793
|
-
|
|
5780
|
+
__wbg___wbindgen_number_get_dd6d69a6079f26f1: function(arg0, arg1) {
|
|
5794
5781
|
const obj = getObject(arg1);
|
|
5795
5782
|
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
5796
5783
|
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
5797
5784
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
5798
5785
|
},
|
|
5799
|
-
|
|
5786
|
+
__wbg___wbindgen_string_get_965592073e5d848c: function(arg0, arg1) {
|
|
5800
5787
|
const obj = getObject(arg1);
|
|
5801
5788
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
5802
5789
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
@@ -5804,23 +5791,20 @@ function __wbg_get_imports() {
|
|
|
5804
5791
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
5805
5792
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5806
5793
|
},
|
|
5807
|
-
|
|
5794
|
+
__wbg___wbindgen_throw_9c75d47bf9e7731e: function(arg0, arg1) {
|
|
5808
5795
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
5809
5796
|
},
|
|
5810
|
-
|
|
5797
|
+
__wbg_call_add9e5a76382e668: function() { return handleError(function (arg0, arg1) {
|
|
5811
5798
|
const ret = getObject(arg0).call(getObject(arg1));
|
|
5812
5799
|
return addHeapObject(ret);
|
|
5813
5800
|
}, arguments); },
|
|
5814
|
-
|
|
5801
|
+
__wbg_debug_94a9fb2c3e2982f9: function(arg0, arg1, arg2, arg3) {
|
|
5815
5802
|
console.debug(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
5816
5803
|
},
|
|
5817
|
-
|
|
5804
|
+
__wbg_done_b1afd6201ac045e0: function(arg0) {
|
|
5818
5805
|
const ret = getObject(arg0).done;
|
|
5819
5806
|
return ret;
|
|
5820
5807
|
},
|
|
5821
|
-
__wbg_error_a6a4bb2525a88971: function(arg0, arg1, arg2, arg3) {
|
|
5822
|
-
console.error(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
5823
|
-
},
|
|
5824
5808
|
__wbg_error_a6fa202b58aa1cd3: function(arg0, arg1) {
|
|
5825
5809
|
let deferred0_0;
|
|
5826
5810
|
let deferred0_1;
|
|
@@ -5832,34 +5816,37 @@ function __wbg_get_imports() {
|
|
|
5832
5816
|
wasm.__wbindgen_export4(deferred0_0, deferred0_1, 1);
|
|
5833
5817
|
}
|
|
5834
5818
|
},
|
|
5835
|
-
|
|
5819
|
+
__wbg_error_e92447754a575869: function(arg0, arg1, arg2, arg3) {
|
|
5820
|
+
console.error(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
5821
|
+
},
|
|
5822
|
+
__wbg_fromCodePoint_ac3a66d5b95b4ddf: function() { return handleError(function (arg0) {
|
|
5836
5823
|
const ret = String.fromCodePoint(arg0 >>> 0);
|
|
5837
5824
|
return addHeapObject(ret);
|
|
5838
5825
|
}, arguments); },
|
|
5839
|
-
|
|
5826
|
+
__wbg_from_ff141b1e4c69b979: function(arg0) {
|
|
5840
5827
|
const ret = Array.from(getObject(arg0));
|
|
5841
5828
|
return addHeapObject(ret);
|
|
5842
5829
|
},
|
|
5843
5830
|
__wbg_getRandomValues_ef12552bf5acd2fe: function() { return handleError(function (arg0, arg1) {
|
|
5844
5831
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
5845
5832
|
}, arguments); },
|
|
5846
|
-
|
|
5833
|
+
__wbg_getTime_e599bee315e19eba: function(arg0) {
|
|
5847
5834
|
const ret = getObject(arg0).getTime();
|
|
5848
5835
|
return ret;
|
|
5849
5836
|
},
|
|
5850
|
-
|
|
5837
|
+
__wbg_getTimezoneOffset_d843b3968046e734: function(arg0) {
|
|
5851
5838
|
const ret = getObject(arg0).getTimezoneOffset();
|
|
5852
5839
|
return ret;
|
|
5853
5840
|
},
|
|
5854
|
-
|
|
5855
|
-
const ret = Reflect.get(getObject(arg0), getObject(arg1));
|
|
5856
|
-
return addHeapObject(ret);
|
|
5857
|
-
}, arguments); },
|
|
5858
|
-
__wbg_get_8360291721e2339f: function(arg0, arg1) {
|
|
5841
|
+
__wbg_get_652f640b3b0b6e3e: function(arg0, arg1) {
|
|
5859
5842
|
const ret = getObject(arg0)[arg1 >>> 0];
|
|
5860
5843
|
return addHeapObject(ret);
|
|
5861
5844
|
},
|
|
5862
|
-
|
|
5845
|
+
__wbg_get_9cfea9b7bbf12a15: function() { return handleError(function (arg0, arg1) {
|
|
5846
|
+
const ret = Reflect.get(getObject(arg0), getObject(arg1));
|
|
5847
|
+
return addHeapObject(ret);
|
|
5848
|
+
}, arguments); },
|
|
5849
|
+
__wbg_get_unchecked_be562b1421656321: function(arg0, arg1) {
|
|
5863
5850
|
const ret = getObject(arg0)[arg1 >>> 0];
|
|
5864
5851
|
return addHeapObject(ret);
|
|
5865
5852
|
},
|
|
@@ -5867,10 +5854,10 @@ function __wbg_get_imports() {
|
|
|
5867
5854
|
const ret = getObject(arg0)[getObject(arg1)];
|
|
5868
5855
|
return addHeapObject(ret);
|
|
5869
5856
|
},
|
|
5870
|
-
|
|
5857
|
+
__wbg_info_eba996fb48d58831: function(arg0, arg1, arg2, arg3) {
|
|
5871
5858
|
console.info(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
5872
5859
|
},
|
|
5873
|
-
|
|
5860
|
+
__wbg_instanceof_ArrayBuffer_eab9f28fbec23477: function(arg0) {
|
|
5874
5861
|
let result;
|
|
5875
5862
|
try {
|
|
5876
5863
|
result = getObject(arg0) instanceof ArrayBuffer;
|
|
@@ -5880,7 +5867,7 @@ function __wbg_get_imports() {
|
|
|
5880
5867
|
const ret = result;
|
|
5881
5868
|
return ret;
|
|
5882
5869
|
},
|
|
5883
|
-
|
|
5870
|
+
__wbg_instanceof_Uint8Array_57d77acd50e4c44d: function(arg0) {
|
|
5884
5871
|
let result;
|
|
5885
5872
|
try {
|
|
5886
5873
|
result = getObject(arg0) instanceof Uint8Array;
|
|
@@ -5890,90 +5877,90 @@ function __wbg_get_imports() {
|
|
|
5890
5877
|
const ret = result;
|
|
5891
5878
|
return ret;
|
|
5892
5879
|
},
|
|
5893
|
-
|
|
5880
|
+
__wbg_isArray_c6c6ef8308995bcf: function(arg0) {
|
|
5894
5881
|
const ret = Array.isArray(getObject(arg0));
|
|
5895
5882
|
return ret;
|
|
5896
5883
|
},
|
|
5897
|
-
|
|
5884
|
+
__wbg_isSafeInteger_3c56c421a5b4cce4: function(arg0) {
|
|
5898
5885
|
const ret = Number.isSafeInteger(getObject(arg0));
|
|
5899
5886
|
return ret;
|
|
5900
5887
|
},
|
|
5901
|
-
|
|
5888
|
+
__wbg_iterator_9d68985a1d096fc2: function() {
|
|
5902
5889
|
const ret = Symbol.iterator;
|
|
5903
5890
|
return addHeapObject(ret);
|
|
5904
5891
|
},
|
|
5905
|
-
|
|
5892
|
+
__wbg_length_0a6ce016dc1460b0: function(arg0) {
|
|
5906
5893
|
const ret = getObject(arg0).length;
|
|
5907
5894
|
return ret;
|
|
5908
5895
|
},
|
|
5909
|
-
|
|
5896
|
+
__wbg_length_ba3c032602efe310: function(arg0) {
|
|
5910
5897
|
const ret = getObject(arg0).length;
|
|
5911
5898
|
return ret;
|
|
5912
5899
|
},
|
|
5913
|
-
|
|
5900
|
+
__wbg_log_36199e35916a41aa: function(arg0, arg1, arg2, arg3) {
|
|
5914
5901
|
console.log(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
5915
5902
|
},
|
|
5916
|
-
|
|
5903
|
+
__wbg_new_0_e486ec9936f7edbf: function() {
|
|
5917
5904
|
const ret = new Date();
|
|
5918
5905
|
return addHeapObject(ret);
|
|
5919
5906
|
},
|
|
5920
|
-
__wbg_new_0c7403db6e782f19: function(arg0) {
|
|
5921
|
-
const ret = new Uint8Array(getObject(arg0));
|
|
5922
|
-
return addHeapObject(ret);
|
|
5923
|
-
},
|
|
5924
5907
|
__wbg_new_227d7c05414eb861: function() {
|
|
5925
5908
|
const ret = new Error();
|
|
5926
5909
|
return addHeapObject(ret);
|
|
5927
5910
|
},
|
|
5928
|
-
|
|
5929
|
-
const ret = new
|
|
5911
|
+
__wbg_new_2fad8ca02fd00684: function() {
|
|
5912
|
+
const ret = new Object();
|
|
5930
5913
|
return addHeapObject(ret);
|
|
5931
5914
|
},
|
|
5932
|
-
|
|
5915
|
+
__wbg_new_3baa8d9866155c79: function() {
|
|
5933
5916
|
const ret = new Array();
|
|
5934
5917
|
return addHeapObject(ret);
|
|
5935
5918
|
},
|
|
5936
|
-
|
|
5937
|
-
const ret = new
|
|
5919
|
+
__wbg_new_46ae4e4ff2a07a64: function() {
|
|
5920
|
+
const ret = new Map();
|
|
5938
5921
|
return addHeapObject(ret);
|
|
5939
5922
|
},
|
|
5940
|
-
|
|
5941
|
-
const ret = new
|
|
5923
|
+
__wbg_new_8454eee672b2ba6e: function(arg0) {
|
|
5924
|
+
const ret = new Uint8Array(getObject(arg0));
|
|
5942
5925
|
return addHeapObject(ret);
|
|
5943
5926
|
},
|
|
5944
|
-
|
|
5945
|
-
const ret = new
|
|
5927
|
+
__wbg_new_b47e026ba742fe65: function(arg0) {
|
|
5928
|
+
const ret = new Date(getObject(arg0));
|
|
5946
5929
|
return addHeapObject(ret);
|
|
5947
5930
|
},
|
|
5948
|
-
|
|
5949
|
-
const ret =
|
|
5931
|
+
__wbg_new_from_slice_5a173c243af2e823: function(arg0, arg1) {
|
|
5932
|
+
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
5950
5933
|
return addHeapObject(ret);
|
|
5951
|
-
},
|
|
5952
|
-
|
|
5934
|
+
},
|
|
5935
|
+
__wbg_next_261c3c48c6e309a5: function(arg0) {
|
|
5953
5936
|
const ret = getObject(arg0).next;
|
|
5954
5937
|
return addHeapObject(ret);
|
|
5955
5938
|
},
|
|
5956
|
-
|
|
5939
|
+
__wbg_next_aacee310bcfe6461: function() { return handleError(function (arg0) {
|
|
5940
|
+
const ret = getObject(arg0).next();
|
|
5941
|
+
return addHeapObject(ret);
|
|
5942
|
+
}, arguments); },
|
|
5943
|
+
__wbg_prototypesetcall_fd4050e806e1d519: function(arg0, arg1, arg2) {
|
|
5957
5944
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), getObject(arg2));
|
|
5958
5945
|
},
|
|
5959
|
-
|
|
5946
|
+
__wbg_push_60a5366c0bb22a7d: function(arg0, arg1) {
|
|
5960
5947
|
const ret = getObject(arg0).push(getObject(arg1));
|
|
5961
5948
|
return ret;
|
|
5962
5949
|
},
|
|
5963
|
-
|
|
5950
|
+
__wbg_set_5337f8ac82364a3f: function() { return handleError(function (arg0, arg1, arg2) {
|
|
5964
5951
|
const ret = Reflect.set(getObject(arg0), getObject(arg1), getObject(arg2));
|
|
5965
5952
|
return ret;
|
|
5966
5953
|
}, arguments); },
|
|
5967
|
-
__wbg_set_3bf1de9fab0cd644: function(arg0, arg1, arg2) {
|
|
5968
|
-
getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
|
|
5969
|
-
},
|
|
5970
5954
|
__wbg_set_6be42768c690e380: function(arg0, arg1, arg2) {
|
|
5971
5955
|
getObject(arg0)[takeObject(arg1)] = takeObject(arg2);
|
|
5972
5956
|
},
|
|
5973
|
-
|
|
5957
|
+
__wbg_set_82f7a370f604db70: function(arg0, arg1, arg2) {
|
|
5974
5958
|
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
|
|
5975
5959
|
return addHeapObject(ret);
|
|
5976
5960
|
},
|
|
5961
|
+
__wbg_set_f614f6a0608d1d1d: function(arg0, arg1, arg2) {
|
|
5962
|
+
getObject(arg0)[arg1 >>> 0] = takeObject(arg2);
|
|
5963
|
+
},
|
|
5977
5964
|
__wbg_stack_3b0d974bbf31e44f: function(arg0, arg1) {
|
|
5978
5965
|
const ret = getObject(arg1).stack;
|
|
5979
5966
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
@@ -5981,11 +5968,11 @@ function __wbg_get_imports() {
|
|
|
5981
5968
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
5982
5969
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
5983
5970
|
},
|
|
5984
|
-
|
|
5971
|
+
__wbg_value_f852716acdeb3e82: function(arg0) {
|
|
5985
5972
|
const ret = getObject(arg0).value;
|
|
5986
5973
|
return addHeapObject(ret);
|
|
5987
5974
|
},
|
|
5988
|
-
|
|
5975
|
+
__wbg_warn_d258f6e2da5e0422: function(arg0, arg1, arg2, arg3) {
|
|
5989
5976
|
console.warn(getObject(arg0), getObject(arg1), getObject(arg2), getObject(arg3));
|
|
5990
5977
|
},
|
|
5991
5978
|
__wbg_wasmsignature_new: function(arg0) {
|
|
@@ -6028,55 +6015,55 @@ function __wbg_get_imports() {
|
|
|
6028
6015
|
|
|
6029
6016
|
const WasmArtifactFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6030
6017
|
? { register: () => {}, unregister: () => {} }
|
|
6031
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmartifact_free(ptr
|
|
6018
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmartifact_free(ptr, 1));
|
|
6032
6019
|
const ArtifactStyleFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6033
6020
|
? { register: () => {}, unregister: () => {} }
|
|
6034
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_artifactstyle_free(ptr
|
|
6021
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_artifactstyle_free(ptr, 1));
|
|
6035
6022
|
const WasmCertificateFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6036
6023
|
? { register: () => {}, unregister: () => {} }
|
|
6037
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmcertificate_free(ptr
|
|
6024
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmcertificate_free(ptr, 1));
|
|
6038
6025
|
const WasmDocumentBuilderFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6039
6026
|
? { register: () => {}, unregister: () => {} }
|
|
6040
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmdocumentbuilder_free(ptr
|
|
6027
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmdocumentbuilder_free(ptr, 1));
|
|
6041
6028
|
const WasmEmbeddedFontFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6042
6029
|
? { register: () => {}, unregister: () => {} }
|
|
6043
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmembeddedfont_free(ptr
|
|
6030
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmembeddedfont_free(ptr, 1));
|
|
6044
6031
|
const WasmFluentPageBuilderFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6045
6032
|
? { register: () => {}, unregister: () => {} }
|
|
6046
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmfluentpagebuilder_free(ptr
|
|
6033
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmfluentpagebuilder_free(ptr, 1));
|
|
6047
6034
|
const WasmFooterFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6048
6035
|
? { register: () => {}, unregister: () => {} }
|
|
6049
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmfooter_free(ptr
|
|
6036
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmfooter_free(ptr, 1));
|
|
6050
6037
|
const WasmHeaderFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6051
6038
|
? { register: () => {}, unregister: () => {} }
|
|
6052
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmheader_free(ptr
|
|
6039
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmheader_free(ptr, 1));
|
|
6053
6040
|
const WasmOcrConfigFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6054
6041
|
? { register: () => {}, unregister: () => {} }
|
|
6055
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmocrconfig_free(ptr
|
|
6042
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmocrconfig_free(ptr, 1));
|
|
6056
6043
|
const WasmOcrEngineFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6057
6044
|
? { register: () => {}, unregister: () => {} }
|
|
6058
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmocrengine_free(ptr
|
|
6045
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmocrengine_free(ptr, 1));
|
|
6059
6046
|
const WasmPageTemplateFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6060
6047
|
? { register: () => {}, unregister: () => {} }
|
|
6061
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmpagetemplate_free(ptr
|
|
6048
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmpagetemplate_free(ptr, 1));
|
|
6062
6049
|
const WasmPdfFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6063
6050
|
? { register: () => {}, unregister: () => {} }
|
|
6064
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmpdf_free(ptr
|
|
6051
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmpdf_free(ptr, 1));
|
|
6065
6052
|
const WasmPdfDocumentFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6066
6053
|
? { register: () => {}, unregister: () => {} }
|
|
6067
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmpdfdocument_free(ptr
|
|
6054
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmpdfdocument_free(ptr, 1));
|
|
6068
6055
|
const WasmPdfPageRegionFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6069
6056
|
? { register: () => {}, unregister: () => {} }
|
|
6070
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmpdfpageregion_free(ptr
|
|
6057
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmpdfpageregion_free(ptr, 1));
|
|
6071
6058
|
const WasmSignatureFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6072
6059
|
? { register: () => {}, unregister: () => {} }
|
|
6073
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmsignature_free(ptr
|
|
6060
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmsignature_free(ptr, 1));
|
|
6074
6061
|
const StreamingTableFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6075
6062
|
? { register: () => {}, unregister: () => {} }
|
|
6076
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_streamingtable_free(ptr
|
|
6063
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_streamingtable_free(ptr, 1));
|
|
6077
6064
|
const WasmTimestampFinalization = (typeof FinalizationRegistry === 'undefined')
|
|
6078
6065
|
? { register: () => {}, unregister: () => {} }
|
|
6079
|
-
: new FinalizationRegistry(ptr => wasm.__wbg_wasmtimestamp_free(ptr
|
|
6066
|
+
: new FinalizationRegistry(ptr => wasm.__wbg_wasmtimestamp_free(ptr, 1));
|
|
6080
6067
|
|
|
6081
6068
|
function addHeapObject(obj) {
|
|
6082
6069
|
if (heap_next === heap.length) heap.push(heap.length + 1);
|
|
@@ -6214,8 +6201,7 @@ function getFloat32ArrayMemory0() {
|
|
|
6214
6201
|
}
|
|
6215
6202
|
|
|
6216
6203
|
function getStringFromWasm0(ptr, len) {
|
|
6217
|
-
|
|
6218
|
-
return decodeText(ptr, len);
|
|
6204
|
+
return decodeText(ptr >>> 0, len);
|
|
6219
6205
|
}
|
|
6220
6206
|
|
|
6221
6207
|
let cachedUint32ArrayMemory0 = null;
|
|
@@ -6351,4 +6337,5 @@ let WASM_VECTOR_LEN = 0;
|
|
|
6351
6337
|
const wasmPath = `${__dirname}/pdf_oxide_bg.wasm`;
|
|
6352
6338
|
const wasmBytes = require('fs').readFileSync(wasmPath);
|
|
6353
6339
|
const wasmModule = new WebAssembly.Module(wasmBytes);
|
|
6354
|
-
let
|
|
6340
|
+
let wasmInstance = new WebAssembly.Instance(wasmModule, __wbg_get_imports());
|
|
6341
|
+
let wasm = wasmInstance.exports;
|
package/nodejs/pdf_oxide_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pdf-oxide-wasm",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.43",
|
|
4
4
|
"description": "Fast, zero-dependency PDF toolkit for Node.js, browsers, and edge runtimes — text extraction, markdown/HTML conversion, search, form filling, creation, and editing. Rust core compiled to WebAssembly.",
|
|
5
5
|
"license": "MIT OR Apache-2.0",
|
|
6
6
|
"repository": {
|