Creates a XXHash64 hasher using unsigned 64-bit integer values of type U64.
U64
Optional seed, defaults to 0.
0
Hasher instance.
import { xxh64 } from '@pacote/xxhash'const hasher = xxh64(2654435761)hasher.update('data').digest('hex') // => '5014607643a9b4c3' Copy
import { xxh64 } from '@pacote/xxhash'const hasher = xxh64(2654435761)hasher.update('data').digest('hex') // => '5014607643a9b4c3'
Creates a XXHash64 hasher using unsigned 64-bit integer values of type
U64
.