import { Hasher } from "https://deno.land/x/rimbu@0.14.0/hashed/common/index.ts";
const { objectShallowHasher } = Hasher;
Returns a Hasher instance that hashes objects of key type K and value type V. If a value if an object or array, it will convert those values to a string.
Examples
Example 1
Example 1
const h = Hasher.objectShallowHasher()
console.log(h.hash({ a: 1, b: 2 }) === h.hash({ b: 2, a: 1 }))
// => true