isar_plus 1.1.7 → 1.1.9
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/isar.js +247 -260
- package/isar.wasm +0 -0
- package/package.json +5 -1
package/isar.js
CHANGED
|
@@ -7,14 +7,6 @@ window.wasm_bindgen = undefined;
|
|
|
7
7
|
}
|
|
8
8
|
let wasm = undefined;
|
|
9
9
|
|
|
10
|
-
let heap = new Array(128).fill(undefined);
|
|
11
|
-
|
|
12
|
-
heap.push(undefined, null, true, false);
|
|
13
|
-
|
|
14
|
-
function getObject(idx) { return heap[idx]; }
|
|
15
|
-
|
|
16
|
-
let heap_next = heap.length;
|
|
17
|
-
|
|
18
10
|
function addHeapObject(obj) {
|
|
19
11
|
if (heap_next === heap.length) heap.push(heap.length + 1);
|
|
20
12
|
const idx = heap_next;
|
|
@@ -24,6 +16,10 @@ window.wasm_bindgen = undefined;
|
|
|
24
16
|
return idx;
|
|
25
17
|
}
|
|
26
18
|
|
|
19
|
+
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
20
|
+
? { register: () => {}, unregister: () => {} }
|
|
21
|
+
: new FinalizationRegistry(state => state.dtor(state.a, state.b));
|
|
22
|
+
|
|
27
23
|
function debugString(val) {
|
|
28
24
|
// primitive types
|
|
29
25
|
const type = typeof val;
|
|
@@ -89,10 +85,31 @@ window.wasm_bindgen = undefined;
|
|
|
89
85
|
return className;
|
|
90
86
|
}
|
|
91
87
|
|
|
92
|
-
|
|
88
|
+
function dropObject(idx) {
|
|
89
|
+
if (idx < 132) return;
|
|
90
|
+
heap[idx] = heap_next;
|
|
91
|
+
heap_next = idx;
|
|
92
|
+
}
|
|
93
93
|
|
|
94
|
-
|
|
94
|
+
function getArrayU8FromWasm0(ptr, len) {
|
|
95
|
+
ptr = ptr >>> 0;
|
|
96
|
+
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
97
|
+
}
|
|
95
98
|
|
|
99
|
+
let cachedDataViewMemory0 = null;
|
|
100
|
+
function getDataViewMemory0() {
|
|
101
|
+
if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
|
|
102
|
+
cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
|
|
103
|
+
}
|
|
104
|
+
return cachedDataViewMemory0;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
function getStringFromWasm0(ptr, len) {
|
|
108
|
+
ptr = ptr >>> 0;
|
|
109
|
+
return decodeText(ptr, len);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
let cachedUint8ArrayMemory0 = null;
|
|
96
113
|
function getUint8ArrayMemory0() {
|
|
97
114
|
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
|
|
98
115
|
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
|
|
@@ -100,21 +117,54 @@ window.wasm_bindgen = undefined;
|
|
|
100
117
|
return cachedUint8ArrayMemory0;
|
|
101
118
|
}
|
|
102
119
|
|
|
103
|
-
|
|
120
|
+
function getObject(idx) { return heap[idx]; }
|
|
104
121
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
read: arg.length,
|
|
111
|
-
written: buf.length
|
|
112
|
-
};
|
|
122
|
+
function handleError(f, args) {
|
|
123
|
+
try {
|
|
124
|
+
return f.apply(this, args);
|
|
125
|
+
} catch (e) {
|
|
126
|
+
wasm.__wbindgen_export3(addHeapObject(e));
|
|
113
127
|
}
|
|
114
128
|
}
|
|
115
129
|
|
|
116
|
-
|
|
130
|
+
let heap = new Array(128).fill(undefined);
|
|
131
|
+
heap.push(undefined, null, true, false);
|
|
117
132
|
|
|
133
|
+
let heap_next = heap.length;
|
|
134
|
+
|
|
135
|
+
function isLikeNone(x) {
|
|
136
|
+
return x === undefined || x === null;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
function makeMutClosure(arg0, arg1, dtor, f) {
|
|
140
|
+
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
141
|
+
const real = (...args) => {
|
|
142
|
+
|
|
143
|
+
// First up with a closure we increment the internal reference
|
|
144
|
+
// count. This ensures that the Rust closure environment won't
|
|
145
|
+
// be deallocated while we're invoking it.
|
|
146
|
+
state.cnt++;
|
|
147
|
+
const a = state.a;
|
|
148
|
+
state.a = 0;
|
|
149
|
+
try {
|
|
150
|
+
return f(a, state.b, ...args);
|
|
151
|
+
} finally {
|
|
152
|
+
state.a = a;
|
|
153
|
+
real._wbg_cb_unref();
|
|
154
|
+
}
|
|
155
|
+
};
|
|
156
|
+
real._wbg_cb_unref = () => {
|
|
157
|
+
if (--state.cnt === 0) {
|
|
158
|
+
state.dtor(state.a, state.b);
|
|
159
|
+
state.a = 0;
|
|
160
|
+
CLOSURE_DTORS.unregister(state);
|
|
161
|
+
}
|
|
162
|
+
};
|
|
163
|
+
CLOSURE_DTORS.register(real, state, state);
|
|
164
|
+
return real;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
function passStringToWasm0(arg, malloc, realloc) {
|
|
118
168
|
if (realloc === undefined) {
|
|
119
169
|
const buf = cachedTextEncoder.encode(arg);
|
|
120
170
|
const ptr = malloc(buf.length, 1) >>> 0;
|
|
@@ -135,7 +185,6 @@ window.wasm_bindgen = undefined;
|
|
|
135
185
|
if (code > 0x7F) break;
|
|
136
186
|
mem[ptr + offset] = code;
|
|
137
187
|
}
|
|
138
|
-
|
|
139
188
|
if (offset !== len) {
|
|
140
189
|
if (offset !== 0) {
|
|
141
190
|
arg = arg.slice(offset);
|
|
@@ -152,96 +201,41 @@ window.wasm_bindgen = undefined;
|
|
|
152
201
|
return ptr;
|
|
153
202
|
}
|
|
154
203
|
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
|
|
160
|
-
}
|
|
161
|
-
return cachedDataViewMemory0;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
function isLikeNone(x) {
|
|
165
|
-
return x === undefined || x === null;
|
|
204
|
+
function takeObject(idx) {
|
|
205
|
+
const ret = getObject(idx);
|
|
206
|
+
dropObject(idx);
|
|
207
|
+
return ret;
|
|
166
208
|
}
|
|
167
209
|
|
|
168
210
|
let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
|
169
|
-
|
|
170
211
|
cachedTextDecoder.decode();
|
|
171
|
-
|
|
172
212
|
function decodeText(ptr, len) {
|
|
173
213
|
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
|
174
214
|
}
|
|
175
215
|
|
|
176
|
-
|
|
177
|
-
ptr = ptr >>> 0;
|
|
178
|
-
return decodeText(ptr, len);
|
|
179
|
-
}
|
|
216
|
+
const cachedTextEncoder = new TextEncoder();
|
|
180
217
|
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
218
|
+
if (!('encodeInto' in cachedTextEncoder)) {
|
|
219
|
+
cachedTextEncoder.encodeInto = function (arg, view) {
|
|
220
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
221
|
+
view.set(buf);
|
|
222
|
+
return {
|
|
223
|
+
read: arg.length,
|
|
224
|
+
written: buf.length
|
|
225
|
+
};
|
|
186
226
|
}
|
|
187
227
|
}
|
|
188
228
|
|
|
189
|
-
|
|
190
|
-
ptr = ptr >>> 0;
|
|
191
|
-
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
|
195
|
-
? { register: () => {}, unregister: () => {} }
|
|
196
|
-
: new FinalizationRegistry(state => state.dtor(state.a, state.b));
|
|
197
|
-
|
|
198
|
-
function makeMutClosure(arg0, arg1, dtor, f) {
|
|
199
|
-
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
|
200
|
-
const real = (...args) => {
|
|
201
|
-
|
|
202
|
-
// First up with a closure we increment the internal reference
|
|
203
|
-
// count. This ensures that the Rust closure environment won't
|
|
204
|
-
// be deallocated while we're invoking it.
|
|
205
|
-
state.cnt++;
|
|
206
|
-
const a = state.a;
|
|
207
|
-
state.a = 0;
|
|
208
|
-
try {
|
|
209
|
-
return f(a, state.b, ...args);
|
|
210
|
-
} finally {
|
|
211
|
-
state.a = a;
|
|
212
|
-
real._wbg_cb_unref();
|
|
213
|
-
}
|
|
214
|
-
};
|
|
215
|
-
real._wbg_cb_unref = () => {
|
|
216
|
-
if (--state.cnt === 0) {
|
|
217
|
-
state.dtor(state.a, state.b);
|
|
218
|
-
state.a = 0;
|
|
219
|
-
CLOSURE_DTORS.unregister(state);
|
|
220
|
-
}
|
|
221
|
-
};
|
|
222
|
-
CLOSURE_DTORS.register(real, state, state);
|
|
223
|
-
return real;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
function dropObject(idx) {
|
|
227
|
-
if (idx < 132) return;
|
|
228
|
-
heap[idx] = heap_next;
|
|
229
|
-
heap_next = idx;
|
|
230
|
-
}
|
|
229
|
+
let WASM_VECTOR_LEN = 0;
|
|
231
230
|
|
|
232
|
-
function
|
|
233
|
-
|
|
234
|
-
dropObject(idx);
|
|
235
|
-
return ret;
|
|
236
|
-
}
|
|
237
|
-
function __wasm_bindgen_func_elem_588(arg0, arg1, arg2) {
|
|
238
|
-
wasm.__wasm_bindgen_func_elem_588(arg0, arg1, addHeapObject(arg2));
|
|
231
|
+
function __wasm_bindgen_func_elem_593(arg0, arg1, arg2) {
|
|
232
|
+
wasm.__wasm_bindgen_func_elem_593(arg0, arg1, addHeapObject(arg2));
|
|
239
233
|
}
|
|
240
234
|
|
|
241
|
-
function
|
|
235
|
+
function __wasm_bindgen_func_elem_1526(arg0, arg1, arg2) {
|
|
242
236
|
try {
|
|
243
237
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
244
|
-
wasm.
|
|
238
|
+
wasm.__wasm_bindgen_func_elem_1526(retptr, arg0, arg1, addHeapObject(arg2));
|
|
245
239
|
var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
|
|
246
240
|
var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
|
|
247
241
|
if (r1) {
|
|
@@ -252,8 +246,8 @@ window.wasm_bindgen = undefined;
|
|
|
252
246
|
}
|
|
253
247
|
}
|
|
254
248
|
|
|
255
|
-
function
|
|
256
|
-
wasm.
|
|
249
|
+
function __wasm_bindgen_func_elem_595(arg0, arg1) {
|
|
250
|
+
wasm.__wasm_bindgen_func_elem_595(arg0, arg1);
|
|
257
251
|
}
|
|
258
252
|
|
|
259
253
|
const __wbindgen_enum_IdbRequestReadyState = ["pending", "done"];
|
|
@@ -267,7 +261,6 @@ window.wasm_bindgen = undefined;
|
|
|
267
261
|
if (typeof WebAssembly.instantiateStreaming === 'function') {
|
|
268
262
|
try {
|
|
269
263
|
return await WebAssembly.instantiateStreaming(module, imports);
|
|
270
|
-
|
|
271
264
|
} catch (e) {
|
|
272
265
|
const validResponse = module.ok && EXPECTED_RESPONSE_TYPES.has(module.type);
|
|
273
266
|
|
|
@@ -282,13 +275,11 @@ window.wasm_bindgen = undefined;
|
|
|
282
275
|
|
|
283
276
|
const bytes = await module.arrayBuffer();
|
|
284
277
|
return await WebAssembly.instantiate(bytes, imports);
|
|
285
|
-
|
|
286
278
|
} else {
|
|
287
279
|
const instance = await WebAssembly.instantiate(module, imports);
|
|
288
280
|
|
|
289
281
|
if (instance instanceof WebAssembly.Instance) {
|
|
290
282
|
return { instance, module };
|
|
291
|
-
|
|
292
283
|
} else {
|
|
293
284
|
return instance;
|
|
294
285
|
}
|
|
@@ -306,32 +297,32 @@ window.wasm_bindgen = undefined;
|
|
|
306
297
|
const ret = getObject(arg0).WorkerGlobalScope;
|
|
307
298
|
return addHeapObject(ret);
|
|
308
299
|
};
|
|
309
|
-
imports.wbg.
|
|
300
|
+
imports.wbg.__wbg___wbindgen_debug_string_adfb662ae34724b6 = function(arg0, arg1) {
|
|
310
301
|
const ret = debugString(getObject(arg1));
|
|
311
302
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
312
303
|
const len1 = WASM_VECTOR_LEN;
|
|
313
304
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
314
305
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
315
306
|
};
|
|
316
|
-
imports.wbg.
|
|
307
|
+
imports.wbg.__wbg___wbindgen_is_function_8d400b8b1af978cd = function(arg0) {
|
|
317
308
|
const ret = typeof(getObject(arg0)) === 'function';
|
|
318
309
|
return ret;
|
|
319
310
|
};
|
|
320
|
-
imports.wbg.
|
|
311
|
+
imports.wbg.__wbg___wbindgen_is_null_dfda7d66506c95b5 = function(arg0) {
|
|
321
312
|
const ret = getObject(arg0) === null;
|
|
322
313
|
return ret;
|
|
323
314
|
};
|
|
324
|
-
imports.wbg.
|
|
315
|
+
imports.wbg.__wbg___wbindgen_is_undefined_f6b95eab589e0269 = function(arg0) {
|
|
325
316
|
const ret = getObject(arg0) === undefined;
|
|
326
317
|
return ret;
|
|
327
318
|
};
|
|
328
|
-
imports.wbg.
|
|
319
|
+
imports.wbg.__wbg___wbindgen_number_get_9619185a74197f95 = function(arg0, arg1) {
|
|
329
320
|
const obj = getObject(arg1);
|
|
330
321
|
const ret = typeof(obj) === 'number' ? obj : undefined;
|
|
331
322
|
getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true);
|
|
332
323
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true);
|
|
333
324
|
};
|
|
334
|
-
imports.wbg.
|
|
325
|
+
imports.wbg.__wbg___wbindgen_string_get_a2a31e16edf96e42 = function(arg0, arg1) {
|
|
335
326
|
const obj = getObject(arg1);
|
|
336
327
|
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
337
328
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
@@ -339,166 +330,166 @@ window.wasm_bindgen = undefined;
|
|
|
339
330
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
340
331
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
341
332
|
};
|
|
342
|
-
imports.wbg.
|
|
333
|
+
imports.wbg.__wbg___wbindgen_throw_dd24417ed36fc46e = function(arg0, arg1) {
|
|
343
334
|
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
344
335
|
};
|
|
345
|
-
imports.wbg.
|
|
336
|
+
imports.wbg.__wbg__wbg_cb_unref_87dfb5aaa0cbcea7 = function(arg0) {
|
|
346
337
|
getObject(arg0)._wbg_cb_unref();
|
|
347
338
|
};
|
|
348
|
-
imports.wbg.
|
|
339
|
+
imports.wbg.__wbg_abort_45186b2c363ae467 = function() { return handleError(function (arg0) {
|
|
349
340
|
getObject(arg0).abort();
|
|
350
341
|
}, arguments) };
|
|
351
|
-
imports.wbg.
|
|
342
|
+
imports.wbg.__wbg_add_f0bf6d9527665471 = function(arg0, arg1) {
|
|
352
343
|
const ret = getObject(arg0).add(getObject(arg1));
|
|
353
344
|
return addHeapObject(ret);
|
|
354
345
|
};
|
|
355
|
-
imports.wbg.
|
|
346
|
+
imports.wbg.__wbg_bound_6fa641bacd961cc0 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
356
347
|
const ret = IDBKeyRange.bound(getObject(arg0), getObject(arg1), arg2 !== 0, arg3 !== 0);
|
|
357
348
|
return addHeapObject(ret);
|
|
358
349
|
}, arguments) };
|
|
359
|
-
imports.wbg.
|
|
350
|
+
imports.wbg.__wbg_buffer_6cb2fecb1f253d71 = function(arg0) {
|
|
360
351
|
const ret = getObject(arg0).buffer;
|
|
361
352
|
return addHeapObject(ret);
|
|
362
353
|
};
|
|
363
|
-
imports.wbg.
|
|
354
|
+
imports.wbg.__wbg_byteLength_faa9938885bdeee6 = function(arg0) {
|
|
364
355
|
const ret = getObject(arg0).byteLength;
|
|
365
356
|
return ret;
|
|
366
357
|
};
|
|
367
|
-
imports.wbg.
|
|
358
|
+
imports.wbg.__wbg_byteOffset_3868b6a19ba01dea = function(arg0) {
|
|
368
359
|
const ret = getObject(arg0).byteOffset;
|
|
369
360
|
return ret;
|
|
370
361
|
};
|
|
371
|
-
imports.wbg.
|
|
362
|
+
imports.wbg.__wbg_call_abb4ff46ce38be40 = function() { return handleError(function (arg0, arg1) {
|
|
372
363
|
const ret = getObject(arg0).call(getObject(arg1));
|
|
373
364
|
return addHeapObject(ret);
|
|
374
365
|
}, arguments) };
|
|
375
|
-
imports.wbg.
|
|
366
|
+
imports.wbg.__wbg_clear_0e6ff4790cdabf11 = function() { return handleError(function (arg0) {
|
|
376
367
|
const ret = getObject(arg0).clear();
|
|
377
368
|
return addHeapObject(ret);
|
|
378
369
|
}, arguments) };
|
|
379
370
|
imports.wbg.__wbg_commit_a54edce65f3858f2 = function() { return handleError(function (arg0) {
|
|
380
371
|
getObject(arg0).commit();
|
|
381
372
|
}, arguments) };
|
|
382
|
-
imports.wbg.
|
|
373
|
+
imports.wbg.__wbg_createObjectStore_cbdcc26f3aae8530 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
383
374
|
const ret = getObject(arg0).createObjectStore(getStringFromWasm0(arg1, arg2), getObject(arg3));
|
|
384
375
|
return addHeapObject(ret);
|
|
385
376
|
}, arguments) };
|
|
386
|
-
imports.wbg.
|
|
377
|
+
imports.wbg.__wbg_createSyncAccessHandle_df3bfed7c6bd8d02 = function(arg0) {
|
|
387
378
|
const ret = getObject(arg0).createSyncAccessHandle();
|
|
388
379
|
return addHeapObject(ret);
|
|
389
380
|
};
|
|
390
|
-
imports.wbg.
|
|
381
|
+
imports.wbg.__wbg_delete_25d4b2e86b2ae767 = function(arg0, arg1) {
|
|
391
382
|
const ret = getObject(arg0).delete(getObject(arg1));
|
|
392
383
|
return ret;
|
|
393
384
|
};
|
|
394
|
-
imports.wbg.
|
|
385
|
+
imports.wbg.__wbg_delete_a8cf58aab29e18d2 = function() { return handleError(function (arg0, arg1) {
|
|
395
386
|
const ret = getObject(arg0).delete(getObject(arg1));
|
|
396
387
|
return addHeapObject(ret);
|
|
397
388
|
}, arguments) };
|
|
398
|
-
imports.wbg.
|
|
389
|
+
imports.wbg.__wbg_delete_fb98ce77a65cdf18 = function(arg0, arg1) {
|
|
399
390
|
const ret = getObject(arg0).delete(getObject(arg1));
|
|
400
391
|
return ret;
|
|
401
392
|
};
|
|
402
|
-
imports.wbg.
|
|
393
|
+
imports.wbg.__wbg_done_62ea16af4ce34b24 = function(arg0) {
|
|
403
394
|
const ret = getObject(arg0).done;
|
|
404
395
|
return ret;
|
|
405
396
|
};
|
|
406
|
-
imports.wbg.
|
|
397
|
+
imports.wbg.__wbg_entries_7de5c9edd116e219 = function(arg0) {
|
|
407
398
|
const ret = getObject(arg0).entries();
|
|
408
399
|
return addHeapObject(ret);
|
|
409
400
|
};
|
|
410
|
-
imports.wbg.
|
|
401
|
+
imports.wbg.__wbg_error_ad02a286da74488a = function() { return handleError(function (arg0) {
|
|
411
402
|
const ret = getObject(arg0).error;
|
|
412
403
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
413
404
|
}, arguments) };
|
|
414
|
-
imports.wbg.
|
|
405
|
+
imports.wbg.__wbg_fill_508dd108a821ee20 = function(arg0, arg1, arg2, arg3) {
|
|
415
406
|
const ret = getObject(arg0).fill(arg1, arg2 >>> 0, arg3 >>> 0);
|
|
416
407
|
return addHeapObject(ret);
|
|
417
408
|
};
|
|
418
|
-
imports.wbg.
|
|
409
|
+
imports.wbg.__wbg_flush_554f5177ae6f76cb = function() { return handleError(function (arg0) {
|
|
419
410
|
getObject(arg0).flush();
|
|
420
411
|
}, arguments) };
|
|
421
|
-
imports.wbg.
|
|
412
|
+
imports.wbg.__wbg_from_29a8414a7a7cd19d = function(arg0) {
|
|
422
413
|
const ret = Array.from(getObject(arg0));
|
|
423
414
|
return addHeapObject(ret);
|
|
424
415
|
};
|
|
425
|
-
imports.wbg.
|
|
426
|
-
const ret = getObject(arg0).getAll(
|
|
416
|
+
imports.wbg.__wbg_getAll_07e3f1f333b88a79 = function() { return handleError(function (arg0) {
|
|
417
|
+
const ret = getObject(arg0).getAll();
|
|
427
418
|
return addHeapObject(ret);
|
|
428
419
|
}, arguments) };
|
|
429
|
-
imports.wbg.
|
|
430
|
-
const ret = getObject(arg0).getAll();
|
|
420
|
+
imports.wbg.__wbg_getAll_48e288420773a079 = function() { return handleError(function (arg0, arg1) {
|
|
421
|
+
const ret = getObject(arg0).getAll(getObject(arg1));
|
|
431
422
|
return addHeapObject(ret);
|
|
432
423
|
}, arguments) };
|
|
433
|
-
imports.wbg.
|
|
424
|
+
imports.wbg.__wbg_getDate_b8071ea9fc4f6838 = function(arg0) {
|
|
434
425
|
const ret = getObject(arg0).getDate();
|
|
435
426
|
return ret;
|
|
436
427
|
};
|
|
437
|
-
imports.wbg.
|
|
428
|
+
imports.wbg.__wbg_getDay_c13a50561112f77a = function(arg0) {
|
|
438
429
|
const ret = getObject(arg0).getDay();
|
|
439
430
|
return ret;
|
|
440
431
|
};
|
|
441
|
-
imports.wbg.
|
|
432
|
+
imports.wbg.__wbg_getDirectoryHandle_edea923e1d89a19d = function(arg0, arg1, arg2, arg3) {
|
|
442
433
|
const ret = getObject(arg0).getDirectoryHandle(getStringFromWasm0(arg1, arg2), getObject(arg3));
|
|
443
434
|
return addHeapObject(ret);
|
|
444
435
|
};
|
|
445
|
-
imports.wbg.
|
|
436
|
+
imports.wbg.__wbg_getDirectory_9beed6c83b6861f5 = function(arg0) {
|
|
446
437
|
const ret = getObject(arg0).getDirectory();
|
|
447
438
|
return addHeapObject(ret);
|
|
448
439
|
};
|
|
449
|
-
imports.wbg.
|
|
440
|
+
imports.wbg.__wbg_getFileHandle_298ee7a4e5a85f84 = function(arg0, arg1, arg2, arg3) {
|
|
450
441
|
const ret = getObject(arg0).getFileHandle(getStringFromWasm0(arg1, arg2), getObject(arg3));
|
|
451
442
|
return addHeapObject(ret);
|
|
452
443
|
};
|
|
453
|
-
imports.wbg.
|
|
444
|
+
imports.wbg.__wbg_getFullYear_6ac412e8eee86879 = function(arg0) {
|
|
454
445
|
const ret = getObject(arg0).getFullYear();
|
|
455
446
|
return ret;
|
|
456
447
|
};
|
|
457
|
-
imports.wbg.
|
|
448
|
+
imports.wbg.__wbg_getHours_52eb417ad6e924e8 = function(arg0) {
|
|
458
449
|
const ret = getObject(arg0).getHours();
|
|
459
450
|
return ret;
|
|
460
451
|
};
|
|
461
|
-
imports.wbg.
|
|
452
|
+
imports.wbg.__wbg_getMinutes_4097cef8e08622f9 = function(arg0) {
|
|
462
453
|
const ret = getObject(arg0).getMinutes();
|
|
463
454
|
return ret;
|
|
464
455
|
};
|
|
465
|
-
imports.wbg.
|
|
456
|
+
imports.wbg.__wbg_getMonth_48a392071f9e5017 = function(arg0) {
|
|
466
457
|
const ret = getObject(arg0).getMonth();
|
|
467
458
|
return ret;
|
|
468
459
|
};
|
|
469
|
-
imports.wbg.
|
|
460
|
+
imports.wbg.__wbg_getSeconds_d94762aec8103802 = function(arg0) {
|
|
470
461
|
const ret = getObject(arg0).getSeconds();
|
|
471
462
|
return ret;
|
|
472
463
|
};
|
|
473
|
-
imports.wbg.
|
|
464
|
+
imports.wbg.__wbg_getSize_1bf196c4094d8f7b = function() { return handleError(function (arg0) {
|
|
474
465
|
const ret = getObject(arg0).getSize();
|
|
475
466
|
return ret;
|
|
476
467
|
}, arguments) };
|
|
477
|
-
imports.wbg.
|
|
468
|
+
imports.wbg.__wbg_getTime_ad1e9878a735af08 = function(arg0) {
|
|
478
469
|
const ret = getObject(arg0).getTime();
|
|
479
470
|
return ret;
|
|
480
471
|
};
|
|
481
|
-
imports.wbg.
|
|
472
|
+
imports.wbg.__wbg_getTimezoneOffset_45389e26d6f46823 = function(arg0) {
|
|
482
473
|
const ret = getObject(arg0).getTimezoneOffset();
|
|
483
474
|
return ret;
|
|
484
475
|
};
|
|
485
|
-
imports.wbg.
|
|
476
|
+
imports.wbg.__wbg_getUint32_d63de983274cb44e = function(arg0, arg1) {
|
|
486
477
|
const ret = getObject(arg0).getUint32(arg1 >>> 0);
|
|
487
478
|
return ret;
|
|
488
479
|
};
|
|
489
|
-
imports.wbg.
|
|
480
|
+
imports.wbg.__wbg_get_6b7bd52aca3f9671 = function(arg0, arg1) {
|
|
490
481
|
const ret = getObject(arg0)[arg1 >>> 0];
|
|
491
482
|
return addHeapObject(ret);
|
|
492
483
|
};
|
|
493
|
-
imports.wbg.
|
|
494
|
-
const ret = getObject(arg0).get(getObject(arg1));
|
|
495
|
-
return addHeapObject(ret);
|
|
496
|
-
};
|
|
497
|
-
imports.wbg.__wbg_get_efcb449f58ec27c2 = function() { return handleError(function (arg0, arg1) {
|
|
484
|
+
imports.wbg.__wbg_get_af9dab7e9603ea93 = function() { return handleError(function (arg0, arg1) {
|
|
498
485
|
const ret = Reflect.get(getObject(arg0), getObject(arg1));
|
|
499
486
|
return addHeapObject(ret);
|
|
500
487
|
}, arguments) };
|
|
501
|
-
imports.wbg.
|
|
488
|
+
imports.wbg.__wbg_get_cbf36dc54869cf03 = function(arg0, arg1) {
|
|
489
|
+
const ret = getObject(arg0).get(getObject(arg1));
|
|
490
|
+
return addHeapObject(ret);
|
|
491
|
+
};
|
|
492
|
+
imports.wbg.__wbg_get_index_4e7b3f629a0ab9cd = function(arg0, arg1) {
|
|
502
493
|
const ret = getObject(arg0)[arg1 >>> 0];
|
|
503
494
|
return ret;
|
|
504
495
|
};
|
|
@@ -506,23 +497,23 @@ window.wasm_bindgen = undefined;
|
|
|
506
497
|
const ret = getObject(arg0).global;
|
|
507
498
|
return addHeapObject(ret);
|
|
508
499
|
};
|
|
509
|
-
imports.wbg.
|
|
500
|
+
imports.wbg.__wbg_has_578462e0169948ad = function(arg0, arg1) {
|
|
510
501
|
const ret = getObject(arg0).has(getObject(arg1));
|
|
511
502
|
return ret;
|
|
512
503
|
};
|
|
513
|
-
imports.wbg.
|
|
504
|
+
imports.wbg.__wbg_indexedDB_23c232e00a1e28ad = function() { return handleError(function (arg0) {
|
|
514
505
|
const ret = getObject(arg0).indexedDB;
|
|
515
506
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
516
507
|
}, arguments) };
|
|
517
|
-
imports.wbg.
|
|
508
|
+
imports.wbg.__wbg_indexedDB_54f01430b1e194e8 = function() { return handleError(function (arg0) {
|
|
518
509
|
const ret = getObject(arg0).indexedDB;
|
|
519
510
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
520
511
|
}, arguments) };
|
|
521
|
-
imports.wbg.
|
|
512
|
+
imports.wbg.__wbg_indexedDB_769a3833286f42f3 = function() { return handleError(function (arg0) {
|
|
522
513
|
const ret = getObject(arg0).indexedDB;
|
|
523
514
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
524
515
|
}, arguments) };
|
|
525
|
-
imports.wbg.
|
|
516
|
+
imports.wbg.__wbg_instanceof_DomException_d430cd4fb5284a83 = function(arg0) {
|
|
526
517
|
let result;
|
|
527
518
|
try {
|
|
528
519
|
result = getObject(arg0) instanceof DOMException;
|
|
@@ -532,7 +523,7 @@ window.wasm_bindgen = undefined;
|
|
|
532
523
|
const ret = result;
|
|
533
524
|
return ret;
|
|
534
525
|
};
|
|
535
|
-
imports.wbg.
|
|
526
|
+
imports.wbg.__wbg_instanceof_Error_3443650560328fa9 = function(arg0) {
|
|
536
527
|
let result;
|
|
537
528
|
try {
|
|
538
529
|
result = getObject(arg0) instanceof Error;
|
|
@@ -542,7 +533,7 @@ window.wasm_bindgen = undefined;
|
|
|
542
533
|
const ret = result;
|
|
543
534
|
return ret;
|
|
544
535
|
};
|
|
545
|
-
imports.wbg.
|
|
536
|
+
imports.wbg.__wbg_instanceof_IdbDatabase_f4e157055e32c479 = function(arg0) {
|
|
546
537
|
let result;
|
|
547
538
|
try {
|
|
548
539
|
result = getObject(arg0) instanceof IDBDatabase;
|
|
@@ -552,7 +543,7 @@ window.wasm_bindgen = undefined;
|
|
|
552
543
|
const ret = result;
|
|
553
544
|
return ret;
|
|
554
545
|
};
|
|
555
|
-
imports.wbg.
|
|
546
|
+
imports.wbg.__wbg_instanceof_IdbRequest_9000a361b4bf0dc6 = function(arg0) {
|
|
556
547
|
let result;
|
|
557
548
|
try {
|
|
558
549
|
result = getObject(arg0) instanceof IDBRequest;
|
|
@@ -562,7 +553,7 @@ window.wasm_bindgen = undefined;
|
|
|
562
553
|
const ret = result;
|
|
563
554
|
return ret;
|
|
564
555
|
};
|
|
565
|
-
imports.wbg.
|
|
556
|
+
imports.wbg.__wbg_instanceof_WorkerGlobalScope_9a3411db21c65a54 = function(arg0) {
|
|
566
557
|
let result;
|
|
567
558
|
try {
|
|
568
559
|
result = getObject(arg0) instanceof WorkerGlobalScope;
|
|
@@ -572,282 +563,282 @@ window.wasm_bindgen = undefined;
|
|
|
572
563
|
const ret = result;
|
|
573
564
|
return ret;
|
|
574
565
|
};
|
|
575
|
-
imports.wbg.
|
|
566
|
+
imports.wbg.__wbg_isArray_51fd9e6422c0a395 = function(arg0) {
|
|
576
567
|
const ret = Array.isArray(getObject(arg0));
|
|
577
568
|
return ret;
|
|
578
569
|
};
|
|
579
|
-
imports.wbg.
|
|
570
|
+
imports.wbg.__wbg_keys_d1ba01b4cb9a491e = function(arg0) {
|
|
580
571
|
const ret = getObject(arg0).keys();
|
|
581
572
|
return addHeapObject(ret);
|
|
582
573
|
};
|
|
583
|
-
imports.wbg.
|
|
574
|
+
imports.wbg.__wbg_length_1f83b8e5895c84aa = function(arg0) {
|
|
584
575
|
const ret = getObject(arg0).length;
|
|
585
576
|
return ret;
|
|
586
577
|
};
|
|
587
|
-
imports.wbg.
|
|
578
|
+
imports.wbg.__wbg_length_22ac23eaec9d8053 = function(arg0) {
|
|
588
579
|
const ret = getObject(arg0).length;
|
|
589
580
|
return ret;
|
|
590
581
|
};
|
|
591
|
-
imports.wbg.
|
|
582
|
+
imports.wbg.__wbg_length_d45040a40c570362 = function(arg0) {
|
|
592
583
|
const ret = getObject(arg0).length;
|
|
593
584
|
return ret;
|
|
594
585
|
};
|
|
595
|
-
imports.wbg.
|
|
586
|
+
imports.wbg.__wbg_lowerBound_13747835b262040c = function() { return handleError(function (arg0, arg1) {
|
|
596
587
|
const ret = IDBKeyRange.lowerBound(getObject(arg0), arg1 !== 0);
|
|
597
588
|
return addHeapObject(ret);
|
|
598
589
|
}, arguments) };
|
|
599
|
-
imports.wbg.
|
|
590
|
+
imports.wbg.__wbg_message_0305fa7903f4b3d9 = function(arg0) {
|
|
600
591
|
const ret = getObject(arg0).message;
|
|
601
592
|
return addHeapObject(ret);
|
|
602
593
|
};
|
|
603
|
-
imports.wbg.
|
|
594
|
+
imports.wbg.__wbg_message_a4e9a39ee8f92b17 = function(arg0, arg1) {
|
|
604
595
|
const ret = getObject(arg1).message;
|
|
605
596
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
606
597
|
const len1 = WASM_VECTOR_LEN;
|
|
607
598
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
608
599
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
609
600
|
};
|
|
610
|
-
imports.wbg.
|
|
601
|
+
imports.wbg.__wbg_name_9136863a055402ff = function(arg0, arg1) {
|
|
611
602
|
const ret = getObject(arg1).name;
|
|
612
603
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export, wasm.__wbindgen_export2);
|
|
613
604
|
const len1 = WASM_VECTOR_LEN;
|
|
614
605
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
615
606
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
616
607
|
};
|
|
617
|
-
imports.wbg.
|
|
608
|
+
imports.wbg.__wbg_navigator_11b7299bb7886507 = function(arg0) {
|
|
618
609
|
const ret = getObject(arg0).navigator;
|
|
619
610
|
return addHeapObject(ret);
|
|
620
611
|
};
|
|
621
|
-
imports.wbg.
|
|
612
|
+
imports.wbg.__wbg_new_0_23cedd11d9b40c9d = function() {
|
|
622
613
|
const ret = new Date();
|
|
623
614
|
return addHeapObject(ret);
|
|
624
615
|
};
|
|
625
|
-
imports.wbg.
|
|
626
|
-
const ret = new Set(getObject(arg0));
|
|
627
|
-
return addHeapObject(ret);
|
|
628
|
-
};
|
|
629
|
-
imports.wbg.__wbg_new_1acc0b6eea89d040 = function() {
|
|
616
|
+
imports.wbg.__wbg_new_1ba21ce319a06297 = function() {
|
|
630
617
|
const ret = new Object();
|
|
631
618
|
return addHeapObject(ret);
|
|
632
619
|
};
|
|
633
|
-
imports.wbg.
|
|
620
|
+
imports.wbg.__wbg_new_23eee00e990dac7f = function(arg0, arg1, arg2) {
|
|
634
621
|
const ret = new DataView(getObject(arg0), arg1 >>> 0, arg2 >>> 0);
|
|
635
622
|
return addHeapObject(ret);
|
|
636
623
|
};
|
|
637
|
-
imports.wbg.
|
|
638
|
-
const ret = new
|
|
624
|
+
imports.wbg.__wbg_new_25f239778d6112b9 = function() {
|
|
625
|
+
const ret = new Array();
|
|
626
|
+
return addHeapObject(ret);
|
|
627
|
+
};
|
|
628
|
+
imports.wbg.__wbg_new_746bb58304020083 = function(arg0) {
|
|
629
|
+
const ret = new Set(getObject(arg0));
|
|
639
630
|
return addHeapObject(ret);
|
|
640
631
|
};
|
|
641
|
-
imports.wbg.
|
|
632
|
+
imports.wbg.__wbg_new_b2db8aa2650f793a = function(arg0) {
|
|
642
633
|
const ret = new Date(getObject(arg0));
|
|
643
634
|
return addHeapObject(ret);
|
|
644
635
|
};
|
|
645
|
-
imports.wbg.
|
|
646
|
-
const ret = new
|
|
636
|
+
imports.wbg.__wbg_new_b546ae120718850e = function() {
|
|
637
|
+
const ret = new Map();
|
|
647
638
|
return addHeapObject(ret);
|
|
648
639
|
};
|
|
649
|
-
imports.wbg.
|
|
650
|
-
const ret = new
|
|
640
|
+
imports.wbg.__wbg_new_df1173567d5ff028 = function(arg0, arg1) {
|
|
641
|
+
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
651
642
|
return addHeapObject(ret);
|
|
652
643
|
};
|
|
653
|
-
imports.wbg.
|
|
644
|
+
imports.wbg.__wbg_new_from_slice_f9c22b9153b26992 = function(arg0, arg1) {
|
|
654
645
|
const ret = new Uint8Array(getArrayU8FromWasm0(arg0, arg1));
|
|
655
646
|
return addHeapObject(ret);
|
|
656
647
|
};
|
|
657
|
-
imports.wbg.
|
|
648
|
+
imports.wbg.__wbg_new_no_args_cb138f77cf6151ee = function(arg0, arg1) {
|
|
658
649
|
const ret = new Function(getStringFromWasm0(arg0, arg1));
|
|
659
650
|
return addHeapObject(ret);
|
|
660
651
|
};
|
|
661
|
-
imports.wbg.
|
|
652
|
+
imports.wbg.__wbg_new_with_length_aa5eaf41d35235e5 = function(arg0) {
|
|
662
653
|
const ret = new Uint8Array(arg0 >>> 0);
|
|
663
654
|
return addHeapObject(ret);
|
|
664
655
|
};
|
|
665
|
-
imports.wbg.
|
|
656
|
+
imports.wbg.__wbg_new_with_year_month_day_2ce3621d93185809 = function(arg0, arg1, arg2) {
|
|
666
657
|
const ret = new Date(arg0 >>> 0, arg1, arg2);
|
|
667
658
|
return addHeapObject(ret);
|
|
668
659
|
};
|
|
669
|
-
imports.wbg.
|
|
660
|
+
imports.wbg.__wbg_next_3cfe5c0fe2a4cc53 = function() { return handleError(function (arg0) {
|
|
670
661
|
const ret = getObject(arg0).next();
|
|
671
662
|
return addHeapObject(ret);
|
|
672
663
|
}, arguments) };
|
|
673
|
-
imports.wbg.
|
|
664
|
+
imports.wbg.__wbg_next_b34c09a202bf4424 = function() { return handleError(function (arg0) {
|
|
674
665
|
const ret = getObject(arg0).next();
|
|
675
666
|
return addHeapObject(ret);
|
|
676
667
|
}, arguments) };
|
|
677
|
-
imports.wbg.
|
|
668
|
+
imports.wbg.__wbg_objectStore_da9a077b8849dbe9 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
678
669
|
const ret = getObject(arg0).objectStore(getStringFromWasm0(arg1, arg2));
|
|
679
670
|
return addHeapObject(ret);
|
|
680
671
|
}, arguments) };
|
|
681
|
-
imports.wbg.
|
|
672
|
+
imports.wbg.__wbg_open_0d7b85f4c0a38ffe = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
682
673
|
const ret = getObject(arg0).open(getStringFromWasm0(arg1, arg2), arg3 >>> 0);
|
|
683
674
|
return addHeapObject(ret);
|
|
684
675
|
}, arguments) };
|
|
685
|
-
imports.wbg.
|
|
676
|
+
imports.wbg.__wbg_prototypesetcall_dfe9b766cdc1f1fd = function(arg0, arg1, arg2) {
|
|
686
677
|
Uint8Array.prototype.set.call(getArrayU8FromWasm0(arg0, arg1), getObject(arg2));
|
|
687
678
|
};
|
|
688
|
-
imports.wbg.
|
|
679
|
+
imports.wbg.__wbg_push_7d9be8f38fc13975 = function(arg0, arg1) {
|
|
689
680
|
const ret = getObject(arg0).push(getObject(arg1));
|
|
690
681
|
return ret;
|
|
691
682
|
};
|
|
692
|
-
imports.wbg.
|
|
683
|
+
imports.wbg.__wbg_put_d3ad5a2a0698e185 = function() { return handleError(function (arg0, arg1) {
|
|
693
684
|
const ret = getObject(arg0).put(getObject(arg1));
|
|
694
685
|
return addHeapObject(ret);
|
|
695
686
|
}, arguments) };
|
|
696
|
-
imports.wbg.
|
|
687
|
+
imports.wbg.__wbg_queueMicrotask_9b549dfce8865860 = function(arg0) {
|
|
697
688
|
const ret = getObject(arg0).queueMicrotask;
|
|
698
689
|
return addHeapObject(ret);
|
|
699
690
|
};
|
|
700
|
-
imports.wbg.
|
|
691
|
+
imports.wbg.__wbg_queueMicrotask_fca69f5bfad613a5 = function(arg0) {
|
|
701
692
|
queueMicrotask(getObject(arg0));
|
|
702
693
|
};
|
|
703
|
-
imports.wbg.
|
|
694
|
+
imports.wbg.__wbg_random_cc1f9237d866d212 = function() {
|
|
704
695
|
const ret = Math.random();
|
|
705
696
|
return ret;
|
|
706
697
|
};
|
|
707
|
-
imports.wbg.
|
|
708
|
-
const ret = getObject(arg0).read(
|
|
698
|
+
imports.wbg.__wbg_read_0063be96fda4ddbb = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
699
|
+
const ret = getObject(arg0).read(getArrayU8FromWasm0(arg1, arg2), getObject(arg3));
|
|
709
700
|
return ret;
|
|
710
701
|
}, arguments) };
|
|
711
|
-
imports.wbg.
|
|
712
|
-
const ret = getObject(arg0).read(
|
|
702
|
+
imports.wbg.__wbg_read_6d42da91294142f6 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
703
|
+
const ret = getObject(arg0).read(getObject(arg1), getObject(arg2));
|
|
713
704
|
return ret;
|
|
714
705
|
}, arguments) };
|
|
715
|
-
imports.wbg.
|
|
706
|
+
imports.wbg.__wbg_readyState_e534bc496011c2fd = function(arg0) {
|
|
716
707
|
const ret = getObject(arg0).readyState;
|
|
717
708
|
return (__wbindgen_enum_IdbRequestReadyState.indexOf(ret) + 1 || 3) - 1;
|
|
718
709
|
};
|
|
719
|
-
imports.wbg.
|
|
710
|
+
imports.wbg.__wbg_resolve_fd5bfbaa4ce36e1e = function(arg0) {
|
|
720
711
|
const ret = Promise.resolve(getObject(arg0));
|
|
721
712
|
return addHeapObject(ret);
|
|
722
713
|
};
|
|
723
|
-
imports.wbg.
|
|
714
|
+
imports.wbg.__wbg_result_084f962aedb54250 = function() { return handleError(function (arg0) {
|
|
724
715
|
const ret = getObject(arg0).result;
|
|
725
716
|
return addHeapObject(ret);
|
|
726
717
|
}, arguments) };
|
|
727
|
-
imports.wbg.
|
|
718
|
+
imports.wbg.__wbg_setUint32_6ee364ad2096f0ed = function(arg0, arg1, arg2) {
|
|
728
719
|
getObject(arg0).setUint32(arg1 >>> 0, arg2 >>> 0);
|
|
729
720
|
};
|
|
730
|
-
imports.wbg.
|
|
731
|
-
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
|
|
732
|
-
return addHeapObject(ret);
|
|
733
|
-
};
|
|
734
|
-
imports.wbg.__wbg_set_9e6516df7b7d0f19 = function(arg0, arg1, arg2) {
|
|
721
|
+
imports.wbg.__wbg_set_169e13b608078b7b = function(arg0, arg1, arg2) {
|
|
735
722
|
getObject(arg0).set(getArrayU8FromWasm0(arg1, arg2));
|
|
736
723
|
};
|
|
737
|
-
imports.wbg.
|
|
738
|
-
getObject(arg0).at = arg1;
|
|
739
|
-
};
|
|
740
|
-
imports.wbg.__wbg_set_c2abbebe8b9ebee1 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
724
|
+
imports.wbg.__wbg_set_781438a03c0c3c81 = function() { return handleError(function (arg0, arg1, arg2) {
|
|
741
725
|
const ret = Reflect.set(getObject(arg0), getObject(arg1), getObject(arg2));
|
|
742
726
|
return ret;
|
|
743
727
|
}, arguments) };
|
|
744
|
-
imports.wbg.
|
|
728
|
+
imports.wbg.__wbg_set_at_8ed309b95b9da8e8 = function(arg0, arg1) {
|
|
729
|
+
getObject(arg0).at = arg1;
|
|
730
|
+
};
|
|
731
|
+
imports.wbg.__wbg_set_create_a7fa115dfd714480 = function(arg0, arg1) {
|
|
745
732
|
getObject(arg0).create = arg1 !== 0;
|
|
746
733
|
};
|
|
747
|
-
imports.wbg.
|
|
734
|
+
imports.wbg.__wbg_set_create_c87a4965b38c1564 = function(arg0, arg1) {
|
|
748
735
|
getObject(arg0).create = arg1 !== 0;
|
|
749
736
|
};
|
|
750
|
-
imports.wbg.
|
|
737
|
+
imports.wbg.__wbg_set_efaaf145b9377369 = function(arg0, arg1, arg2) {
|
|
738
|
+
const ret = getObject(arg0).set(getObject(arg1), getObject(arg2));
|
|
739
|
+
return addHeapObject(ret);
|
|
740
|
+
};
|
|
741
|
+
imports.wbg.__wbg_set_key_path_89e32059ab7dfaca = function(arg0, arg1) {
|
|
751
742
|
getObject(arg0).keyPath = getObject(arg1);
|
|
752
743
|
};
|
|
753
|
-
imports.wbg.
|
|
744
|
+
imports.wbg.__wbg_set_onabort_e3f60791db69f136 = function(arg0, arg1) {
|
|
754
745
|
getObject(arg0).onabort = getObject(arg1);
|
|
755
746
|
};
|
|
756
|
-
imports.wbg.
|
|
747
|
+
imports.wbg.__wbg_set_oncomplete_e4a04a9244826e8b = function(arg0, arg1) {
|
|
757
748
|
getObject(arg0).oncomplete = getObject(arg1);
|
|
758
749
|
};
|
|
759
|
-
imports.wbg.
|
|
750
|
+
imports.wbg.__wbg_set_onerror_08fecec3bdc9d24d = function(arg0, arg1) {
|
|
760
751
|
getObject(arg0).onerror = getObject(arg1);
|
|
761
752
|
};
|
|
762
|
-
imports.wbg.
|
|
753
|
+
imports.wbg.__wbg_set_onerror_e6509e1998f7da91 = function(arg0, arg1) {
|
|
763
754
|
getObject(arg0).onerror = getObject(arg1);
|
|
764
755
|
};
|
|
765
|
-
imports.wbg.
|
|
756
|
+
imports.wbg.__wbg_set_onsuccess_94332a00452de699 = function(arg0, arg1) {
|
|
766
757
|
getObject(arg0).onsuccess = getObject(arg1);
|
|
767
758
|
};
|
|
768
|
-
imports.wbg.
|
|
759
|
+
imports.wbg.__wbg_set_onupgradeneeded_3dc6e233a6d13fe2 = function(arg0, arg1) {
|
|
769
760
|
getObject(arg0).onupgradeneeded = getObject(arg1);
|
|
770
761
|
};
|
|
771
|
-
imports.wbg.
|
|
762
|
+
imports.wbg.__wbg_size_aeb57b993c620133 = function(arg0) {
|
|
772
763
|
const ret = getObject(arg0).size;
|
|
773
764
|
return ret;
|
|
774
765
|
};
|
|
775
|
-
imports.wbg.
|
|
766
|
+
imports.wbg.__wbg_slice_3ab25105e7277633 = function(arg0, arg1, arg2) {
|
|
776
767
|
const ret = getObject(arg0).slice(arg1 >>> 0, arg2 >>> 0);
|
|
777
768
|
return addHeapObject(ret);
|
|
778
769
|
};
|
|
779
|
-
imports.wbg.
|
|
770
|
+
imports.wbg.__wbg_static_accessor_GLOBAL_769e6b65d6557335 = function() {
|
|
780
771
|
const ret = typeof global === 'undefined' ? null : global;
|
|
781
772
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
782
773
|
};
|
|
783
|
-
imports.wbg.
|
|
774
|
+
imports.wbg.__wbg_static_accessor_GLOBAL_THIS_60cf02db4de8e1c1 = function() {
|
|
784
775
|
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
|
785
776
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
786
777
|
};
|
|
787
|
-
imports.wbg.
|
|
778
|
+
imports.wbg.__wbg_static_accessor_SELF_08f5a74c69739274 = function() {
|
|
788
779
|
const ret = typeof self === 'undefined' ? null : self;
|
|
789
780
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
790
781
|
};
|
|
791
|
-
imports.wbg.
|
|
782
|
+
imports.wbg.__wbg_static_accessor_WINDOW_a8924b26aa92d024 = function() {
|
|
792
783
|
const ret = typeof window === 'undefined' ? null : window;
|
|
793
784
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
794
785
|
};
|
|
795
|
-
imports.wbg.
|
|
786
|
+
imports.wbg.__wbg_storage_7db24ea4f9f4aa79 = function(arg0) {
|
|
796
787
|
const ret = getObject(arg0).storage;
|
|
797
788
|
return addHeapObject(ret);
|
|
798
789
|
};
|
|
799
|
-
imports.wbg.
|
|
790
|
+
imports.wbg.__wbg_subarray_845f2f5bce7d061a = function(arg0, arg1, arg2) {
|
|
800
791
|
const ret = getObject(arg0).subarray(arg1 >>> 0, arg2 >>> 0);
|
|
801
792
|
return addHeapObject(ret);
|
|
802
793
|
};
|
|
803
|
-
imports.wbg.
|
|
794
|
+
imports.wbg.__wbg_target_0e3e05a6263c37a0 = function(arg0) {
|
|
804
795
|
const ret = getObject(arg0).target;
|
|
805
796
|
return isLikeNone(ret) ? 0 : addHeapObject(ret);
|
|
806
797
|
};
|
|
807
|
-
imports.wbg.
|
|
808
|
-
const ret = getObject(arg0).then(getObject(arg1));
|
|
798
|
+
imports.wbg.__wbg_then_429f7caf1026411d = function(arg0, arg1, arg2) {
|
|
799
|
+
const ret = getObject(arg0).then(getObject(arg1), getObject(arg2));
|
|
809
800
|
return addHeapObject(ret);
|
|
810
801
|
};
|
|
811
|
-
imports.wbg.
|
|
812
|
-
const ret = getObject(arg0).then(getObject(arg1)
|
|
802
|
+
imports.wbg.__wbg_then_4f95312d68691235 = function(arg0, arg1) {
|
|
803
|
+
const ret = getObject(arg0).then(getObject(arg1));
|
|
813
804
|
return addHeapObject(ret);
|
|
814
805
|
};
|
|
815
|
-
imports.wbg.
|
|
806
|
+
imports.wbg.__wbg_toString_42914f2ae774fcf8 = function() { return handleError(function (arg0, arg1) {
|
|
816
807
|
const ret = getObject(arg0).toString(arg1);
|
|
817
808
|
return addHeapObject(ret);
|
|
818
809
|
}, arguments) };
|
|
819
|
-
imports.wbg.
|
|
810
|
+
imports.wbg.__wbg_toString_f07112df359c997f = function(arg0) {
|
|
820
811
|
const ret = getObject(arg0).toString();
|
|
821
812
|
return addHeapObject(ret);
|
|
822
813
|
};
|
|
823
|
-
imports.wbg.
|
|
824
|
-
const ret = getObject(arg0).transaction;
|
|
825
|
-
return addHeapObject(ret);
|
|
826
|
-
};
|
|
827
|
-
imports.wbg.__wbg_transaction_253405fd3a30ed91 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
814
|
+
imports.wbg.__wbg_transaction_790ec170b8fbc74b = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
828
815
|
const ret = getObject(arg0).transaction(getStringFromWasm0(arg1, arg2), __wbindgen_enum_IdbTransactionMode[arg3]);
|
|
829
816
|
return addHeapObject(ret);
|
|
830
817
|
}, arguments) };
|
|
831
|
-
imports.wbg.
|
|
818
|
+
imports.wbg.__wbg_transaction_94648249df85f2b3 = function(arg0) {
|
|
819
|
+
const ret = getObject(arg0).transaction;
|
|
820
|
+
return addHeapObject(ret);
|
|
821
|
+
};
|
|
822
|
+
imports.wbg.__wbg_truncate_07b2629f3dbd9443 = function() { return handleError(function (arg0, arg1) {
|
|
832
823
|
getObject(arg0).truncate(arg1);
|
|
833
824
|
}, arguments) };
|
|
834
|
-
imports.wbg.
|
|
825
|
+
imports.wbg.__wbg_truncate_9e72c83b9fc1d156 = function() { return handleError(function (arg0, arg1) {
|
|
835
826
|
getObject(arg0).truncate(arg1 >>> 0);
|
|
836
827
|
}, arguments) };
|
|
837
|
-
imports.wbg.
|
|
828
|
+
imports.wbg.__wbg_upperBound_91858b3be3dd9f34 = function() { return handleError(function (arg0, arg1) {
|
|
838
829
|
const ret = IDBKeyRange.upperBound(getObject(arg0), arg1 !== 0);
|
|
839
830
|
return addHeapObject(ret);
|
|
840
831
|
}, arguments) };
|
|
841
|
-
imports.wbg.
|
|
832
|
+
imports.wbg.__wbg_value_57b7b035e117f7ee = function(arg0) {
|
|
842
833
|
const ret = getObject(arg0).value;
|
|
843
834
|
return addHeapObject(ret);
|
|
844
835
|
};
|
|
845
|
-
imports.wbg.
|
|
846
|
-
const ret = getObject(arg0).write(
|
|
836
|
+
imports.wbg.__wbg_write_c21838a97defef4b = function() { return handleError(function (arg0, arg1, arg2) {
|
|
837
|
+
const ret = getObject(arg0).write(getObject(arg1), getObject(arg2));
|
|
847
838
|
return ret;
|
|
848
839
|
}, arguments) };
|
|
849
|
-
imports.wbg.
|
|
850
|
-
const ret = getObject(arg0).write(
|
|
840
|
+
imports.wbg.__wbg_write_f87f327ea3e1dd4b = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
|
841
|
+
const ret = getObject(arg0).write(getArrayU8FromWasm0(arg1, arg2), getObject(arg3));
|
|
851
842
|
return ret;
|
|
852
843
|
}, arguments) };
|
|
853
844
|
imports.wbg.__wbindgen_cast_2241b6af4c4b2941 = function(arg0, arg1) {
|
|
@@ -857,7 +848,7 @@ window.wasm_bindgen = undefined;
|
|
|
857
848
|
};
|
|
858
849
|
imports.wbg.__wbindgen_cast_79f5ab07c2ca6624 = function(arg0, arg1) {
|
|
859
850
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 28, function: Function { arguments: [NamedExternref("IDBVersionChangeEvent")], shim_idx: 60, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
860
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
851
|
+
const ret = makeMutClosure(arg0, arg1, wasm.__wasm_bindgen_func_elem_592, __wasm_bindgen_func_elem_1526);
|
|
861
852
|
return addHeapObject(ret);
|
|
862
853
|
};
|
|
863
854
|
imports.wbg.__wbindgen_cast_d6cd19b81560fd6e = function(arg0) {
|
|
@@ -867,17 +858,17 @@ window.wasm_bindgen = undefined;
|
|
|
867
858
|
};
|
|
868
859
|
imports.wbg.__wbindgen_cast_daa0866475dd5073 = function(arg0, arg1) {
|
|
869
860
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 28, function: Function { arguments: [], shim_idx: 31, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
870
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
861
|
+
const ret = makeMutClosure(arg0, arg1, wasm.__wasm_bindgen_func_elem_592, __wasm_bindgen_func_elem_595);
|
|
871
862
|
return addHeapObject(ret);
|
|
872
863
|
};
|
|
873
864
|
imports.wbg.__wbindgen_cast_ef6ace84b3bbb144 = function(arg0, arg1) {
|
|
874
865
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 28, function: Function { arguments: [NamedExternref("Event")], shim_idx: 29, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
875
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
866
|
+
const ret = makeMutClosure(arg0, arg1, wasm.__wasm_bindgen_func_elem_592, __wasm_bindgen_func_elem_593);
|
|
876
867
|
return addHeapObject(ret);
|
|
877
868
|
};
|
|
878
869
|
imports.wbg.__wbindgen_cast_fc3da82b7ff1aaaf = function(arg0, arg1) {
|
|
879
870
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 28, function: Function { arguments: [Externref], shim_idx: 29, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
880
|
-
const ret = makeMutClosure(arg0, arg1, wasm.
|
|
871
|
+
const ret = makeMutClosure(arg0, arg1, wasm.__wasm_bindgen_func_elem_592, __wasm_bindgen_func_elem_593);
|
|
881
872
|
return addHeapObject(ret);
|
|
882
873
|
};
|
|
883
874
|
imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
|
|
@@ -915,13 +906,10 @@ window.wasm_bindgen = undefined;
|
|
|
915
906
|
}
|
|
916
907
|
|
|
917
908
|
const imports = __wbg_get_imports();
|
|
918
|
-
|
|
919
909
|
if (!(module instanceof WebAssembly.Module)) {
|
|
920
910
|
module = new WebAssembly.Module(module);
|
|
921
911
|
}
|
|
922
|
-
|
|
923
912
|
const instance = new WebAssembly.Instance(module, imports);
|
|
924
|
-
|
|
925
913
|
return __wbg_finalize_init(instance, module);
|
|
926
914
|
}
|
|
927
915
|
|
|
@@ -952,5 +940,4 @@ window.wasm_bindgen = undefined;
|
|
|
952
940
|
}
|
|
953
941
|
|
|
954
942
|
window.wasm_bindgen = Object.assign(__wbg_init, { initSync }, __exports);
|
|
955
|
-
|
|
956
943
|
})();
|
package/isar.wasm
CHANGED
|
Binary file
|