function Hasher.dateHasherimport { Hasher } from "https://deno.land/x/rimbu@0.14.0/hashed/common/index.ts"; const { dateHasher } = Hasher; dateHasher(): Hasher<Date>Returns a Hasher instance that hashes Dates. ExamplesExample 1 const h = Hasher.dateHasher() const d1 = new Date() const d2 = new Date(d1) console.log(h.hash(d1) === h.hash(d2)) // => true ReturnsHasher<Date>