update git-check

This commit is contained in:
2026-02-08 18:35:00 +08:00
parent 4dd0ea4050
commit 9a9262524c
3 changed files with 27 additions and 30 deletions

View File

@@ -885,3 +885,7 @@ export function stringifySorted<T extends Record<string, any>>(
return value;
}, space);
}
export function stringifyPretty(object: any): string {
return JSON.stringify(object, null, 2);
}