mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-11 00:59:17 -06:00
4 lines
134 B
TypeScript
4 lines
134 B
TypeScript
import { createHash } from "crypto";
|
|
|
|
export const getHash = (key: string): string => createHash("sha256").update(key).digest("hex");
|