UNPKG

open-next-cdk

Version:

Deploy a NextJS app using OpenNext packaging to serverless AWS using CDK

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(); };