renovate/lib/modules/platform/util.ts

11 lines
258 B
TypeScript
Raw Normal View History

import hasha from 'hasha';
export function repoFingerprint(
repoId: number | string,
endpoint: string | undefined
): string {
const input = endpoint ? `${endpoint}::${repoId}` : `${repoId}`;
const fingerprint = hasha(input);
return fingerprint;
}