
























@@ -8,11 +8,11 @@ export function formatBytesAsMb(valueBytes) {
88 : `${(valueBytes / 1024 / 1024).toFixed(1)}MB`;
99}
101011-export function formatSignedMs(value, digits = 1) {
11+function formatSignedMs(value, digits = 1) {
1212return `${value > 0 ? "+" : ""}${formatMs(value, digits)}`;
1313}
141415-export function formatSignedBytesAsMb(valueBytes) {
15+function formatSignedBytesAsMb(valueBytes) {
1616return valueBytes === null || valueBytes === undefined
1717 ? "n/a"
1818 : `${valueBytes > 0 ? "+" : ""}${formatBytesAsMb(valueBytes)}`;
@@ -46,7 +46,7 @@ export function resolveTestArea(file) {
4646return parts[0] || normalized;
4747}
484849-export function resolveTestFolder(file, depth = 2) {
49+function resolveTestFolder(file, depth = 2) {
5050const normalized = normalizeTrackedRepoPath(file);
5151const dir = path.posix.dirname(normalized);
5252if (dir === ".") {
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。