function Hasher.bigintHasherimport { Hasher } from "https://deno.land/x/rimbu@0.14.0/hashed/common/index.ts"; const { bigintHasher } = Hasher; bigintHasher(): Hasher<bigint>Returns a Hasher instance that hashes bigints. ExamplesExample 1 const h = Hasher.bigintHasher() console.log(h.hash(BigInt(5)) === h.hash(BigInt(10))) // => false ReturnsHasher<bigint>