function Hasher.anyFlatHasherimport { Hasher } from "https://deno.land/x/rimbu@0.14.0/hashed/common/hasher.ts"; const { anyFlatHasher } = Hasher; anyFlatHasher(): Hasher<any>Returns a Hasher instance that hashes any value, but never traverses into an object or array to hash its elements. In those cases it will use toString. ExamplesExample 1 const h = Hasher.anyFlatHasher() console.log(h.hash({ a: 1, b: 2 }) === h.hash({ b: 2, a: 1 })) // => false ReturnsHasher<any>