class MurmurHash3import { MurmurHash3 } from "https://dotland.deno.dev/x/live@1.107.0/utils/hasher.ts"; JS Implementation of incremental MurmurHash3 (r150) (as of May 10, 2013) ConstructorsnewMurmurHash3(key?: string, seed?: number)Create a MurmurHash3 object for incremental hashing. Propertiesprivateh1: numberprivatek1: numberprivatelen: numberprivaterem: numberMethodshash(key: string): voidIncrementally add a string to this hash reset(seed?: number): voidReset the hash object for reuse result(): numberGet the result of this hash