Files
games/pkg/shared/utils.ts
2025-08-29 20:54:18 -04:00

4 lines
132 B
TypeScript

import hash, { NotUndefined } from "object-hash";
export const heq = (a: NotUndefined) => (b: NotUndefined) => hash(a) == hash(b);