Creates a XXHash64 hasher using values of type BigInt (MDN, Can I Use).
BigInt
Optional seed, defaults to 0.
0
Hasher instance.
import { xxh64BigInt } from '@pacote/xxhash'const hasher = xxh64BigInt(2654435761)hasher.update('data').digest('hex') // => '5014607643a9b4c3' Copy
import { xxh64BigInt } from '@pacote/xxhash'const hasher = xxh64BigInt(2654435761)hasher.update('data').digest('hex') // => '5014607643a9b4c3'
Creates a XXHash64 hasher using values of type
BigInt
(MDN, Can I Use).