mirror of
https://github.com/formbricks/formbricks.git
synced 2026-03-15 11:20:58 -05: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");
|