@css-inline/css-inline-wasm 0.13.1 → 0.13.2
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/index.js +24 -23
- package/index.min.js +2 -2
- package/index.mjs +24 -23
- package/index_bg.wasm +0 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -33,6 +33,18 @@ heap.push(void 0, null, true, false);
|
|
|
33
33
|
function getObject(idx) {
|
|
34
34
|
return heap[idx];
|
|
35
35
|
}
|
|
36
|
+
var heap_next = heap.length;
|
|
37
|
+
function dropObject(idx) {
|
|
38
|
+
if (idx < 132)
|
|
39
|
+
return;
|
|
40
|
+
heap[idx] = heap_next;
|
|
41
|
+
heap_next = idx;
|
|
42
|
+
}
|
|
43
|
+
function takeObject(idx) {
|
|
44
|
+
const ret = getObject(idx);
|
|
45
|
+
dropObject(idx);
|
|
46
|
+
return ret;
|
|
47
|
+
}
|
|
36
48
|
var WASM_VECTOR_LEN = 0;
|
|
37
49
|
var cachedUint8Memory0 = null;
|
|
38
50
|
function getUint8Memory0() {
|
|
@@ -80,6 +92,7 @@ function passStringToWasm0(arg, malloc, realloc) {
|
|
|
80
92
|
const view = getUint8Memory0().subarray(ptr + offset, ptr + len);
|
|
81
93
|
const ret = encodeString(arg, view);
|
|
82
94
|
offset += ret.written;
|
|
95
|
+
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
|
83
96
|
}
|
|
84
97
|
WASM_VECTOR_LEN = offset;
|
|
85
98
|
return ptr;
|
|
@@ -104,7 +117,6 @@ function getStringFromWasm0(ptr, len) {
|
|
|
104
117
|
ptr = ptr >>> 0;
|
|
105
118
|
return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
|
|
106
119
|
}
|
|
107
|
-
var heap_next = heap.length;
|
|
108
120
|
function addHeapObject(obj) {
|
|
109
121
|
if (heap_next === heap.length)
|
|
110
122
|
heap.push(heap.length + 1);
|
|
@@ -113,17 +125,6 @@ function addHeapObject(obj) {
|
|
|
113
125
|
heap[idx] = obj;
|
|
114
126
|
return idx;
|
|
115
127
|
}
|
|
116
|
-
function dropObject(idx) {
|
|
117
|
-
if (idx < 132)
|
|
118
|
-
return;
|
|
119
|
-
heap[idx] = heap_next;
|
|
120
|
-
heap_next = idx;
|
|
121
|
-
}
|
|
122
|
-
function takeObject(idx) {
|
|
123
|
-
const ret = getObject(idx);
|
|
124
|
-
dropObject(idx);
|
|
125
|
-
return ret;
|
|
126
|
-
}
|
|
127
128
|
var cachedFloat64Memory0 = null;
|
|
128
129
|
function getFloat64Memory0() {
|
|
129
130
|
if (cachedFloat64Memory0 === null || cachedFloat64Memory0.byteLength === 0) {
|
|
@@ -261,6 +262,9 @@ function __wbg_get_imports() {
|
|
|
261
262
|
const ret = getObject(arg0) === void 0;
|
|
262
263
|
return ret;
|
|
263
264
|
};
|
|
265
|
+
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
|
|
266
|
+
takeObject(arg0);
|
|
267
|
+
};
|
|
264
268
|
imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
|
|
265
269
|
const obj = getObject(arg1);
|
|
266
270
|
const ret = typeof obj === "string" ? obj : void 0;
|
|
@@ -287,7 +291,7 @@ function __wbg_get_imports() {
|
|
|
287
291
|
const ret = getObject(arg0);
|
|
288
292
|
return addHeapObject(ret);
|
|
289
293
|
};
|
|
290
|
-
imports.wbg.
|
|
294
|
+
imports.wbg.__wbg_getwithrefkey_edc2c8960f0f1191 = function(arg0, arg1) {
|
|
291
295
|
const ret = getObject(arg0)[getObject(arg1)];
|
|
292
296
|
return addHeapObject(ret);
|
|
293
297
|
};
|
|
@@ -295,7 +299,7 @@ function __wbg_get_imports() {
|
|
|
295
299
|
const ret = getObject(arg0) in getObject(arg1);
|
|
296
300
|
return ret;
|
|
297
301
|
};
|
|
298
|
-
imports.wbg.
|
|
302
|
+
imports.wbg.__wbg_isSafeInteger_f7b04ef02296c4d2 = function(arg0) {
|
|
299
303
|
const ret = Number.isSafeInteger(getObject(arg0));
|
|
300
304
|
return ret;
|
|
301
305
|
};
|
|
@@ -303,7 +307,7 @@ function __wbg_get_imports() {
|
|
|
303
307
|
const ret = +getObject(arg0);
|
|
304
308
|
return ret;
|
|
305
309
|
};
|
|
306
|
-
imports.wbg.
|
|
310
|
+
imports.wbg.__wbg_length_c20a40f15020d68a = function(arg0) {
|
|
307
311
|
const ret = getObject(arg0).length;
|
|
308
312
|
return ret;
|
|
309
313
|
};
|
|
@@ -311,20 +315,17 @@ function __wbg_get_imports() {
|
|
|
311
315
|
const ret = wasm.memory;
|
|
312
316
|
return addHeapObject(ret);
|
|
313
317
|
};
|
|
314
|
-
imports.wbg.
|
|
318
|
+
imports.wbg.__wbg_buffer_12d079cc21e14bdb = function(arg0) {
|
|
315
319
|
const ret = getObject(arg0).buffer;
|
|
316
320
|
return addHeapObject(ret);
|
|
317
321
|
};
|
|
318
|
-
imports.wbg.
|
|
322
|
+
imports.wbg.__wbg_new_63b92bc8671ed464 = function(arg0) {
|
|
319
323
|
const ret = new Uint8Array(getObject(arg0));
|
|
320
324
|
return addHeapObject(ret);
|
|
321
325
|
};
|
|
322
|
-
imports.wbg.
|
|
326
|
+
imports.wbg.__wbg_set_a47bac70306a19a7 = function(arg0, arg1, arg2) {
|
|
323
327
|
getObject(arg0).set(getObject(arg1), arg2 >>> 0);
|
|
324
328
|
};
|
|
325
|
-
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
|
|
326
|
-
takeObject(arg0);
|
|
327
|
-
};
|
|
328
329
|
imports.wbg.__wbindgen_error_new = function(arg0, arg1) {
|
|
329
330
|
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
330
331
|
return addHeapObject(ret);
|
|
@@ -339,7 +340,7 @@ function __wbg_get_imports() {
|
|
|
339
340
|
getFloat64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? 0 : ret;
|
|
340
341
|
getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret);
|
|
341
342
|
};
|
|
342
|
-
imports.wbg.
|
|
343
|
+
imports.wbg.__wbg_instanceof_Uint8Array_2b3bbecd033d19f6 = function(arg0) {
|
|
343
344
|
let result;
|
|
344
345
|
try {
|
|
345
346
|
result = getObject(arg0) instanceof Uint8Array;
|
|
@@ -349,7 +350,7 @@ function __wbg_get_imports() {
|
|
|
349
350
|
const ret = result;
|
|
350
351
|
return ret;
|
|
351
352
|
};
|
|
352
|
-
imports.wbg.
|
|
353
|
+
imports.wbg.__wbg_instanceof_ArrayBuffer_836825be07d4c9d2 = function(arg0) {
|
|
353
354
|
let result;
|
|
354
355
|
try {
|
|
355
356
|
result = getObject(arg0) instanceof ArrayBuffer;
|
package/index.min.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var cssInline=(()=>{var S=Object.defineProperty;var $=Object.getOwnPropertyDescriptor;var D=Object.getOwnPropertyNames;var N=Object.prototype.hasOwnProperty;var B=(e
|
|
2
|
-
${
|
|
1
|
+
"use strict";var cssInline=(()=>{var S=Object.defineProperty;var $=Object.getOwnPropertyDescriptor;var D=Object.getOwnPropertyNames;var N=Object.prototype.hasOwnProperty;var B=(n,e)=>{for(var t in e)S(n,t,{get:e[t],enumerable:!0})},q=(n,e,t,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of D(e))!N.call(n,i)&&i!==t&&S(n,i,{get:()=>e[i],enumerable:!(r=$(e,i))||r.enumerable});return n};var z=n=>q(S({},"__esModule",{value:!0}),n);var Y={};B(Y,{initWasm:()=>K,inline:()=>Q,version:()=>X});var c,b=new Array(128).fill(void 0);b.push(void 0,null,!0,!1);function o(n){return b[n]}var m=b.length;function C(n){n<132||(b[n]=m,m=n)}function M(n){let e=o(n);return C(n),e}var h=0,g=null;function A(){return(g===null||g.byteLength===0)&&(g=new Uint8Array(c.memory.buffer)),g}var I=typeof TextEncoder<"u"?new TextEncoder("utf-8"):{encode:()=>{throw Error("TextEncoder not available")}},P=typeof I.encodeInto=="function"?function(n,e){return I.encodeInto(n,e)}:function(n,e){let t=I.encode(n);return e.set(t),{read:n.length,written:t.length}};function W(n,e,t){if(t===void 0){let _=I.encode(n),a=e(_.length,1)>>>0;return A().subarray(a,a+_.length).set(_),h=_.length,a}let r=n.length,i=e(r,1)>>>0,f=A(),s=0;for(;s<r;s++){let _=n.charCodeAt(s);if(_>127)break;f[i+s]=_}if(s!==r){s!==0&&(n=n.slice(s)),i=t(i,r,r=s+n.length*3,1)>>>0;let _=A().subarray(i+s,i+r),a=P(n,_);s+=a.written,i=t(i,r,s,1)>>>0}return h=s,i}function j(n){return n==null}var w=null;function u(){return(w===null||w.byteLength===0)&&(w=new Int32Array(c.memory.buffer)),w}var O=typeof TextDecoder<"u"?new TextDecoder("utf-8",{ignoreBOM:!0,fatal:!0}):{decode:()=>{throw Error("TextDecoder not available")}};typeof TextDecoder<"u"&&O.decode();function p(n,e){return n=n>>>0,O.decode(A().subarray(n,n+e))}function l(n){m===b.length&&b.push(b.length+1);let e=m;return m=b[e],b[e]=n,e}var y=null;function H(){return(y===null||y.byteLength===0)&&(y=new Float64Array(c.memory.buffer)),y}function E(n){let e=typeof n;if(e=="number"||e=="boolean"||n==null)return`${n}`;if(e=="string")return`"${n}"`;if(e=="symbol"){let i=n.description;return i==null?"Symbol":`Symbol(${i})`}if(e=="function"){let i=n.name;return typeof i=="string"&&i.length>0?`Function(${i})`:"Function"}if(Array.isArray(n)){let i=n.length,f="[";i>0&&(f+=E(n[0]));for(let s=1;s<i;s++)f+=", "+E(n[s]);return f+="]",f}let t=/\[object ([^\]]+)\]/.exec(toString.call(n)),r;if(t.length>1)r=t[1];else return toString.call(n);if(r=="Object")try{return"Object("+JSON.stringify(n)+")"}catch{return"Object"}return n instanceof Error?`${n.name}: ${n.message}
|
|
2
|
+
${n.stack}`:r}function T(n,e){let t,r;try{let d=c.__wbindgen_add_to_stack_pointer(-16),L=W(n,c.__wbindgen_malloc,c.__wbindgen_realloc),R=h;c.inline(d,L,R,l(e));var i=u()[d/4+0],f=u()[d/4+1],s=u()[d/4+2],_=u()[d/4+3],a=i,x=f;if(_)throw a=0,x=0,M(s);return t=a,r=x,p(a,x)}finally{c.__wbindgen_add_to_stack_pointer(16),c.__wbindgen_free(t,r,1)}}function k(){let n,e;try{let i=c.__wbindgen_add_to_stack_pointer(-16);c.version(i);var t=u()[i/4+0],r=u()[i/4+1];return n=t,e=r,p(t,r)}finally{c.__wbindgen_add_to_stack_pointer(16),c.__wbindgen_free(n,e,1)}}async function J(n,e){if(typeof Response=="function"&&n instanceof Response){if(typeof WebAssembly.instantiateStreaming=="function")try{return await WebAssembly.instantiateStreaming(n,e)}catch(r){if(n.headers.get("Content-Type")!="application/wasm")console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n",r);else throw r}let t=await n.arrayBuffer();return await WebAssembly.instantiate(t,e)}else{let t=await WebAssembly.instantiate(n,e);return t instanceof WebAssembly.Instance?{instance:t,module:n}:t}}function V(){let n={};return n.wbg={},n.wbg.__wbindgen_is_undefined=function(e){return o(e)===void 0},n.wbg.__wbindgen_object_drop_ref=function(e){M(e)},n.wbg.__wbindgen_string_get=function(e,t){let r=o(t),i=typeof r=="string"?r:void 0;var f=j(i)?0:W(i,c.__wbindgen_malloc,c.__wbindgen_realloc),s=h;u()[e/4+1]=s,u()[e/4+0]=f},n.wbg.__wbindgen_boolean_get=function(e){let t=o(e);return typeof t=="boolean"?t?1:0:2},n.wbg.__wbindgen_is_object=function(e){let t=o(e);return typeof t=="object"&&t!==null},n.wbg.__wbindgen_string_new=function(e,t){let r=p(e,t);return l(r)},n.wbg.__wbindgen_object_clone_ref=function(e){let t=o(e);return l(t)},n.wbg.__wbg_getwithrefkey_edc2c8960f0f1191=function(e,t){let r=o(e)[o(t)];return l(r)},n.wbg.__wbindgen_in=function(e,t){return o(e)in o(t)},n.wbg.__wbg_isSafeInteger_f7b04ef02296c4d2=function(e){return Number.isSafeInteger(o(e))},n.wbg.__wbindgen_as_number=function(e){return+o(e)},n.wbg.__wbg_length_c20a40f15020d68a=function(e){return o(e).length},n.wbg.__wbindgen_memory=function(){let e=c.memory;return l(e)},n.wbg.__wbg_buffer_12d079cc21e14bdb=function(e){let t=o(e).buffer;return l(t)},n.wbg.__wbg_new_63b92bc8671ed464=function(e){let t=new Uint8Array(o(e));return l(t)},n.wbg.__wbg_set_a47bac70306a19a7=function(e,t,r){o(e).set(o(t),r>>>0)},n.wbg.__wbindgen_error_new=function(e,t){let r=new Error(p(e,t));return l(r)},n.wbg.__wbindgen_jsval_loose_eq=function(e,t){return o(e)==o(t)},n.wbg.__wbindgen_number_get=function(e,t){let r=o(t),i=typeof r=="number"?r:void 0;H()[e/8+1]=j(i)?0:i,u()[e/4+0]=!j(i)},n.wbg.__wbg_instanceof_Uint8Array_2b3bbecd033d19f6=function(e){let t;try{t=o(e)instanceof Uint8Array}catch{t=!1}return t},n.wbg.__wbg_instanceof_ArrayBuffer_836825be07d4c9d2=function(e){let t;try{t=o(e)instanceof ArrayBuffer}catch{t=!1}return t},n.wbg.__wbindgen_debug_string=function(e,t){let r=E(o(t)),i=W(r,c.__wbindgen_malloc,c.__wbindgen_realloc),f=h;u()[e/4+1]=f,u()[e/4+0]=i},n.wbg.__wbindgen_throw=function(e,t){throw new Error(p(e,t))},n}function G(n,e){return c=n.exports,U.__wbindgen_wasm_module=e,y=null,w=null,g=null,c}async function U(n){if(c!==void 0)return c;typeof n>"u"&&(n=new URL("index_bg.wasm",void 0));let e=V();(typeof n=="string"||typeof Request=="function"&&n instanceof Request||typeof URL=="function"&&n instanceof URL)&&(n=fetch(n));let{instance:t,module:r}=await J(await n,e);return G(t,r)}var v=U;var F=!1,K=async n=>{if(F)throw new Error("Already initialized. The `initWasm()` function can be used only once.");await v(await n),F=!0};function Q(n,e){return T(n,e)}function X(){return k()}return z(Y);})();
|
package/index.mjs
CHANGED
|
@@ -5,6 +5,18 @@ heap.push(void 0, null, true, false);
|
|
|
5
5
|
function getObject(idx) {
|
|
6
6
|
return heap[idx];
|
|
7
7
|
}
|
|
8
|
+
var heap_next = heap.length;
|
|
9
|
+
function dropObject(idx) {
|
|
10
|
+
if (idx < 132)
|
|
11
|
+
return;
|
|
12
|
+
heap[idx] = heap_next;
|
|
13
|
+
heap_next = idx;
|
|
14
|
+
}
|
|
15
|
+
function takeObject(idx) {
|
|
16
|
+
const ret = getObject(idx);
|
|
17
|
+
dropObject(idx);
|
|
18
|
+
return ret;
|
|
19
|
+
}
|
|
8
20
|
var WASM_VECTOR_LEN = 0;
|
|
9
21
|
var cachedUint8Memory0 = null;
|
|
10
22
|
function getUint8Memory0() {
|
|
@@ -52,6 +64,7 @@ function passStringToWasm0(arg, malloc, realloc) {
|
|
|
52
64
|
const view = getUint8Memory0().subarray(ptr + offset, ptr + len);
|
|
53
65
|
const ret = encodeString(arg, view);
|
|
54
66
|
offset += ret.written;
|
|
67
|
+
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
|
55
68
|
}
|
|
56
69
|
WASM_VECTOR_LEN = offset;
|
|
57
70
|
return ptr;
|
|
@@ -76,7 +89,6 @@ function getStringFromWasm0(ptr, len) {
|
|
|
76
89
|
ptr = ptr >>> 0;
|
|
77
90
|
return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
|
|
78
91
|
}
|
|
79
|
-
var heap_next = heap.length;
|
|
80
92
|
function addHeapObject(obj) {
|
|
81
93
|
if (heap_next === heap.length)
|
|
82
94
|
heap.push(heap.length + 1);
|
|
@@ -85,17 +97,6 @@ function addHeapObject(obj) {
|
|
|
85
97
|
heap[idx] = obj;
|
|
86
98
|
return idx;
|
|
87
99
|
}
|
|
88
|
-
function dropObject(idx) {
|
|
89
|
-
if (idx < 132)
|
|
90
|
-
return;
|
|
91
|
-
heap[idx] = heap_next;
|
|
92
|
-
heap_next = idx;
|
|
93
|
-
}
|
|
94
|
-
function takeObject(idx) {
|
|
95
|
-
const ret = getObject(idx);
|
|
96
|
-
dropObject(idx);
|
|
97
|
-
return ret;
|
|
98
|
-
}
|
|
99
100
|
var cachedFloat64Memory0 = null;
|
|
100
101
|
function getFloat64Memory0() {
|
|
101
102
|
if (cachedFloat64Memory0 === null || cachedFloat64Memory0.byteLength === 0) {
|
|
@@ -233,6 +234,9 @@ function __wbg_get_imports() {
|
|
|
233
234
|
const ret = getObject(arg0) === void 0;
|
|
234
235
|
return ret;
|
|
235
236
|
};
|
|
237
|
+
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
|
|
238
|
+
takeObject(arg0);
|
|
239
|
+
};
|
|
236
240
|
imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
|
|
237
241
|
const obj = getObject(arg1);
|
|
238
242
|
const ret = typeof obj === "string" ? obj : void 0;
|
|
@@ -259,7 +263,7 @@ function __wbg_get_imports() {
|
|
|
259
263
|
const ret = getObject(arg0);
|
|
260
264
|
return addHeapObject(ret);
|
|
261
265
|
};
|
|
262
|
-
imports.wbg.
|
|
266
|
+
imports.wbg.__wbg_getwithrefkey_edc2c8960f0f1191 = function(arg0, arg1) {
|
|
263
267
|
const ret = getObject(arg0)[getObject(arg1)];
|
|
264
268
|
return addHeapObject(ret);
|
|
265
269
|
};
|
|
@@ -267,7 +271,7 @@ function __wbg_get_imports() {
|
|
|
267
271
|
const ret = getObject(arg0) in getObject(arg1);
|
|
268
272
|
return ret;
|
|
269
273
|
};
|
|
270
|
-
imports.wbg.
|
|
274
|
+
imports.wbg.__wbg_isSafeInteger_f7b04ef02296c4d2 = function(arg0) {
|
|
271
275
|
const ret = Number.isSafeInteger(getObject(arg0));
|
|
272
276
|
return ret;
|
|
273
277
|
};
|
|
@@ -275,7 +279,7 @@ function __wbg_get_imports() {
|
|
|
275
279
|
const ret = +getObject(arg0);
|
|
276
280
|
return ret;
|
|
277
281
|
};
|
|
278
|
-
imports.wbg.
|
|
282
|
+
imports.wbg.__wbg_length_c20a40f15020d68a = function(arg0) {
|
|
279
283
|
const ret = getObject(arg0).length;
|
|
280
284
|
return ret;
|
|
281
285
|
};
|
|
@@ -283,20 +287,17 @@ function __wbg_get_imports() {
|
|
|
283
287
|
const ret = wasm.memory;
|
|
284
288
|
return addHeapObject(ret);
|
|
285
289
|
};
|
|
286
|
-
imports.wbg.
|
|
290
|
+
imports.wbg.__wbg_buffer_12d079cc21e14bdb = function(arg0) {
|
|
287
291
|
const ret = getObject(arg0).buffer;
|
|
288
292
|
return addHeapObject(ret);
|
|
289
293
|
};
|
|
290
|
-
imports.wbg.
|
|
294
|
+
imports.wbg.__wbg_new_63b92bc8671ed464 = function(arg0) {
|
|
291
295
|
const ret = new Uint8Array(getObject(arg0));
|
|
292
296
|
return addHeapObject(ret);
|
|
293
297
|
};
|
|
294
|
-
imports.wbg.
|
|
298
|
+
imports.wbg.__wbg_set_a47bac70306a19a7 = function(arg0, arg1, arg2) {
|
|
295
299
|
getObject(arg0).set(getObject(arg1), arg2 >>> 0);
|
|
296
300
|
};
|
|
297
|
-
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
|
|
298
|
-
takeObject(arg0);
|
|
299
|
-
};
|
|
300
301
|
imports.wbg.__wbindgen_error_new = function(arg0, arg1) {
|
|
301
302
|
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
302
303
|
return addHeapObject(ret);
|
|
@@ -311,7 +312,7 @@ function __wbg_get_imports() {
|
|
|
311
312
|
getFloat64Memory0()[arg0 / 8 + 1] = isLikeNone(ret) ? 0 : ret;
|
|
312
313
|
getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret);
|
|
313
314
|
};
|
|
314
|
-
imports.wbg.
|
|
315
|
+
imports.wbg.__wbg_instanceof_Uint8Array_2b3bbecd033d19f6 = function(arg0) {
|
|
315
316
|
let result;
|
|
316
317
|
try {
|
|
317
318
|
result = getObject(arg0) instanceof Uint8Array;
|
|
@@ -321,7 +322,7 @@ function __wbg_get_imports() {
|
|
|
321
322
|
const ret = result;
|
|
322
323
|
return ret;
|
|
323
324
|
};
|
|
324
|
-
imports.wbg.
|
|
325
|
+
imports.wbg.__wbg_instanceof_ArrayBuffer_836825be07d4c9d2 = function(arg0) {
|
|
325
326
|
let result;
|
|
326
327
|
try {
|
|
327
328
|
result = getObject(arg0) instanceof ArrayBuffer;
|
package/index_bg.wasm
CHANGED
|
Binary file
|