MCPcopy Create free account
hub / github.com/TeleBoxOrg/TeleBox_Plugins / resolvePassAction

Function resolvePassAction

pmcaptcha/pmcaptcha.ts:109–113  ·  view source on GitHub ↗
(s: string)

Source from the content-addressed store, hash-verified

107 return FAIL_ACTION_CN_MAP[s] ?? null;
108}
109
110function resolvePassAction(s: string): PassAction | null {
111 const lower = s.toLowerCase();
112 if ((Object.values(PassAction) as string[]).includes(lower)) return lower as PassAction;
113 return PASS_ACTION_CN_MAP[s] ?? null;
114}
115
116// ─── 配置键 & 类型 ────────────────────────────────────────────────────────────

Callers 1

pmcaptchaFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected