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

16
node_modules/isows/_cjs/index.js generated vendored Normal file
View File

@@ -0,0 +1,16 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.WebSocket = void 0;
const WebSocket_ = require("ws");
const utils_js_1 = require("./utils.js");
exports.WebSocket = (() => {
try {
return (0, utils_js_1.getNativeWebSocket)();
}
catch {
if (WebSocket_.WebSocket)
return WebSocket_.WebSocket;
return WebSocket_;
}
})();
//# sourceMappingURL=index.js.map

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

@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;AAAA,iCAAiC;AACjC,yCAAgD;AAEnC,QAAA,SAAS,GAAG,CAAC,GAAG,EAAE;IAC7B,IAAI,CAAC;QACH,OAAO,IAAA,6BAAkB,GAAE,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"}

6
node_modules/isows/_cjs/native.js generated vendored Normal file
View File

@@ -0,0 +1,6 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.WebSocket = void 0;
const utils_js_1 = require("./utils.js");
exports.WebSocket = (0, utils_js_1.getNativeWebSocket)();
//# sourceMappingURL=native.js.map

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

@@ -0,0 +1 @@
{"version":3,"file":"native.js","sourceRoot":"","sources":["../native.ts"],"names":[],"mappings":";;;AAAA,yCAAgD;AAEnC,QAAA,SAAS,GAAG,IAAA,6BAAkB,GAAE,CAAC"}

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

@@ -0,0 +1 @@
{"type":"commonjs"}

16
node_modules/isows/_cjs/utils.js generated vendored Normal file
View File

@@ -0,0 +1,16 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getNativeWebSocket = void 0;
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");
}
exports.getNativeWebSocket = getNativeWebSocket;
//# sourceMappingURL=utils.js.map

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

@@ -0,0 +1 @@
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../utils.ts"],"names":[],"mappings":";;;AAAA,SAAgB,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;AAND,gDAMC"}