mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-19 13:29:08 -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");
|