@cj-tech-master/excelts 4.2.1 → 4.2.2-canary.20260115044841.88820eb
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/THIRD_PARTY_NOTICES.md +0 -31
- package/dist/browser/index.browser.d.ts +1 -0
- package/dist/browser/index.browser.js +12 -0
- package/dist/{esm/modules/archive → browser/modules/archive/compression}/compress.base.js +1 -1
- package/dist/{types/modules/archive → browser/modules/archive/compression}/compress.browser.d.ts +2 -8
- package/dist/browser/modules/archive/{compress.browser.js → compression/compress.browser.js} +3 -11
- package/dist/browser/modules/archive/{compress.d.ts → compression/compress.d.ts} +2 -2
- package/dist/{esm/modules/archive → browser/modules/archive/compression}/compress.js +1 -1
- package/dist/browser/modules/archive/{crc32.browser.d.ts → compression/crc32.browser.d.ts} +1 -1
- package/dist/browser/modules/archive/{crc32.d.ts → compression/crc32.d.ts} +1 -1
- package/dist/browser/modules/archive/{crc32.js → compression/crc32.js} +1 -1
- package/dist/browser/modules/archive/{deflate-fallback.js → compression/deflate-fallback.js} +1 -1
- package/dist/browser/modules/archive/{streaming-compress.browser.d.ts → compression/streaming-compress.browser.d.ts} +2 -2
- package/dist/browser/modules/archive/{streaming-compress.browser.js → compression/streaming-compress.browser.js} +3 -3
- package/dist/browser/modules/archive/{streaming-compress.d.ts → compression/streaming-compress.d.ts} +2 -2
- package/dist/browser/modules/archive/{streaming-compress.js → compression/streaming-compress.js} +2 -2
- package/dist/browser/modules/archive/defaults.d.ts +1 -0
- package/dist/browser/modules/archive/defaults.js +6 -3
- package/dist/browser/modules/archive/index.base.d.ts +4 -4
- package/dist/browser/modules/archive/index.base.js +3 -6
- package/dist/browser/modules/archive/index.browser.d.ts +3 -4
- package/dist/browser/modules/archive/index.browser.js +3 -7
- package/dist/browser/modules/archive/index.d.ts +3 -4
- package/dist/browser/modules/archive/index.js +3 -5
- package/dist/browser/modules/archive/internal/byte-queue.d.ts +33 -0
- package/dist/browser/modules/archive/internal/byte-queue.js +407 -0
- package/dist/browser/modules/archive/io/archive-sink.d.ts +8 -0
- package/dist/browser/modules/archive/io/archive-sink.js +45 -0
- package/dist/browser/modules/archive/io/archive-source.d.ts +6 -0
- package/dist/browser/modules/archive/io/archive-source.js +100 -0
- package/dist/browser/modules/archive/{extract.d.ts → unzip/extract.d.ts} +2 -2
- package/dist/browser/modules/archive/unzip/index.d.ts +40 -0
- package/dist/browser/modules/archive/unzip/index.js +164 -0
- package/dist/browser/modules/archive/{parse.base.d.ts → unzip/stream.base.d.ts} +36 -2
- package/dist/browser/modules/archive/unzip/stream.base.js +1022 -0
- package/dist/browser/modules/archive/{parse.browser.d.ts → unzip/stream.browser.d.ts} +1 -1
- package/dist/browser/modules/archive/{parse.browser.js → unzip/stream.browser.js} +371 -110
- package/dist/browser/modules/archive/{parse.d.ts → unzip/stream.d.ts} +2 -2
- package/dist/{esm/modules/archive/parse.js → browser/modules/archive/unzip/stream.js} +6 -5
- package/dist/browser/modules/archive/{zip-parser.d.ts → unzip/zip-parser.d.ts} +1 -1
- package/dist/{esm/modules/archive → browser/modules/archive/unzip}/zip-parser.js +38 -24
- package/dist/browser/modules/archive/utils/async-queue.d.ts +7 -0
- package/dist/browser/modules/archive/utils/async-queue.js +103 -0
- package/dist/browser/modules/archive/utils/bytes.js +16 -16
- package/dist/browser/modules/archive/utils/compressibility.d.ts +10 -0
- package/dist/browser/modules/archive/utils/compressibility.js +57 -0
- package/dist/browser/modules/archive/utils/parse-buffer.js +21 -23
- package/dist/browser/modules/archive/utils/pattern-scanner.d.ts +21 -0
- package/dist/browser/modules/archive/utils/pattern-scanner.js +27 -0
- package/dist/browser/modules/archive/utils/timestamps.js +62 -1
- package/dist/browser/modules/archive/utils/zip-extra-fields.d.ts +1 -1
- package/dist/browser/modules/archive/utils/zip-extra-fields.js +26 -14
- package/dist/browser/modules/archive/zip/index.d.ts +42 -0
- package/dist/browser/modules/archive/zip/index.js +157 -0
- package/dist/browser/modules/archive/{streaming-zip.d.ts → zip/stream.d.ts} +28 -5
- package/dist/browser/modules/archive/{streaming-zip.js → zip/stream.js} +192 -48
- package/dist/browser/modules/archive/zip/zip-bytes.d.ts +73 -0
- package/dist/browser/modules/archive/zip/zip-bytes.js +239 -0
- package/dist/{esm/modules/archive → browser/modules/archive/zip}/zip-entry-metadata.js +3 -3
- package/dist/browser/modules/archive/{zip-records.d.ts → zip-spec/zip-records.d.ts} +20 -0
- package/dist/browser/modules/archive/zip-spec/zip-records.js +126 -0
- package/dist/browser/modules/excel/stream/workbook-reader.browser.js +1 -1
- package/dist/browser/modules/excel/stream/workbook-writer.browser.d.ts +1 -1
- package/dist/browser/modules/excel/stream/workbook-writer.browser.js +1 -1
- package/dist/browser/modules/excel/utils/ooxml-validator.d.ts +48 -0
- package/dist/browser/modules/excel/utils/ooxml-validator.js +469 -0
- package/dist/browser/modules/excel/utils/parse-sax.d.ts +3 -0
- package/dist/browser/modules/excel/utils/parse-sax.js +32 -13
- package/dist/browser/modules/excel/worksheet.js +5 -2
- package/dist/browser/modules/excel/xlsx/xform/core/app-xform.js +3 -3
- package/dist/browser/modules/excel/xlsx/xform/core/core-xform.js +56 -68
- package/dist/browser/modules/excel/xlsx/xform/drawing/ctrl-prop-xform.d.ts +1 -0
- package/dist/browser/modules/excel/xlsx/xform/drawing/ctrl-prop-xform.js +13 -1
- package/dist/browser/modules/excel/xlsx/xform/drawing/sp-xform.d.ts +18 -0
- package/dist/browser/modules/excel/xlsx/xform/drawing/sp-xform.js +112 -0
- package/dist/browser/modules/excel/xlsx/xform/drawing/two-cell-anchor-xform.d.ts +6 -1
- package/dist/browser/modules/excel/xlsx/xform/drawing/two-cell-anchor-xform.js +30 -2
- package/dist/browser/modules/excel/xlsx/xform/drawing/vml-drawing-xform.js +11 -0
- package/dist/browser/modules/excel/xlsx/xform/list-xform.js +8 -10
- package/dist/browser/modules/excel/xlsx/xform/sheet/page-setup-xform.d.ts +1 -0
- package/dist/browser/modules/excel/xlsx/xform/sheet/page-setup-xform.js +16 -2
- package/dist/browser/modules/excel/xlsx/xform/sheet/worksheet-xform.js +110 -12
- package/dist/browser/modules/excel/xlsx/xform/strings/shared-string-xform.js +2 -3
- package/dist/browser/modules/excel/xlsx/xform/strings/text-xform.js +5 -7
- package/dist/browser/modules/excel/xlsx/xlsx.browser.js +11 -10
- package/dist/browser/modules/excel/xlsx/xlsx.js +1 -1
- package/dist/browser/modules/stream/base-transform.d.ts +3 -0
- package/dist/browser/modules/stream/base-transform.js +34 -20
- package/dist/browser/modules/stream/buffered-stream.d.ts +2 -12
- package/dist/browser/modules/stream/chunked-builder.js +4 -4
- package/dist/browser/modules/stream/index.browser.d.ts +13 -19
- package/dist/browser/modules/stream/index.browser.js +10 -22
- package/dist/browser/modules/stream/index.d.ts +18 -41
- package/dist/browser/modules/stream/index.js +15 -44
- package/dist/browser/modules/stream/internal/event-utils.d.ts +17 -0
- package/dist/browser/modules/stream/internal/event-utils.js +40 -0
- package/dist/browser/modules/stream/internal/type-guards.d.ts +9 -0
- package/dist/browser/modules/stream/internal/type-guards.js +24 -0
- package/dist/browser/modules/stream/pull-stream.d.ts +5 -6
- package/dist/browser/modules/stream/pull-stream.js +107 -43
- package/dist/browser/modules/stream/shared.d.ts +1 -1
- package/dist/browser/modules/stream/shared.js +7 -4
- package/dist/browser/modules/stream/streams.browser.d.ts +32 -44
- package/dist/browser/modules/stream/streams.browser.js +921 -836
- package/dist/browser/modules/stream/streams.d.ts +4 -20
- package/dist/browser/modules/stream/streams.js +146 -95
- package/dist/browser/modules/stream/utils.js +5 -38
- package/dist/cjs/modules/archive/{compress.base.js → compression/compress.base.js} +1 -1
- package/dist/cjs/modules/archive/{compress.browser.js → compression/compress.browser.js} +3 -11
- package/dist/cjs/modules/archive/{compress.js → compression/compress.js} +1 -1
- package/dist/cjs/modules/archive/{crc32.js → compression/crc32.js} +1 -1
- package/dist/cjs/modules/archive/{deflate-fallback.js → compression/deflate-fallback.js} +1 -1
- package/dist/cjs/modules/archive/{streaming-compress.browser.js → compression/streaming-compress.browser.js} +3 -3
- package/dist/cjs/modules/archive/{streaming-compress.js → compression/streaming-compress.js} +2 -2
- package/dist/cjs/modules/archive/defaults.js +7 -4
- package/dist/cjs/modules/archive/index.base.js +9 -19
- package/dist/cjs/modules/archive/index.browser.js +4 -10
- package/dist/cjs/modules/archive/index.js +4 -8
- package/dist/cjs/modules/archive/internal/byte-queue.js +411 -0
- package/dist/cjs/modules/archive/io/archive-sink.js +49 -0
- package/dist/cjs/modules/archive/io/archive-source.js +105 -0
- package/dist/cjs/modules/archive/unzip/index.js +170 -0
- package/dist/cjs/modules/archive/unzip/stream.base.js +1044 -0
- package/dist/cjs/modules/archive/{parse.browser.js → unzip/stream.browser.js} +372 -111
- package/dist/cjs/modules/archive/{parse.js → unzip/stream.js} +9 -8
- package/dist/cjs/modules/archive/{zip-parser.js → unzip/zip-parser.js} +47 -33
- package/dist/cjs/modules/archive/utils/async-queue.js +106 -0
- package/dist/cjs/modules/archive/utils/bytes.js +16 -16
- package/dist/cjs/modules/archive/utils/compressibility.js +60 -0
- package/dist/cjs/modules/archive/utils/parse-buffer.js +21 -23
- package/dist/cjs/modules/archive/utils/pattern-scanner.js +31 -0
- package/dist/cjs/modules/archive/utils/timestamps.js +64 -3
- package/dist/cjs/modules/archive/utils/zip-extra-fields.js +26 -14
- package/dist/cjs/modules/archive/zip/index.js +162 -0
- package/dist/cjs/modules/archive/{streaming-zip.js → zip/stream.js} +194 -50
- package/dist/cjs/modules/archive/zip/zip-bytes.js +242 -0
- package/dist/cjs/modules/archive/{zip-entry-metadata.js → zip/zip-entry-metadata.js} +5 -5
- package/dist/cjs/modules/archive/zip-spec/zip-records.js +136 -0
- package/dist/cjs/modules/excel/stream/workbook-reader.browser.js +2 -2
- package/dist/cjs/modules/excel/stream/workbook-writer.browser.js +4 -4
- package/dist/cjs/modules/excel/utils/ooxml-validator.js +475 -0
- package/dist/cjs/modules/excel/utils/parse-sax.js +32 -13
- package/dist/cjs/modules/excel/worksheet.js +5 -2
- package/dist/cjs/modules/excel/xlsx/xform/core/app-xform.js +3 -3
- package/dist/cjs/modules/excel/xlsx/xform/core/core-xform.js +56 -68
- package/dist/cjs/modules/excel/xlsx/xform/drawing/ctrl-prop-xform.js +13 -1
- package/dist/cjs/modules/excel/xlsx/xform/drawing/sp-xform.js +115 -0
- package/dist/cjs/modules/excel/xlsx/xform/drawing/two-cell-anchor-xform.js +30 -2
- package/dist/cjs/modules/excel/xlsx/xform/drawing/vml-drawing-xform.js +11 -0
- package/dist/cjs/modules/excel/xlsx/xform/list-xform.js +8 -10
- package/dist/cjs/modules/excel/xlsx/xform/sheet/page-setup-xform.js +16 -2
- package/dist/cjs/modules/excel/xlsx/xform/sheet/worksheet-xform.js +110 -12
- package/dist/cjs/modules/excel/xlsx/xform/strings/shared-string-xform.js +2 -3
- package/dist/cjs/modules/excel/xlsx/xform/strings/text-xform.js +5 -7
- package/dist/cjs/modules/excel/xlsx/xlsx.browser.js +14 -13
- package/dist/cjs/modules/excel/xlsx/xlsx.js +2 -2
- package/dist/cjs/modules/stream/base-transform.js +34 -20
- package/dist/cjs/modules/stream/chunked-builder.js +4 -4
- package/dist/cjs/modules/stream/index.browser.js +10 -17
- package/dist/cjs/modules/stream/index.js +15 -39
- package/dist/cjs/modules/stream/internal/event-utils.js +43 -0
- package/dist/cjs/modules/stream/internal/type-guards.js +30 -0
- package/dist/cjs/modules/stream/pull-stream.js +107 -43
- package/dist/cjs/modules/stream/shared.js +7 -4
- package/dist/cjs/modules/stream/streams.browser.js +927 -847
- package/dist/cjs/modules/stream/streams.js +156 -107
- package/dist/cjs/modules/stream/utils.js +3 -36
- package/dist/esm/index.browser.js +12 -0
- package/dist/{browser/modules/archive → esm/modules/archive/compression}/compress.base.js +1 -1
- package/dist/esm/modules/archive/{compress.browser.js → compression/compress.browser.js} +3 -11
- package/dist/{browser/modules/archive → esm/modules/archive/compression}/compress.js +1 -1
- package/dist/esm/modules/archive/{crc32.js → compression/crc32.js} +1 -1
- package/dist/esm/modules/archive/{deflate-fallback.js → compression/deflate-fallback.js} +1 -1
- package/dist/esm/modules/archive/{streaming-compress.browser.js → compression/streaming-compress.browser.js} +3 -3
- package/dist/esm/modules/archive/{streaming-compress.js → compression/streaming-compress.js} +2 -2
- package/dist/esm/modules/archive/defaults.js +6 -3
- package/dist/esm/modules/archive/index.base.js +3 -6
- package/dist/esm/modules/archive/index.browser.js +3 -7
- package/dist/esm/modules/archive/index.js +3 -5
- package/dist/esm/modules/archive/internal/byte-queue.js +407 -0
- package/dist/esm/modules/archive/io/archive-sink.js +45 -0
- package/dist/esm/modules/archive/io/archive-source.js +100 -0
- package/dist/esm/modules/archive/unzip/index.js +164 -0
- package/dist/esm/modules/archive/unzip/stream.base.js +1022 -0
- package/dist/esm/modules/archive/{parse.browser.js → unzip/stream.browser.js} +371 -110
- package/dist/{browser/modules/archive/parse.js → esm/modules/archive/unzip/stream.js} +6 -5
- package/dist/{browser/modules/archive → esm/modules/archive/unzip}/zip-parser.js +38 -24
- package/dist/esm/modules/archive/utils/async-queue.js +103 -0
- package/dist/esm/modules/archive/utils/bytes.js +16 -16
- package/dist/esm/modules/archive/utils/compressibility.js +57 -0
- package/dist/esm/modules/archive/utils/parse-buffer.js +21 -23
- package/dist/esm/modules/archive/utils/pattern-scanner.js +27 -0
- package/dist/esm/modules/archive/utils/timestamps.js +62 -1
- package/dist/esm/modules/archive/utils/zip-extra-fields.js +26 -14
- package/dist/esm/modules/archive/zip/index.js +157 -0
- package/dist/esm/modules/archive/{streaming-zip.js → zip/stream.js} +192 -48
- package/dist/esm/modules/archive/zip/zip-bytes.js +239 -0
- package/dist/{browser/modules/archive → esm/modules/archive/zip}/zip-entry-metadata.js +3 -3
- package/dist/esm/modules/archive/zip-spec/zip-records.js +126 -0
- package/dist/esm/modules/excel/stream/workbook-reader.browser.js +1 -1
- package/dist/esm/modules/excel/stream/workbook-writer.browser.js +1 -1
- package/dist/esm/modules/excel/utils/ooxml-validator.js +469 -0
- package/dist/esm/modules/excel/utils/parse-sax.js +32 -13
- package/dist/esm/modules/excel/worksheet.js +5 -2
- package/dist/esm/modules/excel/xlsx/xform/core/app-xform.js +3 -3
- package/dist/esm/modules/excel/xlsx/xform/core/core-xform.js +56 -68
- package/dist/esm/modules/excel/xlsx/xform/drawing/ctrl-prop-xform.js +13 -1
- package/dist/esm/modules/excel/xlsx/xform/drawing/sp-xform.js +112 -0
- package/dist/esm/modules/excel/xlsx/xform/drawing/two-cell-anchor-xform.js +30 -2
- package/dist/esm/modules/excel/xlsx/xform/drawing/vml-drawing-xform.js +11 -0
- package/dist/esm/modules/excel/xlsx/xform/list-xform.js +8 -10
- package/dist/esm/modules/excel/xlsx/xform/sheet/page-setup-xform.js +16 -2
- package/dist/esm/modules/excel/xlsx/xform/sheet/worksheet-xform.js +110 -12
- package/dist/esm/modules/excel/xlsx/xform/strings/shared-string-xform.js +2 -3
- package/dist/esm/modules/excel/xlsx/xform/strings/text-xform.js +5 -7
- package/dist/esm/modules/excel/xlsx/xlsx.browser.js +11 -10
- package/dist/esm/modules/excel/xlsx/xlsx.js +1 -1
- package/dist/esm/modules/stream/base-transform.js +34 -20
- package/dist/esm/modules/stream/chunked-builder.js +4 -4
- package/dist/esm/modules/stream/index.browser.js +10 -22
- package/dist/esm/modules/stream/index.js +15 -44
- package/dist/esm/modules/stream/internal/event-utils.js +40 -0
- package/dist/esm/modules/stream/internal/type-guards.js +24 -0
- package/dist/esm/modules/stream/pull-stream.js +107 -43
- package/dist/esm/modules/stream/shared.js +7 -4
- package/dist/esm/modules/stream/streams.browser.js +921 -836
- package/dist/esm/modules/stream/streams.js +146 -95
- package/dist/esm/modules/stream/utils.js +5 -38
- package/dist/iife/THIRD_PARTY_NOTICES.md +0 -31
- package/dist/iife/excelts.iife.js +6592 -4537
- package/dist/iife/excelts.iife.js.map +1 -1
- package/dist/iife/excelts.iife.min.js +103 -31
- package/dist/types/index.browser.d.ts +1 -0
- package/dist/{browser/modules/archive → types/modules/archive/compression}/compress.browser.d.ts +2 -8
- package/dist/types/modules/archive/{streaming-compress.browser.d.ts → compression/streaming-compress.browser.d.ts} +1 -1
- package/dist/types/modules/archive/defaults.d.ts +1 -0
- package/dist/types/modules/archive/index.base.d.ts +4 -4
- package/dist/types/modules/archive/index.browser.d.ts +3 -4
- package/dist/types/modules/archive/index.d.ts +3 -4
- package/dist/types/modules/archive/internal/byte-queue.d.ts +33 -0
- package/dist/types/modules/archive/io/archive-sink.d.ts +8 -0
- package/dist/types/modules/archive/io/archive-source.d.ts +6 -0
- package/dist/types/modules/archive/unzip/index.d.ts +40 -0
- package/dist/types/modules/archive/{parse.base.d.ts → unzip/stream.base.d.ts} +38 -4
- package/dist/types/modules/archive/{parse.browser.d.ts → unzip/stream.browser.d.ts} +2 -2
- package/dist/types/modules/archive/{parse.d.ts → unzip/stream.d.ts} +3 -3
- package/dist/types/modules/archive/{zip-parser.d.ts → unzip/zip-parser.d.ts} +1 -1
- package/dist/types/modules/archive/utils/async-queue.d.ts +7 -0
- package/dist/types/modules/archive/utils/compressibility.d.ts +10 -0
- package/dist/types/modules/archive/utils/pattern-scanner.d.ts +21 -0
- package/dist/types/modules/archive/utils/zip-extra-fields.d.ts +1 -1
- package/dist/types/modules/archive/zip/index.d.ts +42 -0
- package/dist/types/modules/archive/{streaming-zip.d.ts → zip/stream.d.ts} +29 -6
- package/dist/types/modules/archive/zip/zip-bytes.d.ts +73 -0
- package/dist/types/modules/archive/{zip-entry-metadata.d.ts → zip/zip-entry-metadata.d.ts} +1 -1
- package/dist/types/modules/archive/{zip-records.d.ts → zip-spec/zip-records.d.ts} +20 -0
- package/dist/types/modules/excel/stream/workbook-writer.browser.d.ts +1 -1
- package/dist/types/modules/excel/utils/ooxml-validator.d.ts +48 -0
- package/dist/types/modules/excel/utils/parse-sax.d.ts +3 -0
- package/dist/types/modules/excel/xlsx/xform/drawing/ctrl-prop-xform.d.ts +1 -0
- package/dist/types/modules/excel/xlsx/xform/drawing/sp-xform.d.ts +18 -0
- package/dist/types/modules/excel/xlsx/xform/drawing/two-cell-anchor-xform.d.ts +6 -1
- package/dist/types/modules/excel/xlsx/xform/sheet/page-setup-xform.d.ts +1 -0
- package/dist/types/modules/stream/base-transform.d.ts +3 -0
- package/dist/types/modules/stream/buffered-stream.d.ts +2 -12
- package/dist/types/modules/stream/index.browser.d.ts +13 -19
- package/dist/types/modules/stream/index.d.ts +18 -41
- package/dist/types/modules/stream/internal/event-utils.d.ts +17 -0
- package/dist/types/modules/stream/internal/type-guards.d.ts +9 -0
- package/dist/types/modules/stream/pull-stream.d.ts +5 -6
- package/dist/types/modules/stream/shared.d.ts +1 -1
- package/dist/types/modules/stream/streams.browser.d.ts +32 -44
- package/dist/types/modules/stream/streams.d.ts +4 -20
- package/package.json +14 -10
- package/dist/browser/modules/archive/byte-queue.d.ts +0 -18
- package/dist/browser/modules/archive/byte-queue.js +0 -125
- package/dist/browser/modules/archive/parse.base.js +0 -644
- package/dist/browser/modules/archive/utils/zip-extra.d.ts +0 -18
- package/dist/browser/modules/archive/utils/zip-extra.js +0 -68
- package/dist/browser/modules/archive/zip-builder.d.ts +0 -117
- package/dist/browser/modules/archive/zip-builder.js +0 -292
- package/dist/browser/modules/archive/zip-constants.d.ts +0 -18
- package/dist/browser/modules/archive/zip-constants.js +0 -23
- package/dist/browser/modules/archive/zip-records.js +0 -84
- package/dist/cjs/modules/archive/byte-queue.js +0 -129
- package/dist/cjs/modules/archive/parse.base.js +0 -666
- package/dist/cjs/modules/archive/utils/zip-extra.js +0 -74
- package/dist/cjs/modules/archive/zip-builder.js +0 -297
- package/dist/cjs/modules/archive/zip-constants.js +0 -26
- package/dist/cjs/modules/archive/zip-records.js +0 -90
- package/dist/esm/modules/archive/byte-queue.js +0 -125
- package/dist/esm/modules/archive/parse.base.js +0 -644
- package/dist/esm/modules/archive/utils/zip-extra.js +0 -68
- package/dist/esm/modules/archive/zip-builder.js +0 -292
- package/dist/esm/modules/archive/zip-constants.js +0 -23
- package/dist/esm/modules/archive/zip-records.js +0 -84
- package/dist/types/modules/archive/byte-queue.d.ts +0 -18
- package/dist/types/modules/archive/utils/zip-extra.d.ts +0 -18
- package/dist/types/modules/archive/zip-builder.d.ts +0 -117
- package/dist/types/modules/archive/zip-constants.d.ts +0 -18
- /package/dist/browser/modules/archive/{compress.base.d.ts → compression/compress.base.d.ts} +0 -0
- /package/dist/browser/modules/archive/{crc32.base.d.ts → compression/crc32.base.d.ts} +0 -0
- /package/dist/browser/modules/archive/{crc32.base.js → compression/crc32.base.js} +0 -0
- /package/dist/browser/modules/archive/{crc32.browser.js → compression/crc32.browser.js} +0 -0
- /package/dist/browser/modules/archive/{deflate-fallback.d.ts → compression/deflate-fallback.d.ts} +0 -0
- /package/dist/browser/modules/archive/{streaming-compress.base.d.ts → compression/streaming-compress.base.d.ts} +0 -0
- /package/dist/browser/modules/archive/{streaming-compress.base.js → compression/streaming-compress.base.js} +0 -0
- /package/dist/browser/modules/archive/{extract.js → unzip/extract.js} +0 -0
- /package/dist/browser/modules/archive/{zip-entry-metadata.d.ts → zip/zip-entry-metadata.d.ts} +0 -0
- /package/dist/browser/modules/archive/{zip-entry-info.d.ts → zip-spec/zip-entry-info.d.ts} +0 -0
- /package/dist/browser/modules/archive/{zip-entry-info.js → zip-spec/zip-entry-info.js} +0 -0
- /package/dist/cjs/modules/archive/{crc32.base.js → compression/crc32.base.js} +0 -0
- /package/dist/cjs/modules/archive/{crc32.browser.js → compression/crc32.browser.js} +0 -0
- /package/dist/cjs/modules/archive/{streaming-compress.base.js → compression/streaming-compress.base.js} +0 -0
- /package/dist/cjs/modules/archive/{extract.js → unzip/extract.js} +0 -0
- /package/dist/cjs/modules/archive/{zip-entry-info.js → zip-spec/zip-entry-info.js} +0 -0
- /package/dist/esm/modules/archive/{crc32.base.js → compression/crc32.base.js} +0 -0
- /package/dist/esm/modules/archive/{crc32.browser.js → compression/crc32.browser.js} +0 -0
- /package/dist/esm/modules/archive/{streaming-compress.base.js → compression/streaming-compress.base.js} +0 -0
- /package/dist/esm/modules/archive/{extract.js → unzip/extract.js} +0 -0
- /package/dist/esm/modules/archive/{zip-entry-info.js → zip-spec/zip-entry-info.js} +0 -0
- /package/dist/types/modules/archive/{compress.base.d.ts → compression/compress.base.d.ts} +0 -0
- /package/dist/types/modules/archive/{compress.d.ts → compression/compress.d.ts} +0 -0
- /package/dist/types/modules/archive/{crc32.base.d.ts → compression/crc32.base.d.ts} +0 -0
- /package/dist/types/modules/archive/{crc32.browser.d.ts → compression/crc32.browser.d.ts} +0 -0
- /package/dist/types/modules/archive/{crc32.d.ts → compression/crc32.d.ts} +0 -0
- /package/dist/types/modules/archive/{deflate-fallback.d.ts → compression/deflate-fallback.d.ts} +0 -0
- /package/dist/types/modules/archive/{streaming-compress.base.d.ts → compression/streaming-compress.base.d.ts} +0 -0
- /package/dist/types/modules/archive/{streaming-compress.d.ts → compression/streaming-compress.d.ts} +0 -0
- /package/dist/types/modules/archive/{extract.d.ts → unzip/extract.d.ts} +0 -0
- /package/dist/types/modules/archive/{zip-entry-info.d.ts → zip-spec/zip-entry-info.d.ts} +0 -0
|
@@ -5,8 +5,9 @@
|
|
|
5
5
|
* Provides Readable, Writable, Transform, Duplex, and PassThrough streams.
|
|
6
6
|
*/
|
|
7
7
|
import { Readable, Writable as NodeWritable, Transform, Duplex, PassThrough, pipeline as nodePipeline, finished as nodeFinished } from "stream";
|
|
8
|
-
import { BufferedStream
|
|
9
|
-
import { PullStream
|
|
8
|
+
import { BufferedStream, BufferChunk, StringChunk } from "./buffered-stream.js";
|
|
9
|
+
import { PullStream } from "./pull-stream.js";
|
|
10
|
+
import { isAsyncIterable, isReadableStream, isTransformStream, isWritableStream } from "./internal/type-guards.js";
|
|
10
11
|
/**
|
|
11
12
|
* Unified Writable class - wraps Node.js Writable with browser-compatible API
|
|
12
13
|
*
|
|
@@ -16,20 +17,34 @@ export class Writable extends NodeWritable {
|
|
|
16
17
|
constructor(options) {
|
|
17
18
|
// If wrapping an existing stream, proxy to it
|
|
18
19
|
if (options?.stream) {
|
|
20
|
+
const underlying = options.stream;
|
|
19
21
|
// Create a pass-through wrapper that proxies to the underlying stream
|
|
20
22
|
super({
|
|
21
23
|
highWaterMark: options?.highWaterMark,
|
|
22
24
|
objectMode: options?.objectMode,
|
|
23
25
|
write(chunk, encoding, callback) {
|
|
24
|
-
|
|
26
|
+
underlying.write(chunk, encoding, callback);
|
|
25
27
|
},
|
|
26
28
|
final(callback) {
|
|
27
|
-
|
|
29
|
+
underlying.end(callback);
|
|
28
30
|
}
|
|
29
31
|
});
|
|
30
|
-
// Proxy events from underlying stream
|
|
31
|
-
|
|
32
|
-
|
|
32
|
+
// Proxy events from underlying stream, but ensure we clean up listeners so
|
|
33
|
+
// the underlying stream cannot retain this wrapper longer than necessary.
|
|
34
|
+
const onUnderlyingError = (err) => {
|
|
35
|
+
this.emit("error", err);
|
|
36
|
+
};
|
|
37
|
+
const onUnderlyingClose = () => {
|
|
38
|
+
this.emit("close");
|
|
39
|
+
};
|
|
40
|
+
const cleanup = () => {
|
|
41
|
+
underlying.off("error", onUnderlyingError);
|
|
42
|
+
underlying.off("close", onUnderlyingClose);
|
|
43
|
+
};
|
|
44
|
+
underlying.on("error", onUnderlyingError);
|
|
45
|
+
underlying.on("close", onUnderlyingClose);
|
|
46
|
+
this.once("close", cleanup);
|
|
47
|
+
this.once("finish", cleanup);
|
|
33
48
|
}
|
|
34
49
|
else {
|
|
35
50
|
super({
|
|
@@ -45,6 +60,8 @@ export class Writable extends NodeWritable {
|
|
|
45
60
|
// Re-export native classes with our interfaces
|
|
46
61
|
// =============================================================================
|
|
47
62
|
export { Readable, Transform, Duplex, PassThrough };
|
|
63
|
+
// Standalone cross-platform helpers
|
|
64
|
+
export { PullStream, BufferedStream, StringChunk, BufferChunk };
|
|
48
65
|
// =============================================================================
|
|
49
66
|
// Cross-environment stream normalization
|
|
50
67
|
// =============================================================================
|
|
@@ -57,43 +74,25 @@ export function normalizeWritable(stream) {
|
|
|
57
74
|
if (stream instanceof Writable) {
|
|
58
75
|
return stream;
|
|
59
76
|
}
|
|
60
|
-
// Node.js Writable:
|
|
77
|
+
// Node.js Writable: already compatible, avoid extra wrapper allocation.
|
|
61
78
|
if (stream instanceof NodeWritable) {
|
|
62
|
-
return
|
|
79
|
+
return stream;
|
|
63
80
|
}
|
|
64
81
|
// Web WritableStream: detect by getWriter() (avoid relying on global WritableStream).
|
|
65
82
|
if (stream?.getWriter) {
|
|
66
|
-
|
|
67
|
-
return new Writable({ stream: nodeWritable });
|
|
83
|
+
return NodeWritable.fromWeb(stream);
|
|
68
84
|
}
|
|
69
|
-
// Assume it structurally matches Node's Writable
|
|
70
|
-
return
|
|
85
|
+
// Assume it structurally matches Node's Writable.
|
|
86
|
+
return stream;
|
|
71
87
|
}
|
|
72
88
|
// Import for internal use
|
|
73
89
|
import { textDecoder } from "./shared.js";
|
|
74
|
-
const isReadableStream = (value) => !!value && typeof value === "object" && typeof value.getReader === "function";
|
|
75
|
-
const isAsyncIterable = (value) => {
|
|
76
|
-
if (!value || (typeof value !== "object" && typeof value !== "function")) {
|
|
77
|
-
return false;
|
|
78
|
-
}
|
|
79
|
-
return typeof value[Symbol.asyncIterator] === "function";
|
|
80
|
-
};
|
|
81
|
-
const isWritableStream = (value) => !!value && typeof value === "object" && typeof value.getWriter === "function";
|
|
82
|
-
const isTransformStream = (value) => !!value &&
|
|
83
|
-
typeof value === "object" &&
|
|
84
|
-
!!value.readable &&
|
|
85
|
-
!!value.writable &&
|
|
86
|
-
isReadableStream(value.readable) &&
|
|
87
|
-
isWritableStream(value.writable);
|
|
88
90
|
const isPipelineOptions = (value) => {
|
|
89
91
|
if (!value || typeof value !== "object") {
|
|
90
92
|
return false;
|
|
91
93
|
}
|
|
92
|
-
//
|
|
93
|
-
// Do NOT use `"end" in obj` here because streams have `.end()` and would be
|
|
94
|
-
// misclassified as options, breaking argument parsing and potentially hanging.
|
|
94
|
+
// Avoid treating streams as options objects.
|
|
95
95
|
if (typeof value.pipe === "function" ||
|
|
96
|
-
typeof value.write === "function" ||
|
|
97
96
|
typeof value.end === "function" ||
|
|
98
97
|
typeof value.getReader === "function" ||
|
|
99
98
|
typeof value.getWriter === "function") {
|
|
@@ -180,12 +179,13 @@ export function finished(stream, optionsOrCallback, callback) {
|
|
|
180
179
|
const promise = new Promise((resolve, reject) => {
|
|
181
180
|
const normalizedStream = toNodePipelineStream(stream);
|
|
182
181
|
nodeFinished(normalizedStream, options, (err) => {
|
|
183
|
-
|
|
182
|
+
// Node.js semantics: options.error defaults to true (report errors).
|
|
183
|
+
// If options.error === false, ignore errors and resolve.
|
|
184
|
+
if (err && options?.error !== false) {
|
|
184
185
|
reject(err);
|
|
186
|
+
return;
|
|
185
187
|
}
|
|
186
|
-
|
|
187
|
-
resolve();
|
|
188
|
-
}
|
|
188
|
+
resolve();
|
|
189
189
|
});
|
|
190
190
|
});
|
|
191
191
|
if (cb) {
|
|
@@ -411,8 +411,6 @@ export function createCollector(options) {
|
|
|
411
411
|
// =============================================================================
|
|
412
412
|
// Pull Stream - Read data on demand with pattern matching
|
|
413
413
|
// =============================================================================
|
|
414
|
-
export class PullStream extends StandalonePullStream {
|
|
415
|
-
}
|
|
416
414
|
/**
|
|
417
415
|
* Create a pull stream
|
|
418
416
|
*/
|
|
@@ -422,21 +420,6 @@ export function createPullStream(options) {
|
|
|
422
420
|
// =============================================================================
|
|
423
421
|
// Buffered Stream - Efficient chunk management
|
|
424
422
|
// =============================================================================
|
|
425
|
-
/**
|
|
426
|
-
* String chunk implementation
|
|
427
|
-
*/
|
|
428
|
-
export class StringChunk extends StandaloneStringChunk {
|
|
429
|
-
}
|
|
430
|
-
/**
|
|
431
|
-
* Buffer chunk implementation
|
|
432
|
-
*/
|
|
433
|
-
export class BufferChunk extends StandaloneBufferChunk {
|
|
434
|
-
}
|
|
435
|
-
/**
|
|
436
|
-
* Buffered stream with efficient chunk management
|
|
437
|
-
*/
|
|
438
|
-
export class BufferedStream extends StandaloneBufferedStream {
|
|
439
|
-
}
|
|
440
423
|
/**
|
|
441
424
|
* Create a buffered stream
|
|
442
425
|
*/
|
|
@@ -533,13 +516,28 @@ export function addAbortSignal(signal, stream) {
|
|
|
533
516
|
stream.destroy(new Error("Aborted"));
|
|
534
517
|
return stream;
|
|
535
518
|
}
|
|
519
|
+
const cleanup = () => {
|
|
520
|
+
signal.removeEventListener("abort", onAbort);
|
|
521
|
+
stream.off?.("close", onDone);
|
|
522
|
+
stream.off?.("end", onDone);
|
|
523
|
+
stream.off?.("finish", onDone);
|
|
524
|
+
stream.off?.("error", onError);
|
|
525
|
+
};
|
|
536
526
|
const onAbort = () => {
|
|
527
|
+
cleanup();
|
|
537
528
|
stream.destroy(new Error("Aborted"));
|
|
538
529
|
};
|
|
530
|
+
const onDone = () => {
|
|
531
|
+
cleanup();
|
|
532
|
+
};
|
|
533
|
+
const onError = () => {
|
|
534
|
+
cleanup();
|
|
535
|
+
};
|
|
539
536
|
signal.addEventListener("abort", onAbort, { once: true });
|
|
540
|
-
stream.
|
|
541
|
-
|
|
542
|
-
|
|
537
|
+
stream.once?.("close", onDone);
|
|
538
|
+
stream.once?.("end", onDone);
|
|
539
|
+
stream.once?.("finish", onDone);
|
|
540
|
+
stream.once?.("error", onError);
|
|
543
541
|
return stream;
|
|
544
542
|
}
|
|
545
543
|
/**
|
|
@@ -582,56 +580,109 @@ export function compose(...transforms) {
|
|
|
582
580
|
if (len === 1 && isNativeTransform(transforms[0])) {
|
|
583
581
|
return transforms[0];
|
|
584
582
|
}
|
|
585
|
-
// Chain all transforms together
|
|
583
|
+
// Chain all transforms together once.
|
|
586
584
|
for (let i = 0; i < len - 1; i++) {
|
|
587
585
|
transforms[i].pipe(transforms[i + 1]);
|
|
588
586
|
}
|
|
589
|
-
// Create a Duplex that writes to first and reads from last
|
|
590
587
|
const first = transforms[0];
|
|
591
588
|
const last = transforms[len - 1];
|
|
592
|
-
//
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
return first.write(chunk, encodingOrCallback);
|
|
601
|
-
}
|
|
602
|
-
return first.write(chunk, encodingOrCallback, callback);
|
|
603
|
-
};
|
|
604
|
-
// Override end to end first transform
|
|
605
|
-
composed.end = function (chunkOrCallback, encodingOrCallback, callback) {
|
|
606
|
-
if (typeof chunkOrCallback === "function") {
|
|
607
|
-
first.end(chunkOrCallback);
|
|
589
|
+
// Use a private output stream so we don't have to monkey-patch `write()` on the
|
|
590
|
+
// public composed stream (which would break piping into it).
|
|
591
|
+
const output = new PassThrough({ objectMode: last.readableObjectMode ?? true });
|
|
592
|
+
last.pipe(output);
|
|
593
|
+
let outputEnded = false;
|
|
594
|
+
const pumpOutput = (target) => {
|
|
595
|
+
if (outputEnded) {
|
|
596
|
+
return;
|
|
608
597
|
}
|
|
609
|
-
|
|
610
|
-
|
|
598
|
+
while (true) {
|
|
599
|
+
const chunk = output.read();
|
|
600
|
+
if (chunk === null) {
|
|
601
|
+
break;
|
|
602
|
+
}
|
|
603
|
+
if (!target.push(chunk)) {
|
|
604
|
+
break;
|
|
605
|
+
}
|
|
611
606
|
}
|
|
612
|
-
|
|
613
|
-
|
|
607
|
+
};
|
|
608
|
+
const composed = new Transform({
|
|
609
|
+
readableObjectMode: last.readableObjectMode,
|
|
610
|
+
writableObjectMode: first.writableObjectMode,
|
|
611
|
+
transform(chunk, encoding, callback) {
|
|
612
|
+
try {
|
|
613
|
+
// Forward writes into the head of the chain.
|
|
614
|
+
first.write(chunk, encoding, callback);
|
|
615
|
+
}
|
|
616
|
+
catch (err) {
|
|
617
|
+
callback(err);
|
|
618
|
+
}
|
|
619
|
+
},
|
|
620
|
+
flush(callback) {
|
|
621
|
+
// End the head of the chain; readable completion is driven by `output` ending.
|
|
622
|
+
const onFinish = () => {
|
|
623
|
+
cleanupFlush();
|
|
624
|
+
callback();
|
|
625
|
+
};
|
|
626
|
+
const onError = (err) => {
|
|
627
|
+
cleanupFlush();
|
|
628
|
+
callback(err);
|
|
629
|
+
};
|
|
630
|
+
const cleanupFlush = () => {
|
|
631
|
+
first.off?.("finish", onFinish);
|
|
632
|
+
first.off?.("error", onError);
|
|
633
|
+
};
|
|
634
|
+
first.once?.("finish", onFinish);
|
|
635
|
+
first.once?.("error", onError);
|
|
636
|
+
first.end();
|
|
637
|
+
},
|
|
638
|
+
read() {
|
|
639
|
+
pumpOutput(this);
|
|
640
|
+
},
|
|
641
|
+
destroy(err, callback) {
|
|
642
|
+
try {
|
|
643
|
+
output.destroy(err ?? undefined);
|
|
644
|
+
for (const t of transforms) {
|
|
645
|
+
t.destroy?.(err ?? undefined);
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
finally {
|
|
649
|
+
callback(err);
|
|
650
|
+
}
|
|
614
651
|
}
|
|
615
|
-
|
|
652
|
+
});
|
|
653
|
+
const onOutputReadable = () => {
|
|
654
|
+
pumpOutput(composed);
|
|
616
655
|
};
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
656
|
+
const onOutputEnd = () => {
|
|
657
|
+
cleanupListeners();
|
|
658
|
+
outputEnded = true;
|
|
659
|
+
composed.push(null);
|
|
620
660
|
};
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
661
|
+
const onAnyError = (err) => {
|
|
662
|
+
cleanupListeners();
|
|
663
|
+
composed.destroy(err);
|
|
664
|
+
};
|
|
665
|
+
const transformErrorListeners = [];
|
|
666
|
+
const cleanupListeners = () => {
|
|
667
|
+
output.off("readable", onOutputReadable);
|
|
668
|
+
output.off("end", onOutputEnd);
|
|
669
|
+
output.off("error", onAnyError);
|
|
670
|
+
for (const { t, fn } of transformErrorListeners) {
|
|
671
|
+
t.off?.("error", fn);
|
|
672
|
+
}
|
|
673
|
+
transformErrorListeners.length = 0;
|
|
674
|
+
};
|
|
675
|
+
output.on("readable", onOutputReadable);
|
|
676
|
+
output.once("end", onOutputEnd);
|
|
677
|
+
output.once("error", onAnyError);
|
|
678
|
+
for (const t of transforms) {
|
|
679
|
+
const tt = t;
|
|
680
|
+
tt.once?.("error", onAnyError);
|
|
681
|
+
transformErrorListeners.push({ t: tt, fn: onAnyError });
|
|
682
|
+
}
|
|
683
|
+
composed.once("close", () => {
|
|
684
|
+
cleanupListeners();
|
|
628
685
|
});
|
|
629
|
-
// Forward errors from any transform
|
|
630
|
-
for (const transform of transforms) {
|
|
631
|
-
transform.on("error", (err) => {
|
|
632
|
-
composed.emit("error", err);
|
|
633
|
-
});
|
|
634
|
-
}
|
|
635
686
|
return composed;
|
|
636
687
|
}
|
|
637
688
|
/**
|
|
@@ -712,7 +763,7 @@ export function once(emitter, event, options) {
|
|
|
712
763
|
onAbort();
|
|
713
764
|
return;
|
|
714
765
|
}
|
|
715
|
-
options.signal.addEventListener("abort", onAbort);
|
|
766
|
+
options.signal.addEventListener("abort", onAbort, { once: true });
|
|
716
767
|
}
|
|
717
768
|
});
|
|
718
769
|
}
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
* Small, cross-platform helpers built on top of the platform stream
|
|
5
5
|
* implementation selected by `./streams` (Node.js or browser).
|
|
6
6
|
*/
|
|
7
|
-
import { createReadableFromArray, createTransform } from "./streams.js";
|
|
8
|
-
import { stringToUint8Array as _stringToUint8Array
|
|
7
|
+
import { consumers, createReadableFromArray, createTransform } from "./streams.js";
|
|
8
|
+
import { stringToUint8Array as _stringToUint8Array } from "./shared.js";
|
|
9
9
|
// =============================================================================
|
|
10
10
|
// High-Level Stream Consumers
|
|
11
11
|
// =============================================================================
|
|
@@ -17,46 +17,13 @@ export async function collect(stream) {
|
|
|
17
17
|
return result;
|
|
18
18
|
}
|
|
19
19
|
export async function text(stream) {
|
|
20
|
-
|
|
21
|
-
let totalLength = 0;
|
|
22
|
-
for await (const chunk of stream) {
|
|
23
|
-
chunks.push(chunk);
|
|
24
|
-
totalLength += chunk.length;
|
|
25
|
-
}
|
|
26
|
-
if (chunks.length === 1) {
|
|
27
|
-
return _uint8ArrayToString(chunks[0]);
|
|
28
|
-
}
|
|
29
|
-
const result = new Uint8Array(totalLength);
|
|
30
|
-
let offset = 0;
|
|
31
|
-
for (let i = 0, len = chunks.length; i < len; i++) {
|
|
32
|
-
const c = chunks[i];
|
|
33
|
-
result.set(c, offset);
|
|
34
|
-
offset += c.length;
|
|
35
|
-
}
|
|
36
|
-
return _uint8ArrayToString(result);
|
|
20
|
+
return consumers.text(stream);
|
|
37
21
|
}
|
|
38
22
|
export async function json(stream) {
|
|
39
|
-
|
|
40
|
-
return JSON.parse(str);
|
|
23
|
+
return consumers.json(stream);
|
|
41
24
|
}
|
|
42
25
|
export async function bytes(stream) {
|
|
43
|
-
|
|
44
|
-
let totalLength = 0;
|
|
45
|
-
for await (const chunk of stream) {
|
|
46
|
-
chunks.push(chunk);
|
|
47
|
-
totalLength += chunk.length;
|
|
48
|
-
}
|
|
49
|
-
if (chunks.length === 1) {
|
|
50
|
-
return chunks[0];
|
|
51
|
-
}
|
|
52
|
-
const result = new Uint8Array(totalLength);
|
|
53
|
-
let offset = 0;
|
|
54
|
-
for (let i = 0, len = chunks.length; i < len; i++) {
|
|
55
|
-
const c = chunks[i];
|
|
56
|
-
result.set(c, offset);
|
|
57
|
-
offset += c.length;
|
|
58
|
-
}
|
|
59
|
-
return result;
|
|
26
|
+
return consumers.buffer(stream);
|
|
60
27
|
}
|
|
61
28
|
// =============================================================================
|
|
62
29
|
// Stream Factory Helpers
|
|
@@ -62,37 +62,6 @@ SOFTWARE.
|
|
|
62
62
|
|
|
63
63
|
## Third-party component
|
|
64
64
|
|
|
65
|
-
unzipper is licensed under the MIT License:
|
|
66
|
-
|
|
67
|
-
The MIT License (MIT)
|
|
68
|
-
|
|
69
|
-
Copyright (c) 2012 - 2013 Near Infinity Corporation
|
|
70
|
-
|
|
71
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
72
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
73
|
-
in the Software without restriction, including without limitation the rights
|
|
74
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
75
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
76
|
-
furnished to do so, subject to the following conditions:
|
|
77
|
-
|
|
78
|
-
The above copyright notice and this permission notice shall be included in all
|
|
79
|
-
copies or substantial portions of the Software.
|
|
80
|
-
|
|
81
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
82
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
83
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
84
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
85
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
86
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
87
|
-
SOFTWARE.
|
|
88
|
-
|
|
89
|
-
Commits in this fork are (c) Ziggy Jonsson (ziggy.jonsson.nyc@gmail.com) and
|
|
90
|
-
fall under same licence structure as the original repo (MIT).
|
|
91
|
-
|
|
92
|
-
---
|
|
93
|
-
|
|
94
|
-
## Third-party component
|
|
95
|
-
|
|
96
65
|
saxes is licensed under the ISC License:
|
|
97
66
|
|
|
98
67
|
The ISC License
|