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

    Variable digestFilesParallelConst

    digestFilesParallel: (
        paths: readonly string[],
        concurrency?: number,
        throwOnError?: boolean,
    ) => Promise<Buffer> = XxHash128Stream.digestFilesParallel

    Read multiple files in parallel and return the aggregate 128-bit digest.

    Type Declaration

      • (
            paths: readonly string[],
            concurrency?: number,
            throwOnError?: boolean,
        ): Promise<Buffer>
      • Parameters

        • paths: readonly string[]

          Array of file paths.

        • Optionalconcurrency: number

          Max parallel reads. Default 8.

        • OptionalthrowOnError: boolean

          If false, skips unreadable files. Default true.

        Returns Promise<Buffer>