UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

7 lines (6 loc) 227 B
import { toUint8Array } from "@smithy/util-utf8"; export const stringHasher = (checksumAlgorithmFn, body) => { const hash = new checksumAlgorithmFn(); hash.update(toUint8Array(body || "")); return hash.digest(); };