mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
de289bb409
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
5 lines
128 B
TypeScript
5 lines
128 B
TypeScript
import hasha from 'hasha';
|
|
|
|
export function toSha256(input: string): string {
|
|
return hasha(input, { algorithm: 'sha256' });
|
|
}
|