MCPcopy Index your code
hub / github.com/TeleBoxOrg/TeleBox_Plugins / get

Function get

pmcaptcha/pmcaptcha.ts:249–254  ·  view source on GitHub ↗
(key: string, def: T)

Source from the content-addressed store, hash-verified

247// ─── 配置辅助 ─────────────────────────────────────────────────────────────────
248
249function get<T>(key: string, def: T): T {
250 if (!dbReady) return def;
251 const db = (configDb?.data[key] !== undefined) ? configDb : dataDb;
252 const v = db?.data[key];
253 return v !== undefined ? v : def;
254}
255
256function set(key: string, value: any) {
257 if (!dbReady) return;

Callers 2

pmcaptcha.tsFile · 0.85
pmcaptchaFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected