Delete serverUtils.ts

This commit is contained in:
ItzCrazyKns
2026-03-26 22:20:13 +05:30
parent 58ed869b3d
commit d16b7e271a

View File

@@ -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;
};