github-actions[bot]
Update from GitHub Actions
10852fa
raw
history blame contribute delete
177 Bytes
export default async (algorithm, data) => {
const subtleDigest = `SHA-${algorithm.slice(-3)}`;
return new Uint8Array(await crypto.subtle.digest(subtleDigest, data));
};