@aboutcircles/sdk 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -22
- package/package.json +13 -9
- package/dist/ccip-bj4hszbh.js +0 -4584
- package/dist/ccip-dw9vbgp0.js +0 -4533
- package/dist/index-3hqyeswk.js +0 -25
- package/dist/index-pps0tkk3.js +0 -356
- package/dist/native-45v6vh69.js +0 -20
- package/dist/secp256k1-mjj44cj6.js +0 -2115
- package/dist/secp256k1-qqsamwnk.js +0 -2117
package/dist/index-3hqyeswk.js
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
var __create = Object.create;
|
|
2
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __toESM = (mod, isNodeMode, target) => {
|
|
7
|
-
target = mod != null ? __create(__getProtoOf(mod)) : {};
|
|
8
|
-
const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
|
|
9
|
-
for (let key of __getOwnPropNames(mod))
|
|
10
|
-
if (!__hasOwnProp.call(to, key))
|
|
11
|
-
__defProp(to, key, {
|
|
12
|
-
get: () => mod[key],
|
|
13
|
-
enumerable: true
|
|
14
|
-
});
|
|
15
|
-
return to;
|
|
16
|
-
};
|
|
17
|
-
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
18
|
-
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
19
|
-
}) : x)(function(x) {
|
|
20
|
-
if (typeof require !== "undefined")
|
|
21
|
-
return require.apply(this, arguments);
|
|
22
|
-
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
export { __toESM, __require };
|
package/dist/index-pps0tkk3.js
DELETED
|
@@ -1,356 +0,0 @@
|
|
|
1
|
-
// ../../node_modules/@noble/hashes/esm/crypto.js
|
|
2
|
-
var crypto = typeof globalThis === "object" && "crypto" in globalThis ? globalThis.crypto : undefined;
|
|
3
|
-
|
|
4
|
-
// ../../node_modules/@noble/hashes/esm/utils.js
|
|
5
|
-
/*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
6
|
-
function isBytes(a) {
|
|
7
|
-
return a instanceof Uint8Array || ArrayBuffer.isView(a) && a.constructor.name === "Uint8Array";
|
|
8
|
-
}
|
|
9
|
-
function anumber(n) {
|
|
10
|
-
if (!Number.isSafeInteger(n) || n < 0)
|
|
11
|
-
throw new Error("positive integer expected, got " + n);
|
|
12
|
-
}
|
|
13
|
-
function abytes(b, ...lengths) {
|
|
14
|
-
if (!isBytes(b))
|
|
15
|
-
throw new Error("Uint8Array expected");
|
|
16
|
-
if (lengths.length > 0 && !lengths.includes(b.length))
|
|
17
|
-
throw new Error("Uint8Array expected of length " + lengths + ", got length=" + b.length);
|
|
18
|
-
}
|
|
19
|
-
function ahash(h) {
|
|
20
|
-
if (typeof h !== "function" || typeof h.create !== "function")
|
|
21
|
-
throw new Error("Hash should be wrapped by utils.createHasher");
|
|
22
|
-
anumber(h.outputLen);
|
|
23
|
-
anumber(h.blockLen);
|
|
24
|
-
}
|
|
25
|
-
function aexists(instance, checkFinished = true) {
|
|
26
|
-
if (instance.destroyed)
|
|
27
|
-
throw new Error("Hash instance has been destroyed");
|
|
28
|
-
if (checkFinished && instance.finished)
|
|
29
|
-
throw new Error("Hash#digest() has already been called");
|
|
30
|
-
}
|
|
31
|
-
function aoutput(out, instance) {
|
|
32
|
-
abytes(out);
|
|
33
|
-
const min = instance.outputLen;
|
|
34
|
-
if (out.length < min) {
|
|
35
|
-
throw new Error("digestInto() expects output buffer of length at least " + min);
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
function u32(arr) {
|
|
39
|
-
return new Uint32Array(arr.buffer, arr.byteOffset, Math.floor(arr.byteLength / 4));
|
|
40
|
-
}
|
|
41
|
-
function clean(...arrays) {
|
|
42
|
-
for (let i = 0;i < arrays.length; i++) {
|
|
43
|
-
arrays[i].fill(0);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
function createView(arr) {
|
|
47
|
-
return new DataView(arr.buffer, arr.byteOffset, arr.byteLength);
|
|
48
|
-
}
|
|
49
|
-
function rotr(word, shift) {
|
|
50
|
-
return word << 32 - shift | word >>> shift;
|
|
51
|
-
}
|
|
52
|
-
var isLE = /* @__PURE__ */ (() => new Uint8Array(new Uint32Array([287454020]).buffer)[0] === 68)();
|
|
53
|
-
function byteSwap(word) {
|
|
54
|
-
return word << 24 & 4278190080 | word << 8 & 16711680 | word >>> 8 & 65280 | word >>> 24 & 255;
|
|
55
|
-
}
|
|
56
|
-
function byteSwap32(arr) {
|
|
57
|
-
for (let i = 0;i < arr.length; i++) {
|
|
58
|
-
arr[i] = byteSwap(arr[i]);
|
|
59
|
-
}
|
|
60
|
-
return arr;
|
|
61
|
-
}
|
|
62
|
-
var swap32IfBE = isLE ? (u) => u : byteSwap32;
|
|
63
|
-
function utf8ToBytes(str) {
|
|
64
|
-
if (typeof str !== "string")
|
|
65
|
-
throw new Error("string expected");
|
|
66
|
-
return new Uint8Array(new TextEncoder().encode(str));
|
|
67
|
-
}
|
|
68
|
-
function toBytes(data) {
|
|
69
|
-
if (typeof data === "string")
|
|
70
|
-
data = utf8ToBytes(data);
|
|
71
|
-
abytes(data);
|
|
72
|
-
return data;
|
|
73
|
-
}
|
|
74
|
-
function concatBytes(...arrays) {
|
|
75
|
-
let sum = 0;
|
|
76
|
-
for (let i = 0;i < arrays.length; i++) {
|
|
77
|
-
const a = arrays[i];
|
|
78
|
-
abytes(a);
|
|
79
|
-
sum += a.length;
|
|
80
|
-
}
|
|
81
|
-
const res = new Uint8Array(sum);
|
|
82
|
-
for (let i = 0, pad = 0;i < arrays.length; i++) {
|
|
83
|
-
const a = arrays[i];
|
|
84
|
-
res.set(a, pad);
|
|
85
|
-
pad += a.length;
|
|
86
|
-
}
|
|
87
|
-
return res;
|
|
88
|
-
}
|
|
89
|
-
class Hash {
|
|
90
|
-
}
|
|
91
|
-
function createHasher(hashCons) {
|
|
92
|
-
const hashC = (msg) => hashCons().update(toBytes(msg)).digest();
|
|
93
|
-
const tmp = hashCons();
|
|
94
|
-
hashC.outputLen = tmp.outputLen;
|
|
95
|
-
hashC.blockLen = tmp.blockLen;
|
|
96
|
-
hashC.create = () => hashCons();
|
|
97
|
-
return hashC;
|
|
98
|
-
}
|
|
99
|
-
function randomBytes(bytesLength = 32) {
|
|
100
|
-
if (crypto && typeof crypto.getRandomValues === "function") {
|
|
101
|
-
return crypto.getRandomValues(new Uint8Array(bytesLength));
|
|
102
|
-
}
|
|
103
|
-
if (crypto && typeof crypto.randomBytes === "function") {
|
|
104
|
-
return Uint8Array.from(crypto.randomBytes(bytesLength));
|
|
105
|
-
}
|
|
106
|
-
throw new Error("crypto.getRandomValues must be defined");
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
// ../../node_modules/@noble/curves/esm/abstract/utils.js
|
|
110
|
-
/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
111
|
-
var _0n = /* @__PURE__ */ BigInt(0);
|
|
112
|
-
var _1n = /* @__PURE__ */ BigInt(1);
|
|
113
|
-
function isBytes2(a) {
|
|
114
|
-
return a instanceof Uint8Array || ArrayBuffer.isView(a) && a.constructor.name === "Uint8Array";
|
|
115
|
-
}
|
|
116
|
-
function abytes2(item) {
|
|
117
|
-
if (!isBytes2(item))
|
|
118
|
-
throw new Error("Uint8Array expected");
|
|
119
|
-
}
|
|
120
|
-
function abool(title, value) {
|
|
121
|
-
if (typeof value !== "boolean")
|
|
122
|
-
throw new Error(title + " boolean expected, got " + value);
|
|
123
|
-
}
|
|
124
|
-
function numberToHexUnpadded(num) {
|
|
125
|
-
const hex = num.toString(16);
|
|
126
|
-
return hex.length & 1 ? "0" + hex : hex;
|
|
127
|
-
}
|
|
128
|
-
function hexToNumber(hex) {
|
|
129
|
-
if (typeof hex !== "string")
|
|
130
|
-
throw new Error("hex string expected, got " + typeof hex);
|
|
131
|
-
return hex === "" ? _0n : BigInt("0x" + hex);
|
|
132
|
-
}
|
|
133
|
-
var hasHexBuiltin = typeof Uint8Array.from([]).toHex === "function" && typeof Uint8Array.fromHex === "function";
|
|
134
|
-
var hexes = /* @__PURE__ */ Array.from({ length: 256 }, (_, i) => i.toString(16).padStart(2, "0"));
|
|
135
|
-
function bytesToHex(bytes) {
|
|
136
|
-
abytes2(bytes);
|
|
137
|
-
if (hasHexBuiltin)
|
|
138
|
-
return bytes.toHex();
|
|
139
|
-
let hex = "";
|
|
140
|
-
for (let i = 0;i < bytes.length; i++) {
|
|
141
|
-
hex += hexes[bytes[i]];
|
|
142
|
-
}
|
|
143
|
-
return hex;
|
|
144
|
-
}
|
|
145
|
-
var asciis = { _0: 48, _9: 57, A: 65, F: 70, a: 97, f: 102 };
|
|
146
|
-
function asciiToBase16(ch) {
|
|
147
|
-
if (ch >= asciis._0 && ch <= asciis._9)
|
|
148
|
-
return ch - asciis._0;
|
|
149
|
-
if (ch >= asciis.A && ch <= asciis.F)
|
|
150
|
-
return ch - (asciis.A - 10);
|
|
151
|
-
if (ch >= asciis.a && ch <= asciis.f)
|
|
152
|
-
return ch - (asciis.a - 10);
|
|
153
|
-
return;
|
|
154
|
-
}
|
|
155
|
-
function hexToBytes(hex) {
|
|
156
|
-
if (typeof hex !== "string")
|
|
157
|
-
throw new Error("hex string expected, got " + typeof hex);
|
|
158
|
-
if (hasHexBuiltin)
|
|
159
|
-
return Uint8Array.fromHex(hex);
|
|
160
|
-
const hl = hex.length;
|
|
161
|
-
const al = hl / 2;
|
|
162
|
-
if (hl % 2)
|
|
163
|
-
throw new Error("hex string expected, got unpadded hex of length " + hl);
|
|
164
|
-
const array = new Uint8Array(al);
|
|
165
|
-
for (let ai = 0, hi = 0;ai < al; ai++, hi += 2) {
|
|
166
|
-
const n1 = asciiToBase16(hex.charCodeAt(hi));
|
|
167
|
-
const n2 = asciiToBase16(hex.charCodeAt(hi + 1));
|
|
168
|
-
if (n1 === undefined || n2 === undefined) {
|
|
169
|
-
const char = hex[hi] + hex[hi + 1];
|
|
170
|
-
throw new Error('hex string expected, got non-hex character "' + char + '" at index ' + hi);
|
|
171
|
-
}
|
|
172
|
-
array[ai] = n1 * 16 + n2;
|
|
173
|
-
}
|
|
174
|
-
return array;
|
|
175
|
-
}
|
|
176
|
-
function bytesToNumberBE(bytes) {
|
|
177
|
-
return hexToNumber(bytesToHex(bytes));
|
|
178
|
-
}
|
|
179
|
-
function bytesToNumberLE(bytes) {
|
|
180
|
-
abytes2(bytes);
|
|
181
|
-
return hexToNumber(bytesToHex(Uint8Array.from(bytes).reverse()));
|
|
182
|
-
}
|
|
183
|
-
function numberToBytesBE(n, len) {
|
|
184
|
-
return hexToBytes(n.toString(16).padStart(len * 2, "0"));
|
|
185
|
-
}
|
|
186
|
-
function numberToBytesLE(n, len) {
|
|
187
|
-
return numberToBytesBE(n, len).reverse();
|
|
188
|
-
}
|
|
189
|
-
function ensureBytes(title, hex, expectedLength) {
|
|
190
|
-
let res;
|
|
191
|
-
if (typeof hex === "string") {
|
|
192
|
-
try {
|
|
193
|
-
res = hexToBytes(hex);
|
|
194
|
-
} catch (e) {
|
|
195
|
-
throw new Error(title + " must be hex string or Uint8Array, cause: " + e);
|
|
196
|
-
}
|
|
197
|
-
} else if (isBytes2(hex)) {
|
|
198
|
-
res = Uint8Array.from(hex);
|
|
199
|
-
} else {
|
|
200
|
-
throw new Error(title + " must be hex string or Uint8Array");
|
|
201
|
-
}
|
|
202
|
-
const len = res.length;
|
|
203
|
-
if (typeof expectedLength === "number" && len !== expectedLength)
|
|
204
|
-
throw new Error(title + " of length " + expectedLength + " expected, got " + len);
|
|
205
|
-
return res;
|
|
206
|
-
}
|
|
207
|
-
function concatBytes2(...arrays) {
|
|
208
|
-
let sum = 0;
|
|
209
|
-
for (let i = 0;i < arrays.length; i++) {
|
|
210
|
-
const a = arrays[i];
|
|
211
|
-
abytes2(a);
|
|
212
|
-
sum += a.length;
|
|
213
|
-
}
|
|
214
|
-
const res = new Uint8Array(sum);
|
|
215
|
-
for (let i = 0, pad = 0;i < arrays.length; i++) {
|
|
216
|
-
const a = arrays[i];
|
|
217
|
-
res.set(a, pad);
|
|
218
|
-
pad += a.length;
|
|
219
|
-
}
|
|
220
|
-
return res;
|
|
221
|
-
}
|
|
222
|
-
function utf8ToBytes2(str) {
|
|
223
|
-
if (typeof str !== "string")
|
|
224
|
-
throw new Error("string expected");
|
|
225
|
-
return new Uint8Array(new TextEncoder().encode(str));
|
|
226
|
-
}
|
|
227
|
-
var isPosBig = (n) => typeof n === "bigint" && _0n <= n;
|
|
228
|
-
function inRange(n, min, max) {
|
|
229
|
-
return isPosBig(n) && isPosBig(min) && isPosBig(max) && min <= n && n < max;
|
|
230
|
-
}
|
|
231
|
-
function aInRange(title, n, min, max) {
|
|
232
|
-
if (!inRange(n, min, max))
|
|
233
|
-
throw new Error("expected valid " + title + ": " + min + " <= n < " + max + ", got " + n);
|
|
234
|
-
}
|
|
235
|
-
function bitLen(n) {
|
|
236
|
-
let len;
|
|
237
|
-
for (len = 0;n > _0n; n >>= _1n, len += 1)
|
|
238
|
-
;
|
|
239
|
-
return len;
|
|
240
|
-
}
|
|
241
|
-
var bitMask = (n) => (_1n << BigInt(n)) - _1n;
|
|
242
|
-
var u8n = (len) => new Uint8Array(len);
|
|
243
|
-
var u8fr = (arr) => Uint8Array.from(arr);
|
|
244
|
-
function createHmacDrbg(hashLen, qByteLen, hmacFn) {
|
|
245
|
-
if (typeof hashLen !== "number" || hashLen < 2)
|
|
246
|
-
throw new Error("hashLen must be a number");
|
|
247
|
-
if (typeof qByteLen !== "number" || qByteLen < 2)
|
|
248
|
-
throw new Error("qByteLen must be a number");
|
|
249
|
-
if (typeof hmacFn !== "function")
|
|
250
|
-
throw new Error("hmacFn must be a function");
|
|
251
|
-
let v = u8n(hashLen);
|
|
252
|
-
let k = u8n(hashLen);
|
|
253
|
-
let i = 0;
|
|
254
|
-
const reset = () => {
|
|
255
|
-
v.fill(1);
|
|
256
|
-
k.fill(0);
|
|
257
|
-
i = 0;
|
|
258
|
-
};
|
|
259
|
-
const h = (...b) => hmacFn(k, v, ...b);
|
|
260
|
-
const reseed = (seed = u8n(0)) => {
|
|
261
|
-
k = h(u8fr([0]), seed);
|
|
262
|
-
v = h();
|
|
263
|
-
if (seed.length === 0)
|
|
264
|
-
return;
|
|
265
|
-
k = h(u8fr([1]), seed);
|
|
266
|
-
v = h();
|
|
267
|
-
};
|
|
268
|
-
const gen = () => {
|
|
269
|
-
if (i++ >= 1000)
|
|
270
|
-
throw new Error("drbg: tried 1000 values");
|
|
271
|
-
let len = 0;
|
|
272
|
-
const out = [];
|
|
273
|
-
while (len < qByteLen) {
|
|
274
|
-
v = h();
|
|
275
|
-
const sl = v.slice();
|
|
276
|
-
out.push(sl);
|
|
277
|
-
len += v.length;
|
|
278
|
-
}
|
|
279
|
-
return concatBytes2(...out);
|
|
280
|
-
};
|
|
281
|
-
const genUntil = (seed, pred) => {
|
|
282
|
-
reset();
|
|
283
|
-
reseed(seed);
|
|
284
|
-
let res = undefined;
|
|
285
|
-
while (!(res = pred(gen())))
|
|
286
|
-
reseed();
|
|
287
|
-
reset();
|
|
288
|
-
return res;
|
|
289
|
-
};
|
|
290
|
-
return genUntil;
|
|
291
|
-
}
|
|
292
|
-
var validatorFns = {
|
|
293
|
-
bigint: (val) => typeof val === "bigint",
|
|
294
|
-
function: (val) => typeof val === "function",
|
|
295
|
-
boolean: (val) => typeof val === "boolean",
|
|
296
|
-
string: (val) => typeof val === "string",
|
|
297
|
-
stringOrUint8Array: (val) => typeof val === "string" || isBytes2(val),
|
|
298
|
-
isSafeInteger: (val) => Number.isSafeInteger(val),
|
|
299
|
-
array: (val) => Array.isArray(val),
|
|
300
|
-
field: (val, object) => object.Fp.isValid(val),
|
|
301
|
-
hash: (val) => typeof val === "function" && Number.isSafeInteger(val.outputLen)
|
|
302
|
-
};
|
|
303
|
-
function validateObject(object, validators, optValidators = {}) {
|
|
304
|
-
const checkField = (fieldName, type, isOptional) => {
|
|
305
|
-
const checkVal = validatorFns[type];
|
|
306
|
-
if (typeof checkVal !== "function")
|
|
307
|
-
throw new Error("invalid validator function");
|
|
308
|
-
const val = object[fieldName];
|
|
309
|
-
if (isOptional && val === undefined)
|
|
310
|
-
return;
|
|
311
|
-
if (!checkVal(val, object)) {
|
|
312
|
-
throw new Error("param " + String(fieldName) + " is invalid. Expected " + type + ", got " + val);
|
|
313
|
-
}
|
|
314
|
-
};
|
|
315
|
-
for (const [fieldName, type] of Object.entries(validators))
|
|
316
|
-
checkField(fieldName, type, false);
|
|
317
|
-
for (const [fieldName, type] of Object.entries(optValidators))
|
|
318
|
-
checkField(fieldName, type, true);
|
|
319
|
-
return object;
|
|
320
|
-
}
|
|
321
|
-
function memoized(fn) {
|
|
322
|
-
const map = new WeakMap;
|
|
323
|
-
return (arg, ...args) => {
|
|
324
|
-
const val = map.get(arg);
|
|
325
|
-
if (val !== undefined)
|
|
326
|
-
return val;
|
|
327
|
-
const computed = fn(arg, ...args);
|
|
328
|
-
map.set(arg, computed);
|
|
329
|
-
return computed;
|
|
330
|
-
};
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
// ../../node_modules/@noble/hashes/esm/_u64.js
|
|
334
|
-
var U32_MASK64 = /* @__PURE__ */ BigInt(2 ** 32 - 1);
|
|
335
|
-
var _32n = /* @__PURE__ */ BigInt(32);
|
|
336
|
-
function fromBig(n, le = false) {
|
|
337
|
-
if (le)
|
|
338
|
-
return { h: Number(n & U32_MASK64), l: Number(n >> _32n & U32_MASK64) };
|
|
339
|
-
return { h: Number(n >> _32n & U32_MASK64) | 0, l: Number(n & U32_MASK64) | 0 };
|
|
340
|
-
}
|
|
341
|
-
function split(lst, le = false) {
|
|
342
|
-
const len = lst.length;
|
|
343
|
-
let Ah = new Uint32Array(len);
|
|
344
|
-
let Al = new Uint32Array(len);
|
|
345
|
-
for (let i = 0;i < len; i++) {
|
|
346
|
-
const { h, l } = fromBig(lst[i], le);
|
|
347
|
-
[Ah[i], Al[i]] = [h, l];
|
|
348
|
-
}
|
|
349
|
-
return [Ah, Al];
|
|
350
|
-
}
|
|
351
|
-
var rotlSH = (h, l, s) => h << s | l >>> 32 - s;
|
|
352
|
-
var rotlSL = (h, l, s) => l << s | h >>> 32 - s;
|
|
353
|
-
var rotlBH = (h, l, s) => l << s - 32 | h >>> 64 - s;
|
|
354
|
-
var rotlBL = (h, l, s) => h << s - 32 | l >>> 64 - s;
|
|
355
|
-
|
|
356
|
-
export { split, rotlSH, rotlSL, rotlBH, rotlBL, anumber, abytes, ahash, aexists, aoutput, u32, clean, createView, rotr, swap32IfBE, toBytes, concatBytes, Hash, createHasher, randomBytes, isBytes2 as isBytes, abytes2 as abytes1, abool, numberToHexUnpadded, bytesToHex, hexToBytes, bytesToNumberBE, bytesToNumberLE, numberToBytesBE, numberToBytesLE, ensureBytes, concatBytes2 as concatBytes1, utf8ToBytes2 as utf8ToBytes, inRange, aInRange, bitLen, bitMask, createHmacDrbg, validateObject, memoized };
|
package/dist/native-45v6vh69.js
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import"./index-3hqyeswk.js";
|
|
2
|
-
|
|
3
|
-
// ../../node_modules/isows/_esm/utils.js
|
|
4
|
-
function getNativeWebSocket() {
|
|
5
|
-
if (typeof WebSocket !== "undefined")
|
|
6
|
-
return WebSocket;
|
|
7
|
-
if (typeof global.WebSocket !== "undefined")
|
|
8
|
-
return global.WebSocket;
|
|
9
|
-
if (typeof window.WebSocket !== "undefined")
|
|
10
|
-
return window.WebSocket;
|
|
11
|
-
if (typeof self.WebSocket !== "undefined")
|
|
12
|
-
return self.WebSocket;
|
|
13
|
-
throw new Error("`WebSocket` is not supported in this environment");
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
// ../../node_modules/isows/_esm/native.js
|
|
17
|
-
var WebSocket2 = getNativeWebSocket();
|
|
18
|
-
export {
|
|
19
|
-
WebSocket2 as WebSocket
|
|
20
|
-
};
|