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

Function calculateDailyUsage

subinfo/subinfo.ts:112–115  ·  view source on GitHub ↗
(totalUsed: number, startTime: number, currentTime: number)

Source from the content-addressed store, hash-verified

110
111// 计算剩余流量的建议日均用量
112function calculateRemainingDailyAllowance(remain: number, days: number): string {
113 if (days <= 0) return "无法计算";
114 return formatSize(remain / days);
115}
116
117// 获取流量进度提示 (仅用于详细模式)
118function getSpeedEmoji(percent: number): string {

Callers 1

handleSubinfoMethod · 0.85

Calls 1

formatSizeFunction · 0.85

Tested by

no test coverage detected