mirror of
https://gitlab.com/upRootNutrition/zookeeper.git
synced 2025-06-16 02:15:12 -05:00
feat: init
This commit is contained in:
parent
8379d09058
commit
2cfa016090
2929 changed files with 299087 additions and 3 deletions
111
node_modules/@discordjs/util/dist/index.mjs
generated
vendored
Normal file
111
node_modules/@discordjs/util/dist/index.mjs
generated
vendored
Normal file
|
@ -0,0 +1,111 @@
|
|||
var __defProp = Object.defineProperty;
|
||||
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
||||
|
||||
// src/functions/lazy.ts
|
||||
function lazy(cb) {
|
||||
let defaultValue;
|
||||
return () => defaultValue ??= cb();
|
||||
}
|
||||
__name(lazy, "lazy");
|
||||
|
||||
// src/functions/range.ts
|
||||
function* range(range2) {
|
||||
let rangeEnd;
|
||||
let start = 0;
|
||||
let step = 1;
|
||||
if (typeof range2 === "number") {
|
||||
rangeEnd = range2;
|
||||
} else {
|
||||
start = range2.start;
|
||||
rangeEnd = range2.end;
|
||||
step = range2.step ?? 1;
|
||||
}
|
||||
for (let index = start; index < rangeEnd; index += step) {
|
||||
yield index;
|
||||
}
|
||||
}
|
||||
__name(range, "range");
|
||||
|
||||
// src/functions/calculateShardId.ts
|
||||
function calculateShardId(guildId, shardCount) {
|
||||
return Number(BigInt(guildId) >> 22n) % shardCount;
|
||||
}
|
||||
__name(calculateShardId, "calculateShardId");
|
||||
|
||||
// src/functions/runtime.ts
|
||||
function shouldUseGlobalFetchAndWebSocket() {
|
||||
if (typeof globalThis.process === "undefined") {
|
||||
return "fetch" in globalThis && "WebSocket" in globalThis;
|
||||
}
|
||||
if ("versions" in globalThis.process) {
|
||||
return "deno" in globalThis.process.versions || "bun" in globalThis.process.versions;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
__name(shouldUseGlobalFetchAndWebSocket, "shouldUseGlobalFetchAndWebSocket");
|
||||
|
||||
// src/functions/userAgentAppendix.ts
|
||||
function getUserAgentAppendix() {
|
||||
if (typeof globalThis.EdgeRuntime !== "undefined") {
|
||||
return "Vercel-Edge-Functions";
|
||||
}
|
||||
if (typeof globalThis.R2 !== "undefined" && typeof globalThis.WebSocketPair !== "undefined") {
|
||||
return "Cloudflare-Workers";
|
||||
}
|
||||
if (typeof globalThis.Netlify !== "undefined") {
|
||||
return "Netlify-Edge-Functions";
|
||||
}
|
||||
if (typeof globalThis.process !== "object") {
|
||||
if (typeof globalThis.navigator === "object") {
|
||||
return globalThis.navigator.userAgent;
|
||||
}
|
||||
return "UnknownEnvironment";
|
||||
}
|
||||
if ("versions" in globalThis.process) {
|
||||
if ("deno" in globalThis.process.versions) {
|
||||
return `Deno/${globalThis.process.versions.deno}`;
|
||||
}
|
||||
if ("bun" in globalThis.process.versions) {
|
||||
return `Bun/${globalThis.process.versions.bun}`;
|
||||
}
|
||||
if ("node" in globalThis.process.versions) {
|
||||
return `Node.js/${globalThis.process.versions.node}`;
|
||||
}
|
||||
}
|
||||
return "UnknownEnvironment";
|
||||
}
|
||||
__name(getUserAgentAppendix, "getUserAgentAppendix");
|
||||
|
||||
// src/functions/polyfillDispose.ts
|
||||
function polyfillDispose() {
|
||||
Symbol.dispose ??= Symbol("Symbol.dispose");
|
||||
Symbol.asyncDispose ??= Symbol("Symbol.asyncDispose");
|
||||
}
|
||||
__name(polyfillDispose, "polyfillDispose");
|
||||
|
||||
// src/JSONEncodable.ts
|
||||
function isJSONEncodable(maybeEncodable) {
|
||||
return maybeEncodable !== null && typeof maybeEncodable === "object" && "toJSON" in maybeEncodable;
|
||||
}
|
||||
__name(isJSONEncodable, "isJSONEncodable");
|
||||
|
||||
// src/Equatable.ts
|
||||
function isEquatable(maybeEquatable) {
|
||||
return maybeEquatable !== null && typeof maybeEquatable === "object" && "equals" in maybeEquatable;
|
||||
}
|
||||
__name(isEquatable, "isEquatable");
|
||||
|
||||
// src/index.ts
|
||||
var version = "1.1.0";
|
||||
export {
|
||||
calculateShardId,
|
||||
getUserAgentAppendix,
|
||||
isEquatable,
|
||||
isJSONEncodable,
|
||||
lazy,
|
||||
polyfillDispose,
|
||||
range,
|
||||
shouldUseGlobalFetchAndWebSocket,
|
||||
version
|
||||
};
|
||||
//# sourceMappingURL=index.mjs.map
|
Loading…
Add table
Add a link
Reference in a new issue