function utilCrypto.xxhashAsU8aimport { utilCrypto } from "https://dotland.deno.dev/x/polkadot@0.2.35/mod.ts"; const { xxhashAsU8a } = utilCrypto; xxhashAsU8a(data: | HexString | Buffer | Uint8Array | string,bitLength?: | 64 | 128 | 192 | 256 | 320 | 384 | 448 | 512,onlyJs?: boolean,): Uint8ArrayExamples import { xxhashAsU8a } from 'https://deno.land/x/polkadot@0.2.35/util-crypto/mod.ts'; xxhashAsU8a('abc'); // => 0x44bc2cf5ad770999 Parametersdata: | HexString | Buffer | Uint8Array | stringoptionalbitLength: | 64 | 128 | 192 | 256 | 320 | 384 | 448 | 512 = [UNSUPPORTED]optionalonlyJs: booleanReturnsUint8Array