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

Function htmlEscape

speedtest/speedtest.ts:48–56  ·  view source on GitHub ↗
(text: unknown)

Source from the content-addressed store, hash-verified

46
47<b>系统speedtest支持:</b>
48在任何测试命令中添加 <code>--system</code> 或 <code>-s</code> 标志使用系统已安装的speedtest
49例: <code>${commandName} --system</code> 或 <code>${commandName} -s 12345</code>`;
50// HTML escape function
51
52const execAsync = promisify(exec);
53const ASSETS_DIR = createDirectoryInAssets("speedtest");
54const TEMP_DIR = createDirectoryInTemp("speedtest");
55
56// 根据平台确定可执行文件名
57function getSpeedtestExecutableName(): string {
58 return process.platform === "win32" ? "speedtest.exe" : "speedtest";
59}

Callers 1

speedtestFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected