diff --git a/src/lib/serverUtils.ts b/src/lib/serverUtils.ts deleted file mode 100644 index 9dca22f8..00000000 --- a/src/lib/serverUtils.ts +++ /dev/null @@ -1,7 +0,0 @@ -import crypto from 'crypto'; - -export const hashObj = (obj: { [key: string]: any }) => { - const json = JSON.stringify(obj, Object.keys(obj).sort()); - const hash = crypto.createHash('sha256').update(json).digest('hex'); - return hash; -};