From 0e65543d1039ce38f4251b9ee80a8a076582c2c7 Mon Sep 17 00:00:00 2001 From: eliot-akira Date: Fri, 19 Apr 2024 20:36:47 +0200 Subject: [PATCH] Rename to Zip Compressor --- .../utils_streamed_file.StreamedFile.html | 22 +++++++++---------- docs/api/classes/zip_semaphore.default.html | 4 ++-- .../utils_append_bytes.appendBytes.html | 4 ++-- .../utils_collect_bytes.collectBytes.html | 4 ++-- .../utils_collect_file.collectFile.html | 4 ++-- .../utils_collect_string.collectString.html | 4 ++-- .../utils_concat_bytes.concatBytes.html | 4 ++-- .../utils_concat_string.concatString.html | 4 ++-- ...s_concat_uint8_array.concatUint8Array.html | 4 ++-- .../utils_filter_stream.filterStream.html | 4 ++-- ...s_iterator_to_stream.iteratorToStream.html | 4 ++-- .../utils_limit_bytes.limitBytes.html | 4 ++-- .../utils_prepend_bytes.prependBytes.html | 4 ++-- ...utils_skip_first_bytes.skipFirstBytes.html | 4 ++-- .../utils_skip_last_bytes.skipLastBytes.html | 4 ++-- ...zip_decode_remote_zip.decodeRemoteZip.html | 4 ++-- .../functions/zip_decode_zip.decodeZip.html | 4 ++-- ..._decode_zip.readCentralDirectoryEntry.html | 4 ++-- .../zip_decode_zip.readFileEntry.html | 4 ++-- ...ip_decode_zip.streamZippedFileEntries.html | 4 ++-- .../functions/zip_encode_zip.encodeZip.html | 4 ++-- docs/api/hierarchy.html | 2 +- docs/api/index.html | 10 ++++----- .../zip_semaphore.SemaphoreOptions.html | 4 ++-- .../zip_types.CentralDirectoryEndEntry.html | 6 ++--- .../zip_types.CentralDirectoryEntry.html | 6 ++--- docs/api/interfaces/zip_types.FileEntry.html | 6 ++--- docs/api/interfaces/zip_types.FileHeader.html | 6 ++--- docs/api/modules/index.html | 4 ++-- docs/api/modules/utils_append_bytes.html | 4 ++-- docs/api/modules/utils_collect_bytes.html | 4 ++-- docs/api/modules/utils_collect_file.html | 4 ++-- docs/api/modules/utils_collect_string.html | 4 ++-- docs/api/modules/utils_concat_bytes.html | 4 ++-- docs/api/modules/utils_concat_string.html | 4 ++-- .../api/modules/utils_concat_uint8_array.html | 4 ++-- docs/api/modules/utils_filter_stream.html | 4 ++-- .../utils_iterable_stream_polyfill.html | 4 ++-- .../api/modules/utils_iterator_to_stream.html | 4 ++-- docs/api/modules/utils_limit_bytes.html | 4 ++-- docs/api/modules/utils_prepend_bytes.html | 4 ++-- docs/api/modules/utils_skip_first_bytes.html | 4 ++-- docs/api/modules/utils_skip_last_bytes.html | 4 ++-- docs/api/modules/utils_streamed_file.html | 4 ++-- docs/api/modules/zip.html | 4 ++-- docs/api/modules/zip_decode_remote_zip.html | 4 ++-- docs/api/modules/zip_decode_zip.html | 4 ++-- docs/api/modules/zip_encode_zip.html | 4 ++-- docs/api/modules/zip_semaphore.html | 4 ++-- docs/api/modules/zip_types.html | 4 ++-- ...tream_polyfill.IterableReadableStream.html | 2 +- .../types/zip_types.CompressionMethod.html | 2 +- docs/api/types/zip_types.ZipEntry.html | 2 +- .../zip_types.COMPRESSION_DEFLATE.html | 2 +- .../variables/zip_types.COMPRESSION_NONE.html | 2 +- .../variables/zip_types.FILE_HEADER_SIZE.html | 2 +- ...zip_types.SIGNATURE_CENTRAL_DIRECTORY.html | 2 +- ...types.SIGNATURE_CENTRAL_DIRECTORY_END.html | 2 +- .../zip_types.SIGNATURE_DATA_DESCRIPTOR.html | 2 +- .../variables/zip_types.SIGNATURE_FILE.html | 2 +- package.json | 4 ++-- 61 files changed, 127 insertions(+), 127 deletions(-) diff --git a/docs/api/classes/utils_streamed_file.StreamedFile.html b/docs/api/classes/utils_streamed_file.StreamedFile.html index ee97af5..0e819b1 100644 --- a/docs/api/classes/utils_streamed_file.StreamedFile.html +++ b/docs/api/classes/utils_streamed_file.StreamedFile.html @@ -1,6 +1,6 @@ -StreamedFile | zip-stream

Represents a file that is streamed and not fully +StreamedFile | zip-compressor

Represents a file that is streamed and not fully loaded into memory.

-

Hierarchy

Constructors

Hierarchy

Constructors

Properties

lastModified name @@ -18,18 +18,18 @@

Parameters

  • readableStream: ReadableStream<Uint8Array>

    The readable stream containing the file data.

  • name: string

    The name of the file.

  • Optional type: string

    The MIME type of the file.

    -

Returns StreamedFile

  • Create a new File

    -

    Parameters

    • parts: BlobPart[]
    • name: string
    • Optional options: BlobPropertyBag & {
          lastModified?: number | Date;
      }

    Returns File

  • Create a new Blob

    -

    Parameters

    • Optional parts: BlobPart[]
    • Optional options: BlobPropertyBag

    Returns Blob

  • Create a new Blob

    -

    Parameters

    • Optional parts: BlobPart[]
    • Optional options: BlobPropertyBag

    Returns Blob

Properties

lastModified: number

Returns StreamedFile

  • Create a new File

    +

    Parameters

    • parts: BlobPart[]
    • name: string
    • Optional options: BlobPropertyBag & {
          lastModified?: number | Date;
      }

    Returns File

  • Create a new Blob

    +

    Parameters

    • Optional parts: BlobPart[]
    • Optional options: BlobPropertyBag

    Returns Blob

  • Create a new Blob

    +

    Parameters

    • Optional parts: BlobPart[]
    • Optional options: BlobPropertyBag

    Returns Blob

Properties

lastModified: number
name: string
readableStream: ReadableStream<Uint8Array>

The readable stream containing the file data.

-
size: number
size: number
type: string
webkitRelativePath: string

Methods

  • Read the data from the blob as a FormData object.

    This first decodes the data from UTF-8, then parses it as a multipart/form-data body or a application/x-www-form-urlencoded body.

    The type property of the blob is used to determine the format of the @@ -40,8 +40,8 @@

    This first decodes the data from UTF-8, then parses it as JSON.

    Returns Promise<any>

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/classes/zip_semaphore.default.html b/docs/api/classes/zip_semaphore.default.html index 1838643..684d39e 100644 --- a/docs/api/classes/zip_semaphore.default.html +++ b/docs/api/classes/zip_semaphore.default.html @@ -1,8 +1,8 @@ -default | zip-stream

Constructors

constructor +default | zip-compressor

Constructors

Properties

Accessors

Methods

Constructors

Properties

_running: number = 0
concurrency: number
queue: (() => void)[]

Type declaration

    • (): void
    • Returns void

Accessors

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

Properties

_running: number = 0
concurrency: number
queue: (() => void)[]

Type declaration

    • (): void
    • Returns void

Accessors

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/utils_append_bytes.appendBytes.html b/docs/api/functions/utils_append_bytes.appendBytes.html index f3062cd..dcaad12 100644 --- a/docs/api/functions/utils_append_bytes.appendBytes.html +++ b/docs/api/functions/utils_append_bytes.appendBytes.html @@ -1,4 +1,4 @@ -appendBytes | zip-stream

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/utils_collect_bytes.collectBytes.html b/docs/api/functions/utils_collect_bytes.collectBytes.html index 16a2917..90b11f1 100644 --- a/docs/api/functions/utils_collect_bytes.collectBytes.html +++ b/docs/api/functions/utils_collect_bytes.collectBytes.html @@ -1,5 +1,5 @@ -collectBytes | zip-stream

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/utils_collect_file.collectFile.html b/docs/api/functions/utils_collect_file.collectFile.html index dd9d626..d6bb53f 100644 --- a/docs/api/functions/utils_collect_file.collectFile.html +++ b/docs/api/functions/utils_collect_file.collectFile.html @@ -1,5 +1,5 @@ -collectFile | zip-stream

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/utils_collect_string.collectString.html b/docs/api/functions/utils_collect_string.collectString.html index db2e45d..fc9cec5 100644 --- a/docs/api/functions/utils_collect_string.collectString.html +++ b/docs/api/functions/utils_collect_string.collectString.html @@ -1,5 +1,5 @@ -collectString | zip-stream
  • Collects the contents of the entire stream into a single string.

    +collectString | zip-compressor
    • Collects the contents of the entire stream into a single string.

      Parameters

      • stream: ReadableStream<Uint8Array>

        The stream to collect.

      • Optional bytes: number

        Optional. The number of bytes to read from the stream.

      Returns Promise<undefined | string>

      The string contents of the stream.

      -

    Generated using TypeDoc

    \ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/utils_concat_bytes.concatBytes.html b/docs/api/functions/utils_concat_bytes.concatBytes.html index e14dc62..0f379c4 100644 --- a/docs/api/functions/utils_concat_bytes.concatBytes.html +++ b/docs/api/functions/utils_concat_bytes.concatBytes.html @@ -1,6 +1,6 @@ -concatBytes | zip-stream

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/utils_concat_string.concatString.html b/docs/api/functions/utils_concat_string.concatString.html index be4b37c..f1d4035 100644 --- a/docs/api/functions/utils_concat_string.concatString.html +++ b/docs/api/functions/utils_concat_string.concatString.html @@ -1,3 +1,3 @@ -concatString | zip-stream

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/utils_concat_uint8_array.concatUint8Array.html b/docs/api/functions/utils_concat_uint8_array.concatUint8Array.html index ea453a3..5b181f0 100644 --- a/docs/api/functions/utils_concat_uint8_array.concatUint8Array.html +++ b/docs/api/functions/utils_concat_uint8_array.concatUint8Array.html @@ -1,4 +1,4 @@ -concatUint8Array | zip-stream

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/utils_filter_stream.filterStream.html b/docs/api/functions/utils_filter_stream.filterStream.html index af35c2b..d5b54bc 100644 --- a/docs/api/functions/utils_filter_stream.filterStream.html +++ b/docs/api/functions/utils_filter_stream.filterStream.html @@ -1,4 +1,4 @@ -filterStream | zip-stream
  • Filter the stream based on a predicate.

    +filterStream | zip-compressor
    • Filter the stream based on a predicate.

      Type Parameters

      • T

      Parameters

      • predicate: ((chunk) => boolean)

        The predicate to filter the stream with.

          • (chunk): boolean
          • Parameters

            • chunk: T

            Returns boolean

      Returns TransformStream<T, T>

      A new stream that will only contain chunks that pass the predicate.

      -

    Generated using TypeDoc

    \ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/utils_iterator_to_stream.iteratorToStream.html b/docs/api/functions/utils_iterator_to_stream.iteratorToStream.html index 55160d4..0c8db47 100644 --- a/docs/api/functions/utils_iterator_to_stream.iteratorToStream.html +++ b/docs/api/functions/utils_iterator_to_stream.iteratorToStream.html @@ -1,4 +1,4 @@ -iteratorToStream | zip-stream

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/utils_limit_bytes.limitBytes.html b/docs/api/functions/utils_limit_bytes.limitBytes.html index 0f33f3b..cb1ffc7 100644 --- a/docs/api/functions/utils_limit_bytes.limitBytes.html +++ b/docs/api/functions/utils_limit_bytes.limitBytes.html @@ -1,5 +1,5 @@ -limitBytes | zip-stream

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/utils_prepend_bytes.prependBytes.html b/docs/api/functions/utils_prepend_bytes.prependBytes.html index 2b3bb13..b21563d 100644 --- a/docs/api/functions/utils_prepend_bytes.prependBytes.html +++ b/docs/api/functions/utils_prepend_bytes.prependBytes.html @@ -1,4 +1,4 @@ -prependBytes | zip-stream

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/utils_skip_first_bytes.skipFirstBytes.html b/docs/api/functions/utils_skip_first_bytes.skipFirstBytes.html index 0b26bce..6a15d40 100644 --- a/docs/api/functions/utils_skip_first_bytes.skipFirstBytes.html +++ b/docs/api/functions/utils_skip_first_bytes.skipFirstBytes.html @@ -1,4 +1,4 @@ -skipFirstBytes | zip-stream

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/utils_skip_last_bytes.skipLastBytes.html b/docs/api/functions/utils_skip_last_bytes.skipLastBytes.html index aaf54d3..164c26b 100644 --- a/docs/api/functions/utils_skip_last_bytes.skipLastBytes.html +++ b/docs/api/functions/utils_skip_last_bytes.skipLastBytes.html @@ -1,4 +1,4 @@ -skipLastBytes | zip-stream
  • Skips the first length bytes of a stream.

    +skipLastBytes | zip-compressor
    • Skips the first length bytes of a stream.

      Parameters

      • skip: number

        The number of bytes to skip.

      • streamLength: number

      Returns TransformStream<any, any>

      A transform stream that will skip the specified number of bytes.

      -

    Generated using TypeDoc

    \ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/zip_decode_remote_zip.decodeRemoteZip.html b/docs/api/functions/zip_decode_remote_zip.decodeRemoteZip.html index ff68e56..1f6e2b2 100644 --- a/docs/api/functions/zip_decode_remote_zip.decodeRemoteZip.html +++ b/docs/api/functions/zip_decode_remote_zip.decodeRemoteZip.html @@ -1,8 +1,8 @@ -decodeRemoteZip | zip-stream

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/zip_decode_zip.decodeZip.html b/docs/api/functions/zip_decode_zip.decodeZip.html index 3cdb208..7318b4f 100644 --- a/docs/api/functions/zip_decode_zip.decodeZip.html +++ b/docs/api/functions/zip_decode_zip.decodeZip.html @@ -1,5 +1,5 @@ -decodeZip | zip-stream

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/zip_decode_zip.readCentralDirectoryEntry.html b/docs/api/functions/zip_decode_zip.readCentralDirectoryEntry.html index bd4ecdf..79b03f7 100644 --- a/docs/api/functions/zip_decode_zip.readCentralDirectoryEntry.html +++ b/docs/api/functions/zip_decode_zip.readCentralDirectoryEntry.html @@ -1,5 +1,5 @@ -readCentralDirectoryEntry | zip-stream

Function readCentralDirectoryEntry

  • Reads a central directory entry from a zip file.

    +readCentralDirectoryEntry | zip-compressor
    • Reads a central directory entry from a zip file.

      The central directory entry is structured as follows:

      Offset Bytes Description
      0 4 Central directory file header signature = 0x02014b50
      4 2 Version made by
      6 2 Version needed to extract (minimum)
      8 2 General purpose bit flag
      10 2 Compression method
      12 2 File last modification time
      14 2 File last modification date
      16 4 CRC-32 of uncompressed data
      20 4 Compressed size (or 0xffffffff for ZIP64)
      24 4 Uncompressed size (or 0xffffffff for ZIP64)
      28 2 File name length (n)
      30 2 Extra field length (m)
      32 2 File comment length (k)
      34 2 Disk number where file starts (or 0xffff for ZIP64)
      36 2 Internal file attributes
      38 4 External file attributes
      42 4 Relative offset of local file header (or 0xffffffff for ZIP64). This is the number of bytes between the start of the first disk on which the file occurs, and the start of the local file header. This allows software reading the central directory to locate the position of the file inside the ZIP file.
      46 n File name
      46+n m Extra field
      46+n+m k File comment
      -

      Parameters

      Returns Promise<CentralDirectoryEntry | null>

    Generated using TypeDoc

    \ No newline at end of file +

    Parameters

    Returns Promise<CentralDirectoryEntry | null>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/zip_decode_zip.readFileEntry.html b/docs/api/functions/zip_decode_zip.readFileEntry.html index edb5c97..d5eaa70 100644 --- a/docs/api/functions/zip_decode_zip.readFileEntry.html +++ b/docs/api/functions/zip_decode_zip.readFileEntry.html @@ -1,6 +1,6 @@ -readFileEntry | zip-stream
  • Reads a file entry from a zip file.

    +readFileEntry | zip-compressor
    • Reads a file entry from a zip file.

      The file entry is structured as follows:

      Offset	Bytes	Description
      0 4 Local file header signature = 0x04034b50 (PK♥♦ or "PK\3\4")
      4 2 Version needed to extract (minimum)
      6 2 General purpose bit flag
      8 2 Compression method; e.g. none = 0, DEFLATE = 8 (or "\0x08\0x00")
      10 2 File last modification time
      12 2 File last modification date
      14 4 CRC-32 of uncompressed data
      18 4 Compressed size (or 0xffffffff for ZIP64)
      22 4 Uncompressed size (or 0xffffffff for ZIP64)
      26 2 File name length (n)
      28 2 Extra field length (m)
      30 n File name
      30+n m Extra field

      Parameters

      Returns Promise<FileEntry | null>

    Generated using TypeDoc

    \ No newline at end of file +

Returns Promise<FileEntry | null>

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/zip_decode_zip.streamZippedFileEntries.html b/docs/api/functions/zip_decode_zip.streamZippedFileEntries.html index 3ed1952..911fb38 100644 --- a/docs/api/functions/zip_decode_zip.streamZippedFileEntries.html +++ b/docs/api/functions/zip_decode_zip.streamZippedFileEntries.html @@ -1,5 +1,5 @@ -streamZippedFileEntries | zip-stream

Function streamZippedFileEntries

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/functions/zip_encode_zip.encodeZip.html b/docs/api/functions/zip_encode_zip.encodeZip.html index 2968234..c7e3330 100644 --- a/docs/api/functions/zip_encode_zip.encodeZip.html +++ b/docs/api/functions/zip_encode_zip.encodeZip.html @@ -1,4 +1,4 @@ -encodeZip | zip-stream

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/hierarchy.html b/docs/api/hierarchy.html index 9b163fa..d66080f 100644 --- a/docs/api/hierarchy.html +++ b/docs/api/hierarchy.html @@ -1 +1 @@ -zip-stream

zip-stream

Class Hierarchy

Generated using TypeDoc

\ No newline at end of file +zip-compressor

zip-compressor

Class Hierarchy

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/index.html b/docs/api/index.html index c52f16d..8527671 100644 --- a/docs/api/index.html +++ b/docs/api/index.html @@ -1,5 +1,5 @@ -zip-stream

zip-stream

Zip Stream

Encode and decode zip files with CompressionStream, well-supported natively in browsers and server-side JavaScript engines

-

Documentation - API

+zip-compressor

zip-compressor

Zip Compressor

Encode and decode zip files with CompressionStream, well-supported natively in browsers and server-side JavaScript engines

+

Documentation - API

Changes

This project is based on a fork of @php-wasm/stream-compression.

  • @@ -19,12 +19,12 @@

-

Origin

Cloning a subdirectory of a monorepo into its own repository

git clone --depth 1 --single-branch --branch trunk https://github.com/WordPress/wordpress-playground zip-stream

cd zip-stream
git remote remove origin
git remote add upstream https://github.com/WordPress/wordpress-playground
git branch -m trunk upstream-trunk

git subtree split --prefix=packages/php-wasm/stream-compression/src -b zip-stream
git checkout zip-stream

git checkout -b main +

Origin

Cloning a subdirectory of a monorepo into its own repository

git clone --depth 1 --single-branch --branch trunk https://github.com/WordPress/wordpress-playground zip-compressor

cd zip-compressor
git remote remove origin
git remote add upstream https://github.com/WordPress/wordpress-playground
git branch -m trunk upstream-trunk

git subtree split --prefix=packages/php-wasm/stream-compression/src -b zip-compressor
git checkout zip-compressor

git checkout -b main

To keep this fork synced with upstream changes:

-
git checkout upstream-trunk
git pull

git subtree split --prefix=packages/php-wasm/stream-compression/src --onto zip-stream -b zip-stream

git checkout main
git rebase zip-stream +
git checkout upstream-trunk
git pull

git subtree split --prefix=packages/php-wasm/stream-compression/src --onto zip-compressor -b zip-compressor

git checkout main
git rebase zip-compressor

Reference

-

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/interfaces/zip_semaphore.SemaphoreOptions.html b/docs/api/interfaces/zip_semaphore.SemaphoreOptions.html index dcd4999..80c71c5 100644 --- a/docs/api/interfaces/zip_semaphore.SemaphoreOptions.html +++ b/docs/api/interfaces/zip_semaphore.SemaphoreOptions.html @@ -1,2 +1,2 @@ -SemaphoreOptions | zip-stream

Interface SemaphoreOptions

interface SemaphoreOptions {
    concurrency: number;
}

Properties

Properties

concurrency: number

Generated using TypeDoc

\ No newline at end of file +SemaphoreOptions | zip-compressor
interface SemaphoreOptions {
    concurrency: number;
}

Properties

Properties

concurrency: number

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/interfaces/zip_types.CentralDirectoryEndEntry.html b/docs/api/interfaces/zip_types.CentralDirectoryEndEntry.html index b771f93..6d25076 100644 --- a/docs/api/interfaces/zip_types.CentralDirectoryEndEntry.html +++ b/docs/api/interfaces/zip_types.CentralDirectoryEndEntry.html @@ -1,5 +1,5 @@ -CentralDirectoryEndEntry | zip-stream

Interface CentralDirectoryEndEntry

Data of the central directory end entry encoded in a ".zip" file.

-
interface CentralDirectoryEndEntry {
    centralDirectoryOffset: number;
    centralDirectorySize: number;
    centralDirectoryStartDisk: number;
    comment: Uint8Array;
    numberCentralDirectoryRecords: number;
    numberCentralDirectoryRecordsOnThisDisk: number;
    numberOfDisks: number;
    signature: 101010256;
}

Properties

centralDirectoryOffset +CentralDirectoryEndEntry | zip-compressor

Interface CentralDirectoryEndEntry

Data of the central directory end entry encoded in a ".zip" file.

+
interface CentralDirectoryEndEntry {
    centralDirectoryOffset: number;
    centralDirectorySize: number;
    centralDirectoryStartDisk: number;
    comment: Uint8Array;
    numberCentralDirectoryRecords: number;
    numberCentralDirectoryRecordsOnThisDisk: number;
    numberOfDisks: number;
    signature: 101010256;
}

Properties

centralDirectoryOffset: number
centralDirectorySize: number
centralDirectoryStartDisk: number
comment: Uint8Array
numberCentralDirectoryRecords: number
numberCentralDirectoryRecordsOnThisDisk: number
numberOfDisks: number
signature: 101010256

Generated using TypeDoc

\ No newline at end of file +

Properties

centralDirectoryOffset: number
centralDirectorySize: number
centralDirectoryStartDisk: number
comment: Uint8Array
numberCentralDirectoryRecords: number
numberCentralDirectoryRecordsOnThisDisk: number
numberOfDisks: number
signature: 101010256

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/interfaces/zip_types.CentralDirectoryEntry.html b/docs/api/interfaces/zip_types.CentralDirectoryEntry.html index ec01b24..a48b7a6 100644 --- a/docs/api/interfaces/zip_types.CentralDirectoryEntry.html +++ b/docs/api/interfaces/zip_types.CentralDirectoryEntry.html @@ -1,5 +1,5 @@ -CentralDirectoryEntry | zip-stream

Interface CentralDirectoryEntry

Data of the central directory entry encoded in a ".zip" file.

-
interface CentralDirectoryEntry {
    compressedSize: number;
    compressionMethod: CompressionMethod;
    crc: number;
    diskNumber: number;
    externalAttributes: number;
    extra: Uint8Array;
    fileComment: Uint8Array;
    firstByteAt: number;
    generalPurpose: number;
    internalAttributes: number;
    isDirectory: boolean;
    lastByteAt: number;
    lastModifiedDate: number;
    lastModifiedTime: number;
    path: Uint8Array;
    signature: 33639248;
    uncompressedSize: number;
    versionCreated: number;
    versionNeeded: number;
}

Properties

compressedSize +CentralDirectoryEntry | zip-compressor

Interface CentralDirectoryEntry

Data of the central directory entry encoded in a ".zip" file.

+
interface CentralDirectoryEntry {
    compressedSize: number;
    compressionMethod: CompressionMethod;
    crc: number;
    diskNumber: number;
    externalAttributes: number;
    extra: Uint8Array;
    fileComment: Uint8Array;
    firstByteAt: number;
    generalPurpose: number;
    internalAttributes: number;
    isDirectory: boolean;
    lastByteAt: number;
    lastModifiedDate: number;
    lastModifiedTime: number;
    path: Uint8Array;
    signature: 33639248;
    uncompressedSize: number;
    versionCreated: number;
    versionNeeded: number;
}

Properties

compressedSize: number
compressionMethod: CompressionMethod
crc: number
diskNumber: number
externalAttributes: number
extra: Uint8Array
fileComment: Uint8Array
firstByteAt: number
generalPurpose: number
internalAttributes: number
isDirectory: boolean
lastByteAt: number
lastModifiedDate: number
lastModifiedTime: number
signature: 33639248
uncompressedSize: number
versionCreated: number
versionNeeded: number

Generated using TypeDoc

\ No newline at end of file +

Properties

compressedSize: number
compressionMethod: CompressionMethod
crc: number
diskNumber: number
externalAttributes: number
extra: Uint8Array
fileComment: Uint8Array
firstByteAt: number
generalPurpose: number
internalAttributes: number
isDirectory: boolean
lastByteAt: number
lastModifiedDate: number
lastModifiedTime: number
signature: 33639248
uncompressedSize: number
versionCreated: number
versionNeeded: number

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/interfaces/zip_types.FileEntry.html b/docs/api/interfaces/zip_types.FileEntry.html index c49d50f..f5bae60 100644 --- a/docs/api/interfaces/zip_types.FileEntry.html +++ b/docs/api/interfaces/zip_types.FileEntry.html @@ -1,5 +1,5 @@ -FileEntry | zip-stream

Interface FileEntry

Data of the file entry header encoded in a ".zip" file.

-
interface FileEntry {
    bytes: Uint8Array;
    compressedSize: number;
    compressionMethod: CompressionMethod;
    crc: number;
    extra: Uint8Array;
    generalPurpose: number;
    isDirectory: boolean;
    lastModifiedDate: number;
    lastModifiedTime: number;
    path: Uint8Array;
    signature: 67324752;
    uncompressedSize: number;
    version: number;
}

Hierarchy (view full)

Properties

bytes +FileEntry | zip-compressor

Data of the file entry header encoded in a ".zip" file.

+
interface FileEntry {
    bytes: Uint8Array;
    compressedSize: number;
    compressionMethod: CompressionMethod;
    crc: number;
    extra: Uint8Array;
    generalPurpose: number;
    isDirectory: boolean;
    lastModifiedDate: number;
    lastModifiedTime: number;
    path: Uint8Array;
    signature: 67324752;
    uncompressedSize: number;
    version: number;
}

Hierarchy (view full)

Properties

bytes: Uint8Array
compressedSize: number
compressionMethod: CompressionMethod
crc: number
extra: Uint8Array
generalPurpose: number
isDirectory: boolean
lastModifiedDate: number
lastModifiedTime: number
signature: 67324752
uncompressedSize: number
version: number

Generated using TypeDoc

\ No newline at end of file +

Properties

bytes: Uint8Array
compressedSize: number
compressionMethod: CompressionMethod
crc: number
extra: Uint8Array
generalPurpose: number
isDirectory: boolean
lastModifiedDate: number
lastModifiedTime: number
signature: 67324752
uncompressedSize: number
version: number

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/interfaces/zip_types.FileHeader.html b/docs/api/interfaces/zip_types.FileHeader.html index c404c8c..32f42c6 100644 --- a/docs/api/interfaces/zip_types.FileHeader.html +++ b/docs/api/interfaces/zip_types.FileHeader.html @@ -1,5 +1,5 @@ -FileHeader | zip-stream

Interface FileHeader

Data of the file entry header encoded in a ".zip" file.

-
interface FileHeader {
    compressedSize: number;
    compressionMethod: CompressionMethod;
    crc: number;
    extra: Uint8Array;
    generalPurpose: number;
    lastModifiedDate: number;
    lastModifiedTime: number;
    path: Uint8Array;
    signature: 67324752;
    uncompressedSize: number;
    version: number;
}

Hierarchy (view full)

Properties

compressedSize +FileHeader | zip-compressor

Data of the file entry header encoded in a ".zip" file.

+
interface FileHeader {
    compressedSize: number;
    compressionMethod: CompressionMethod;
    crc: number;
    extra: Uint8Array;
    generalPurpose: number;
    lastModifiedDate: number;
    lastModifiedTime: number;
    path: Uint8Array;
    signature: 67324752;
    uncompressedSize: number;
    version: number;
}

Hierarchy (view full)

Properties

compressedSize: number
compressionMethod: CompressionMethod
crc: number
extra: Uint8Array
generalPurpose: number
lastModifiedDate: number
lastModifiedTime: number
signature: 67324752
uncompressedSize: number
version: number

Generated using TypeDoc

\ No newline at end of file +

Properties

compressedSize: number
compressionMethod: CompressionMethod
crc: number
extra: Uint8Array
generalPurpose: number
lastModifiedDate: number
lastModifiedTime: number
signature: 67324752
uncompressedSize: number
version: number

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/index.html b/docs/api/modules/index.html index 9df97ca..9a9ac9a 100644 --- a/docs/api/modules/index.html +++ b/docs/api/modules/index.html @@ -1,8 +1,8 @@ -index | zip-stream

Module index

References

StreamedFile +index | zip-compressor

References

Re-exports StreamedFile
Re-exports collectBytes
Re-exports collectFile
Re-exports decodeRemoteZip
Re-exports decodeZip
Re-exports encodeZip
Re-exports iteratorToStream

Generated using TypeDoc

\ No newline at end of file +

References

Re-exports StreamedFile
Re-exports collectBytes
Re-exports collectFile
Re-exports decodeRemoteZip
Re-exports decodeZip
Re-exports encodeZip
Re-exports iteratorToStream

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_append_bytes.html b/docs/api/modules/utils_append_bytes.html index c9be075..d0601e2 100644 --- a/docs/api/modules/utils_append_bytes.html +++ b/docs/api/modules/utils_append_bytes.html @@ -1,2 +1,2 @@ -utils/append-bytes | zip-stream

Module utils/append-bytes

Index

Functions

Generated using TypeDoc

\ No newline at end of file +utils/append-bytes | zip-compressor

Module utils/append-bytes

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_collect_bytes.html b/docs/api/modules/utils_collect_bytes.html index 6672a1d..af79d32 100644 --- a/docs/api/modules/utils_collect_bytes.html +++ b/docs/api/modules/utils_collect_bytes.html @@ -1,2 +1,2 @@ -utils/collect-bytes | zip-stream

Module utils/collect-bytes

Index

Functions

Generated using TypeDoc

\ No newline at end of file +utils/collect-bytes | zip-compressor

Module utils/collect-bytes

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_collect_file.html b/docs/api/modules/utils_collect_file.html index 044660f..3ba5931 100644 --- a/docs/api/modules/utils_collect_file.html +++ b/docs/api/modules/utils_collect_file.html @@ -1,2 +1,2 @@ -utils/collect-file | zip-stream

Module utils/collect-file

Index

Functions

Generated using TypeDoc

\ No newline at end of file +utils/collect-file | zip-compressor

Module utils/collect-file

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_collect_string.html b/docs/api/modules/utils_collect_string.html index 682a8d5..dbb7d2d 100644 --- a/docs/api/modules/utils_collect_string.html +++ b/docs/api/modules/utils_collect_string.html @@ -1,2 +1,2 @@ -utils/collect-string | zip-stream

Module utils/collect-string

Index

Functions

Generated using TypeDoc

\ No newline at end of file +utils/collect-string | zip-compressor

Module utils/collect-string

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_concat_bytes.html b/docs/api/modules/utils_concat_bytes.html index 7ca0731..11f12fe 100644 --- a/docs/api/modules/utils_concat_bytes.html +++ b/docs/api/modules/utils_concat_bytes.html @@ -1,2 +1,2 @@ -utils/concat-bytes | zip-stream

Module utils/concat-bytes

Index

Functions

Generated using TypeDoc

\ No newline at end of file +utils/concat-bytes | zip-compressor

Module utils/concat-bytes

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_concat_string.html b/docs/api/modules/utils_concat_string.html index a96a577..596c7fc 100644 --- a/docs/api/modules/utils_concat_string.html +++ b/docs/api/modules/utils_concat_string.html @@ -1,2 +1,2 @@ -utils/concat-string | zip-stream

Module utils/concat-string

Index

Functions

Generated using TypeDoc

\ No newline at end of file +utils/concat-string | zip-compressor

Module utils/concat-string

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_concat_uint8_array.html b/docs/api/modules/utils_concat_uint8_array.html index ed60f9d..06c8c70 100644 --- a/docs/api/modules/utils_concat_uint8_array.html +++ b/docs/api/modules/utils_concat_uint8_array.html @@ -1,2 +1,2 @@ -utils/concat-uint8-array | zip-stream

Module utils/concat-uint8-array

Index

Functions

Generated using TypeDoc

\ No newline at end of file +utils/concat-uint8-array | zip-compressor

Module utils/concat-uint8-array

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_filter_stream.html b/docs/api/modules/utils_filter_stream.html index 906026d..6486d62 100644 --- a/docs/api/modules/utils_filter_stream.html +++ b/docs/api/modules/utils_filter_stream.html @@ -1,2 +1,2 @@ -utils/filter-stream | zip-stream

Module utils/filter-stream

Index

Functions

Generated using TypeDoc

\ No newline at end of file +utils/filter-stream | zip-compressor

Module utils/filter-stream

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_iterable_stream_polyfill.html b/docs/api/modules/utils_iterable_stream_polyfill.html index 25a21ec..e1419fd 100644 --- a/docs/api/modules/utils_iterable_stream_polyfill.html +++ b/docs/api/modules/utils_iterable_stream_polyfill.html @@ -1,2 +1,2 @@ -utils/iterable-stream-polyfill | zip-stream

Generated using TypeDoc

\ No newline at end of file +utils/iterable-stream-polyfill | zip-compressor

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_iterator_to_stream.html b/docs/api/modules/utils_iterator_to_stream.html index 9868b9e..ec1ea22 100644 --- a/docs/api/modules/utils_iterator_to_stream.html +++ b/docs/api/modules/utils_iterator_to_stream.html @@ -1,2 +1,2 @@ -utils/iterator-to-stream | zip-stream

Module utils/iterator-to-stream

Index

Functions

Generated using TypeDoc

\ No newline at end of file +utils/iterator-to-stream | zip-compressor

Module utils/iterator-to-stream

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_limit_bytes.html b/docs/api/modules/utils_limit_bytes.html index 39146fb..b6d8b9f 100644 --- a/docs/api/modules/utils_limit_bytes.html +++ b/docs/api/modules/utils_limit_bytes.html @@ -1,2 +1,2 @@ -utils/limit-bytes | zip-stream

Module utils/limit-bytes

Index

Functions

Generated using TypeDoc

\ No newline at end of file +utils/limit-bytes | zip-compressor

Module utils/limit-bytes

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_prepend_bytes.html b/docs/api/modules/utils_prepend_bytes.html index a084951..0d1113d 100644 --- a/docs/api/modules/utils_prepend_bytes.html +++ b/docs/api/modules/utils_prepend_bytes.html @@ -1,2 +1,2 @@ -utils/prepend-bytes | zip-stream

Module utils/prepend-bytes

Index

Functions

Generated using TypeDoc

\ No newline at end of file +utils/prepend-bytes | zip-compressor

Module utils/prepend-bytes

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_skip_first_bytes.html b/docs/api/modules/utils_skip_first_bytes.html index cf8e2cb..2479fcf 100644 --- a/docs/api/modules/utils_skip_first_bytes.html +++ b/docs/api/modules/utils_skip_first_bytes.html @@ -1,2 +1,2 @@ -utils/skip-first-bytes | zip-stream

Module utils/skip-first-bytes

Index

Functions

Generated using TypeDoc

\ No newline at end of file +utils/skip-first-bytes | zip-compressor

Module utils/skip-first-bytes

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_skip_last_bytes.html b/docs/api/modules/utils_skip_last_bytes.html index bfe1c68..492b8c4 100644 --- a/docs/api/modules/utils_skip_last_bytes.html +++ b/docs/api/modules/utils_skip_last_bytes.html @@ -1,2 +1,2 @@ -utils/skip-last-bytes | zip-stream

Module utils/skip-last-bytes

Index

Functions

Generated using TypeDoc

\ No newline at end of file +utils/skip-last-bytes | zip-compressor

Module utils/skip-last-bytes

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/utils_streamed_file.html b/docs/api/modules/utils_streamed_file.html index 05a5663..4991354 100644 --- a/docs/api/modules/utils_streamed_file.html +++ b/docs/api/modules/utils_streamed_file.html @@ -1,2 +1,2 @@ -utils/streamed-file | zip-stream

Module utils/streamed-file

Index

Classes

Generated using TypeDoc

\ No newline at end of file +utils/streamed-file | zip-compressor

Module utils/streamed-file

Index

Classes

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/zip.html b/docs/api/modules/zip.html index 3f5a34b..fc807c0 100644 --- a/docs/api/modules/zip.html +++ b/docs/api/modules/zip.html @@ -1,7 +1,7 @@ -zip | zip-stream

Module zip

References

decodeRemoteZip +zip | zip-compressor

References

Re-exports decodeRemoteZip
Re-exports decodeZip
Re-exports encodeZip
Re-exports readCentralDirectoryEntry
Re-exports readFileEntry
Re-exports streamZippedFileEntries

Generated using TypeDoc

\ No newline at end of file +

References

Re-exports decodeRemoteZip
Re-exports decodeZip
Re-exports encodeZip
Re-exports readCentralDirectoryEntry
Re-exports readFileEntry
Re-exports streamZippedFileEntries

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/zip_decode_remote_zip.html b/docs/api/modules/zip_decode_remote_zip.html index a3fcd29..4f1d377 100644 --- a/docs/api/modules/zip_decode_remote_zip.html +++ b/docs/api/modules/zip_decode_remote_zip.html @@ -1,2 +1,2 @@ -zip/decode-remote-zip | zip-stream

Module zip/decode-remote-zip

Index

Functions

Generated using TypeDoc

\ No newline at end of file +zip/decode-remote-zip | zip-compressor

Module zip/decode-remote-zip

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/zip_decode_zip.html b/docs/api/modules/zip_decode_zip.html index e74cf2f..99f0755 100644 --- a/docs/api/modules/zip_decode_zip.html +++ b/docs/api/modules/zip_decode_zip.html @@ -1,5 +1,5 @@ -zip/decode-zip | zip-stream

Module zip/decode-zip

Index

Functions

decodeZip +zip/decode-zip | zip-compressor

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/zip_encode_zip.html b/docs/api/modules/zip_encode_zip.html index db7c40c..51419d5 100644 --- a/docs/api/modules/zip_encode_zip.html +++ b/docs/api/modules/zip_encode_zip.html @@ -1,2 +1,2 @@ -zip/encode-zip | zip-stream

Module zip/encode-zip

Index

Functions

Generated using TypeDoc

\ No newline at end of file +zip/encode-zip | zip-compressor

Module zip/encode-zip

Index

Functions

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/zip_semaphore.html b/docs/api/modules/zip_semaphore.html index 0ea780c..10ebc00 100644 --- a/docs/api/modules/zip_semaphore.html +++ b/docs/api/modules/zip_semaphore.html @@ -1,3 +1,3 @@ -zip/semaphore | zip-stream

Module zip/semaphore

Index

Classes

default +zip/semaphore | zip-compressor

Module zip/semaphore

Index

Classes

Interfaces

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/modules/zip_types.html b/docs/api/modules/zip_types.html index fc49548..a235859 100644 --- a/docs/api/modules/zip_types.html +++ b/docs/api/modules/zip_types.html @@ -1,4 +1,4 @@ -zip/types | zip-stream

Module zip/types

Index

Interfaces

CentralDirectoryEndEntry +zip/types | zip-compressor

Generated using TypeDoc

\ No newline at end of file +

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/types/utils_iterable_stream_polyfill.IterableReadableStream.html b/docs/api/types/utils_iterable_stream_polyfill.IterableReadableStream.html index be9484a..e8e141f 100644 --- a/docs/api/types/utils_iterable_stream_polyfill.IterableReadableStream.html +++ b/docs/api/types/utils_iterable_stream_polyfill.IterableReadableStream.html @@ -1 +1 @@ -IterableReadableStream | zip-stream
IterableReadableStream<R>: ReadableStream<R> & AsyncIterable<R>

Type Parameters

  • R

Generated using TypeDoc

\ No newline at end of file +IterableReadableStream | zip-compressor
IterableReadableStream<R>: ReadableStream<R> & AsyncIterable<R>

Type Parameters

  • R

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/types/zip_types.CompressionMethod.html b/docs/api/types/zip_types.CompressionMethod.html index 4554d96..d7f369c 100644 --- a/docs/api/types/zip_types.CompressionMethod.html +++ b/docs/api/types/zip_types.CompressionMethod.html @@ -1 +1 @@ -CompressionMethod | zip-stream

Type alias CompressionMethod

CompressionMethod: typeof COMPRESSION_NONE | typeof COMPRESSION_DEFLATE

Generated using TypeDoc

\ No newline at end of file +CompressionMethod | zip-compressor

Type alias CompressionMethod

CompressionMethod: typeof COMPRESSION_NONE | typeof COMPRESSION_DEFLATE

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/types/zip_types.ZipEntry.html b/docs/api/types/zip_types.ZipEntry.html index 8650ebb..f0fedc3 100644 --- a/docs/api/types/zip_types.ZipEntry.html +++ b/docs/api/types/zip_types.ZipEntry.html @@ -1 +1 @@ -ZipEntry | zip-stream

Generated using TypeDoc

\ No newline at end of file +ZipEntry | zip-compressor

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/variables/zip_types.COMPRESSION_DEFLATE.html b/docs/api/variables/zip_types.COMPRESSION_DEFLATE.html index 59c85fa..4247d13 100644 --- a/docs/api/variables/zip_types.COMPRESSION_DEFLATE.html +++ b/docs/api/variables/zip_types.COMPRESSION_DEFLATE.html @@ -1 +1 @@ -COMPRESSION_DEFLATE | zip-stream

Variable COMPRESSION_DEFLATEConst

COMPRESSION_DEFLATE: 8 = ...

Generated using TypeDoc

\ No newline at end of file +COMPRESSION_DEFLATE | zip-compressor

Variable COMPRESSION_DEFLATEConst

COMPRESSION_DEFLATE: 8 = ...

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/variables/zip_types.COMPRESSION_NONE.html b/docs/api/variables/zip_types.COMPRESSION_NONE.html index a043520..c1d9d68 100644 --- a/docs/api/variables/zip_types.COMPRESSION_NONE.html +++ b/docs/api/variables/zip_types.COMPRESSION_NONE.html @@ -1 +1 @@ -COMPRESSION_NONE | zip-stream

Variable COMPRESSION_NONEConst

COMPRESSION_NONE: 0 = ...

Generated using TypeDoc

\ No newline at end of file +COMPRESSION_NONE | zip-compressor

Variable COMPRESSION_NONEConst

COMPRESSION_NONE: 0 = ...

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/variables/zip_types.FILE_HEADER_SIZE.html b/docs/api/variables/zip_types.FILE_HEADER_SIZE.html index 25e6a52..c41cfae 100644 --- a/docs/api/variables/zip_types.FILE_HEADER_SIZE.html +++ b/docs/api/variables/zip_types.FILE_HEADER_SIZE.html @@ -1 +1 @@ -FILE_HEADER_SIZE | zip-stream

Variable FILE_HEADER_SIZEConst

FILE_HEADER_SIZE: 32 = 32

Generated using TypeDoc

\ No newline at end of file +FILE_HEADER_SIZE | zip-compressor

Variable FILE_HEADER_SIZEConst

FILE_HEADER_SIZE: 32 = 32

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/variables/zip_types.SIGNATURE_CENTRAL_DIRECTORY.html b/docs/api/variables/zip_types.SIGNATURE_CENTRAL_DIRECTORY.html index 065bc11..c2551fe 100644 --- a/docs/api/variables/zip_types.SIGNATURE_CENTRAL_DIRECTORY.html +++ b/docs/api/variables/zip_types.SIGNATURE_CENTRAL_DIRECTORY.html @@ -1 +1 @@ -SIGNATURE_CENTRAL_DIRECTORY | zip-stream

Variable SIGNATURE_CENTRAL_DIRECTORYConst

SIGNATURE_CENTRAL_DIRECTORY: 33639248 = ...

Generated using TypeDoc

\ No newline at end of file +SIGNATURE_CENTRAL_DIRECTORY | zip-compressor

Variable SIGNATURE_CENTRAL_DIRECTORYConst

SIGNATURE_CENTRAL_DIRECTORY: 33639248 = ...

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/variables/zip_types.SIGNATURE_CENTRAL_DIRECTORY_END.html b/docs/api/variables/zip_types.SIGNATURE_CENTRAL_DIRECTORY_END.html index fcce3b9..e44d597 100644 --- a/docs/api/variables/zip_types.SIGNATURE_CENTRAL_DIRECTORY_END.html +++ b/docs/api/variables/zip_types.SIGNATURE_CENTRAL_DIRECTORY_END.html @@ -1 +1 @@ -SIGNATURE_CENTRAL_DIRECTORY_END | zip-stream

Variable SIGNATURE_CENTRAL_DIRECTORY_ENDConst

SIGNATURE_CENTRAL_DIRECTORY_END: 101010256 = ...

Generated using TypeDoc

\ No newline at end of file +SIGNATURE_CENTRAL_DIRECTORY_END | zip-compressor

Variable SIGNATURE_CENTRAL_DIRECTORY_ENDConst

SIGNATURE_CENTRAL_DIRECTORY_END: 101010256 = ...

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/variables/zip_types.SIGNATURE_DATA_DESCRIPTOR.html b/docs/api/variables/zip_types.SIGNATURE_DATA_DESCRIPTOR.html index 7673bb4..b2428ab 100644 --- a/docs/api/variables/zip_types.SIGNATURE_DATA_DESCRIPTOR.html +++ b/docs/api/variables/zip_types.SIGNATURE_DATA_DESCRIPTOR.html @@ -1 +1 @@ -SIGNATURE_DATA_DESCRIPTOR | zip-stream

Variable SIGNATURE_DATA_DESCRIPTORConst

SIGNATURE_DATA_DESCRIPTOR: 134695760 = ...

Generated using TypeDoc

\ No newline at end of file +SIGNATURE_DATA_DESCRIPTOR | zip-compressor

Variable SIGNATURE_DATA_DESCRIPTORConst

SIGNATURE_DATA_DESCRIPTOR: 134695760 = ...

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/api/variables/zip_types.SIGNATURE_FILE.html b/docs/api/variables/zip_types.SIGNATURE_FILE.html index 76a6c00..8f0bc21 100644 --- a/docs/api/variables/zip_types.SIGNATURE_FILE.html +++ b/docs/api/variables/zip_types.SIGNATURE_FILE.html @@ -1 +1 @@ -SIGNATURE_FILE | zip-stream

Variable SIGNATURE_FILEConst

SIGNATURE_FILE: 67324752 = ...

Generated using TypeDoc

\ No newline at end of file +SIGNATURE_FILE | zip-compressor

Variable SIGNATURE_FILEConst

SIGNATURE_FILE: 67324752 = ...

Generated using TypeDoc

\ No newline at end of file diff --git a/package.json b/package.json index 8dcd7fb..83c0d3e 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { - "name": "zip-stream", + "name": "zip-compressor", "version": "0.0.1", "type": "module", "description": "Encode and decode zip files with CompressionStream", "repository": { "type": "git", - "url": "https://github.com/eliot-akira/zip-stream" + "url": "https://github.com/eliot-akira/zip-compressor" }, "main": "build/cjs/index.js", "module": "build/esm/index.js",