main repo

This commit is contained in:
Basilosaurusrex
2025-11-24 18:09:40 +01:00
parent b636ee5e70
commit f027651f9b
34146 changed files with 4436636 additions and 0 deletions

13
node_modules/isows/_esm/index.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import * as WebSocket_ from "ws";
import { getNativeWebSocket } from "./utils.js";
export const WebSocket = (() => {
try {
return getNativeWebSocket();
}
catch {
if (WebSocket_.WebSocket)
return WebSocket_.WebSocket;
return WebSocket_;
}
})();
//# sourceMappingURL=index.js.map

1
node_modules/isows/_esm/index.js.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,UAAU,MAAM,IAAI,CAAC;AACjC,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAEhD,MAAM,CAAC,MAAM,SAAS,GAAG,CAAC,GAAG,EAAE;IAC7B,IAAI,CAAC;QACH,OAAO,kBAAkB,EAAE,CAAC;IAC9B,CAAC;IAAC,MAAM,CAAC;QACP,IAAI,UAAU,CAAC,SAAS;YAAE,OAAO,UAAU,CAAC,SAAS,CAAC;QACtD,OAAO,UAAU,CAAC;IACpB,CAAC;AACH,CAAC,CAAC,EAAE,CAAC"}

3
node_modules/isows/_esm/native.js generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import { getNativeWebSocket } from "./utils.js";
export const WebSocket = getNativeWebSocket();
//# sourceMappingURL=native.js.map

1
node_modules/isows/_esm/native.js.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"native.js","sourceRoot":"","sources":["../native.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAEhD,MAAM,CAAC,MAAM,SAAS,GAAG,kBAAkB,EAAE,CAAC"}

1
node_modules/isows/_esm/package.json generated vendored Normal file
View File

@@ -0,0 +1 @@
{"type": "module","sideEffects":false}

12
node_modules/isows/_esm/utils.js generated vendored Normal file
View File

@@ -0,0 +1,12 @@
export function getNativeWebSocket() {
if (typeof WebSocket !== "undefined")
return WebSocket;
if (typeof global.WebSocket !== "undefined")
return global.WebSocket;
if (typeof window.WebSocket !== "undefined")
return window.WebSocket;
if (typeof self.WebSocket !== "undefined")
return self.WebSocket;
throw new Error("`WebSocket` is not supported in this environment");
}
//# sourceMappingURL=utils.js.map

1
node_modules/isows/_esm/utils.js.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../utils.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,kBAAkB;IAChC,IAAI,OAAO,SAAS,KAAK,WAAW;QAAE,OAAO,SAAS,CAAC;IACvD,IAAI,OAAO,MAAM,CAAC,SAAS,KAAK,WAAW;QAAE,OAAO,MAAM,CAAC,SAAS,CAAC;IACrE,IAAI,OAAO,MAAM,CAAC,SAAS,KAAK,WAAW;QAAE,OAAO,MAAM,CAAC,SAAS,CAAC;IACrE,IAAI,OAAO,IAAI,CAAC,SAAS,KAAK,WAAW;QAAE,OAAO,IAAI,CAAC,SAAS,CAAC;IACjE,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAC;AACtE,CAAC"}