UNPKG

@typed/content-hash

Version:

Content hash a directory of HTML/JS/CSS files and other static assets

6 lines (4 loc) 192 B
import b64Url from 'base64url' import { createHash } from 'crypto' export const sha512Hash = (contents: string) => b64Url.fromBase64(createHash('sha512').update(contents).digest('base64'))