fast-fs-hash - v0.0.0-rc4
    Preparing search index...

    Variable digestFilesSequentialToConst

    digestFilesSequentialTo: <TOut extends Uint8Array>(
        paths: readonly string[],
        out: TOut,
        outOffset?: number,
        throwOnError?: boolean,
    ) => Promise<TOut> = XxHash128Stream.digestFilesSequentialTo

    Read multiple files sequentially and write the aggregate digest into out.

    Type Declaration

      • <TOut extends Uint8Array>(
            paths: readonly string[],
            out: TOut,
            outOffset?: number,
            throwOnError?: boolean,
        ): Promise<TOut>
      • Type Parameters

        • TOut extends Uint8Array

        Parameters

        • paths: readonly string[]

          Array of file paths.

        • out: TOut

          Destination buffer.

        • OptionaloutOffset: number

          Byte offset into out. Default 0.

        • OptionalthrowOnError: boolean

          If false, skips unreadable files. Default true.

        Returns Promise<TOut>