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

    Variable lz4DecompressAndWriteConst

    lz4DecompressAndWrite: (
        compressedData: Uint8Array,
        uncompressedSize: number,
        path: string,
    ) => Promise<boolean> = binding.lz4DecompressAndWrite

    Decompress LZ4 data and write to a file asynchronously on a pool thread. Creates parent directories if needed. The inverse of lz4ReadAndCompress.

    Type Declaration

      • (
            compressedData: Uint8Array,
            uncompressedSize: number,
            path: string,
        ): Promise<boolean>
      • Parameters

        • compressedData: Uint8Array

          LZ4-compressed data.

        • uncompressedSize: number

          Original uncompressed size (from lz4ReadAndCompress).

        • path: string

          Output file path.

        Returns Promise<boolean>