fix(notes): keep archive helpers internal

This commit is contained in:
Tianyi Cui
2026-07-26 23:29:46 +08:00
parent f18fb32e2c
commit 046419faf4
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ export interface ArchiveManifest {
}
/** Hash one archived artifact independently of the repository's Git object format. */
export function archiveContentHash(content: Buffer): string {
function archiveContentHash(content: Buffer): string {
return `sha256:${createHash('sha256').update(content).digest('hex')}`
}