@pnpm/exe 11.0.6 → 11.0.8
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/dist/node-gyp-bin/node-gyp +0 -0
- package/dist/node-gyp-bin/node-gyp.cmd +0 -0
- package/dist/node_modules/node-gyp/.release-please-manifest.json +1 -1
- package/dist/node_modules/node-gyp/bin/node-gyp.js +0 -0
- package/dist/node_modules/node-gyp/gyp/.release-please-manifest.json +1 -1
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +11 -3
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +2 -3
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +1 -1
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2 -1
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +26 -16
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +1 -1
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1 -1
- package/dist/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +2 -2
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +3 -20
- package/dist/node_modules/node-gyp/gyp/pylib/packaging/tags.py +2 -14
- package/dist/node_modules/node-gyp/gyp/pyproject.toml +5 -3
- package/dist/node_modules/node-gyp/lib/download.js +55 -8
- package/dist/node_modules/node-gyp/lib/find-visualstudio.js +1 -1
- package/dist/node_modules/node-gyp/lib/process-release.js +17 -19
- package/dist/node_modules/node-gyp/package.json +3 -3
- package/dist/node_modules/{safer-buffer → undici}/LICENSE +1 -1
- package/dist/node_modules/undici/index-fetch.js +35 -0
- package/dist/node_modules/undici/index.js +169 -0
- package/dist/node_modules/undici/lib/api/abort-signal.js +57 -0
- package/dist/node_modules/undici/lib/api/api-connect.js +108 -0
- package/dist/node_modules/undici/lib/api/api-pipeline.js +251 -0
- package/dist/node_modules/undici/lib/api/api-request.js +214 -0
- package/dist/node_modules/undici/lib/api/api-stream.js +220 -0
- package/dist/node_modules/undici/lib/api/api-upgrade.js +108 -0
- package/dist/node_modules/undici/lib/api/index.js +7 -0
- package/dist/node_modules/undici/lib/api/readable.js +385 -0
- package/dist/node_modules/undici/lib/api/util.js +93 -0
- package/dist/node_modules/undici/lib/core/connect.js +240 -0
- package/dist/node_modules/undici/lib/core/constants.js +118 -0
- package/dist/node_modules/undici/lib/core/diagnostics.js +202 -0
- package/dist/node_modules/undici/lib/core/errors.js +425 -0
- package/dist/node_modules/undici/lib/core/request.js +405 -0
- package/dist/node_modules/undici/lib/core/symbols.js +67 -0
- package/dist/node_modules/undici/lib/core/tree.js +152 -0
- package/dist/node_modules/undici/lib/core/util.js +719 -0
- package/dist/node_modules/undici/lib/dispatcher/agent.js +130 -0
- package/dist/node_modules/undici/lib/dispatcher/balanced-pool.js +209 -0
- package/dist/node_modules/undici/lib/dispatcher/client-h1.js +1370 -0
- package/dist/node_modules/undici/lib/dispatcher/client-h2.js +744 -0
- package/dist/node_modules/undici/lib/dispatcher/client.js +623 -0
- package/dist/node_modules/undici/lib/dispatcher/dispatcher-base.js +198 -0
- package/dist/node_modules/undici/lib/dispatcher/dispatcher.js +65 -0
- package/dist/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +160 -0
- package/dist/node_modules/undici/lib/dispatcher/fixed-queue.js +117 -0
- package/dist/node_modules/undici/lib/dispatcher/pool-base.js +194 -0
- package/dist/node_modules/undici/lib/dispatcher/pool-stats.js +34 -0
- package/dist/node_modules/undici/lib/dispatcher/pool.js +107 -0
- package/dist/node_modules/undici/lib/dispatcher/proxy-agent.js +274 -0
- package/dist/node_modules/undici/lib/dispatcher/retry-agent.js +35 -0
- package/dist/node_modules/undici/lib/global.js +32 -0
- package/dist/node_modules/undici/lib/handler/decorator-handler.js +44 -0
- package/dist/node_modules/undici/lib/handler/redirect-handler.js +232 -0
- package/dist/node_modules/undici/lib/handler/retry-handler.js +374 -0
- package/dist/node_modules/undici/lib/interceptor/dns.js +375 -0
- package/dist/node_modules/undici/lib/interceptor/dump.js +123 -0
- package/dist/node_modules/undici/lib/interceptor/redirect-interceptor.js +21 -0
- package/dist/node_modules/undici/lib/interceptor/redirect.js +24 -0
- package/dist/node_modules/undici/lib/interceptor/response-error.js +86 -0
- package/dist/node_modules/undici/lib/interceptor/retry.js +19 -0
- package/dist/node_modules/undici/lib/llhttp/.gitkeep +0 -0
- package/dist/node_modules/undici/lib/llhttp/constants.js +278 -0
- package/dist/node_modules/undici/lib/llhttp/llhttp-wasm.js +5 -0
- package/dist/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +5 -0
- package/dist/node_modules/undici/lib/llhttp/utils.js +15 -0
- package/dist/node_modules/undici/lib/mock/mock-agent.js +160 -0
- package/dist/node_modules/undici/lib/mock/mock-client.js +59 -0
- package/dist/node_modules/undici/lib/mock/mock-errors.js +28 -0
- package/dist/node_modules/undici/lib/mock/mock-interceptor.js +207 -0
- package/dist/node_modules/undici/lib/mock/mock-pool.js +59 -0
- package/dist/node_modules/undici/lib/mock/mock-symbols.js +23 -0
- package/dist/node_modules/undici/lib/mock/mock-utils.js +367 -0
- package/dist/node_modules/undici/lib/mock/pending-interceptors-formatter.js +43 -0
- package/dist/node_modules/undici/lib/mock/pluralizer.js +29 -0
- package/dist/node_modules/undici/lib/util/timers.js +423 -0
- package/dist/node_modules/undici/lib/web/cache/cache.js +859 -0
- package/dist/node_modules/undici/lib/web/cache/cachestorage.js +152 -0
- package/dist/node_modules/undici/lib/web/cache/symbols.js +5 -0
- package/dist/node_modules/undici/lib/web/cache/util.js +45 -0
- package/dist/node_modules/undici/lib/web/cookies/constants.js +12 -0
- package/dist/node_modules/undici/lib/web/cookies/index.js +184 -0
- package/dist/node_modules/undici/lib/web/cookies/parse.js +317 -0
- package/dist/node_modules/undici/lib/web/cookies/util.js +282 -0
- package/dist/node_modules/undici/lib/web/eventsource/eventsource-stream.js +398 -0
- package/dist/node_modules/undici/lib/web/eventsource/eventsource.js +480 -0
- package/dist/node_modules/undici/lib/web/eventsource/util.js +37 -0
- package/dist/node_modules/{@npmcli/redact → undici/lib/web/fetch}/LICENSE +1 -1
- package/dist/node_modules/undici/lib/web/fetch/body.js +529 -0
- package/dist/node_modules/undici/lib/web/fetch/constants.js +124 -0
- package/dist/node_modules/undici/lib/web/fetch/data-url.js +744 -0
- package/dist/node_modules/undici/lib/web/fetch/dispatcher-weakref.js +46 -0
- package/dist/node_modules/undici/lib/web/fetch/file.js +126 -0
- package/dist/node_modules/undici/lib/web/fetch/formdata-parser.js +474 -0
- package/dist/node_modules/undici/lib/web/fetch/formdata.js +252 -0
- package/dist/node_modules/undici/lib/web/fetch/global.js +40 -0
- package/dist/node_modules/undici/lib/web/fetch/headers.js +687 -0
- package/dist/node_modules/undici/lib/web/fetch/index.js +2272 -0
- package/dist/node_modules/undici/lib/web/fetch/request.js +1037 -0
- package/dist/node_modules/undici/lib/web/fetch/response.js +610 -0
- package/dist/node_modules/undici/lib/web/fetch/symbols.js +9 -0
- package/dist/node_modules/undici/lib/web/fetch/util.js +1632 -0
- package/dist/node_modules/undici/lib/web/fetch/webidl.js +695 -0
- package/dist/node_modules/undici/lib/web/fileapi/encoding.js +290 -0
- package/dist/node_modules/undici/lib/web/fileapi/filereader.js +344 -0
- package/dist/node_modules/undici/lib/web/fileapi/progressevent.js +78 -0
- package/dist/node_modules/undici/lib/web/fileapi/symbols.js +10 -0
- package/dist/node_modules/undici/lib/web/fileapi/util.js +391 -0
- package/dist/node_modules/undici/lib/web/websocket/connection.js +371 -0
- package/dist/node_modules/undici/lib/web/websocket/constants.js +66 -0
- package/dist/node_modules/undici/lib/web/websocket/events.js +329 -0
- package/dist/node_modules/undici/lib/web/websocket/frame.js +96 -0
- package/dist/node_modules/undici/lib/web/websocket/permessage-deflate.js +100 -0
- package/dist/node_modules/undici/lib/web/websocket/receiver.js +490 -0
- package/dist/node_modules/undici/lib/web/websocket/sender.js +104 -0
- package/dist/node_modules/undici/lib/web/websocket/symbols.js +12 -0
- package/dist/node_modules/undici/lib/web/websocket/util.js +322 -0
- package/dist/node_modules/undici/lib/web/websocket/websocket.js +592 -0
- package/dist/node_modules/undici/package.json +160 -0
- package/dist/node_modules/undici/scripts/strip-comments.js +8 -0
- package/dist/node_modules/yallist/package.json +51 -12
- package/dist/pnpm.mjs +4529 -3898
- package/dist/worker.js +76 -73
- package/package.json +21 -13
- package/setup.js +17 -3
- package/dist/node_modules/@gar/promise-retry/LICENSE +0 -20
- package/dist/node_modules/@gar/promise-retry/lib/index.js +0 -62
- package/dist/node_modules/@gar/promise-retry/lib/retry.js +0 -109
- package/dist/node_modules/@gar/promise-retry/package.json +0 -45
- package/dist/node_modules/@npmcli/agent/lib/agents.js +0 -206
- package/dist/node_modules/@npmcli/agent/lib/dns.js +0 -53
- package/dist/node_modules/@npmcli/agent/lib/errors.js +0 -61
- package/dist/node_modules/@npmcli/agent/lib/index.js +0 -56
- package/dist/node_modules/@npmcli/agent/lib/options.js +0 -86
- package/dist/node_modules/@npmcli/agent/lib/proxy.js +0 -88
- package/dist/node_modules/@npmcli/agent/package.json +0 -60
- package/dist/node_modules/@npmcli/fs/lib/common/get-options.js +0 -20
- package/dist/node_modules/@npmcli/fs/lib/common/node.js +0 -9
- package/dist/node_modules/@npmcli/fs/lib/cp/LICENSE +0 -15
- package/dist/node_modules/@npmcli/fs/lib/cp/errors.js +0 -129
- package/dist/node_modules/@npmcli/fs/lib/cp/index.js +0 -22
- package/dist/node_modules/@npmcli/fs/lib/cp/polyfill.js +0 -428
- package/dist/node_modules/@npmcli/fs/lib/index.js +0 -13
- package/dist/node_modules/@npmcli/fs/lib/move-file.js +0 -78
- package/dist/node_modules/@npmcli/fs/lib/readdir-scoped.js +0 -20
- package/dist/node_modules/@npmcli/fs/lib/with-temp-dir.js +0 -39
- package/dist/node_modules/@npmcli/fs/package.json +0 -54
- package/dist/node_modules/@npmcli/redact/lib/deep-map.js +0 -71
- package/dist/node_modules/@npmcli/redact/lib/error.js +0 -28
- package/dist/node_modules/@npmcli/redact/lib/index.js +0 -44
- package/dist/node_modules/@npmcli/redact/lib/matchers.js +0 -88
- package/dist/node_modules/@npmcli/redact/lib/server.js +0 -59
- package/dist/node_modules/@npmcli/redact/lib/utils.js +0 -202
- package/dist/node_modules/@npmcli/redact/package.json +0 -52
- package/dist/node_modules/agent-base/LICENSE +0 -22
- package/dist/node_modules/agent-base/dist/helpers.js +0 -66
- package/dist/node_modules/agent-base/dist/index.js +0 -178
- package/dist/node_modules/agent-base/package.json +0 -46
- package/dist/node_modules/balanced-match/dist/commonjs/index.js +0 -59
- package/dist/node_modules/balanced-match/dist/esm/index.js +0 -54
- package/dist/node_modules/balanced-match/package.json +0 -68
- package/dist/node_modules/brace-expansion/LICENSE +0 -23
- package/dist/node_modules/brace-expansion/dist/commonjs/index.js +0 -201
- package/dist/node_modules/brace-expansion/dist/commonjs/package.json +0 -3
- package/dist/node_modules/brace-expansion/dist/esm/index.js +0 -197
- package/dist/node_modules/brace-expansion/dist/esm/package.json +0 -3
- package/dist/node_modules/brace-expansion/package.json +0 -64
- package/dist/node_modules/cacache/lib/content/path.js +0 -29
- package/dist/node_modules/cacache/lib/content/read.js +0 -165
- package/dist/node_modules/cacache/lib/content/rm.js +0 -18
- package/dist/node_modules/cacache/lib/content/write.js +0 -206
- package/dist/node_modules/cacache/lib/entry-index.js +0 -336
- package/dist/node_modules/cacache/lib/get.js +0 -170
- package/dist/node_modules/cacache/lib/index.js +0 -42
- package/dist/node_modules/cacache/lib/memoization.js +0 -72
- package/dist/node_modules/cacache/lib/put.js +0 -80
- package/dist/node_modules/cacache/lib/rm.js +0 -31
- package/dist/node_modules/cacache/lib/util/glob.js +0 -7
- package/dist/node_modules/cacache/lib/util/hash-to-segments.js +0 -7
- package/dist/node_modules/cacache/lib/util/tmp.js +0 -32
- package/dist/node_modules/cacache/lib/verify.js +0 -258
- package/dist/node_modules/cacache/package.json +0 -81
- package/dist/node_modules/debug/LICENSE +0 -20
- package/dist/node_modules/debug/package.json +0 -64
- package/dist/node_modules/debug/src/browser.js +0 -272
- package/dist/node_modules/debug/src/common.js +0 -292
- package/dist/node_modules/debug/src/index.js +0 -10
- package/dist/node_modules/debug/src/node.js +0 -263
- package/dist/node_modules/fs-minipass/LICENSE +0 -15
- package/dist/node_modules/fs-minipass/lib/index.js +0 -443
- package/dist/node_modules/fs-minipass/package.json +0 -54
- package/dist/node_modules/glob/dist/commonjs/glob.js +0 -248
- package/dist/node_modules/glob/dist/commonjs/has-magic.js +0 -27
- package/dist/node_modules/glob/dist/commonjs/ignore.js +0 -119
- package/dist/node_modules/glob/dist/commonjs/index.js +0 -68
- package/dist/node_modules/glob/dist/commonjs/index.min.js +0 -4
- package/dist/node_modules/glob/dist/commonjs/package.json +0 -3
- package/dist/node_modules/glob/dist/commonjs/pattern.js +0 -223
- package/dist/node_modules/glob/dist/commonjs/processor.js +0 -301
- package/dist/node_modules/glob/dist/commonjs/walker.js +0 -387
- package/dist/node_modules/glob/dist/esm/glob.js +0 -244
- package/dist/node_modules/glob/dist/esm/has-magic.js +0 -23
- package/dist/node_modules/glob/dist/esm/ignore.js +0 -115
- package/dist/node_modules/glob/dist/esm/index.js +0 -55
- package/dist/node_modules/glob/dist/esm/index.min.js +0 -4
- package/dist/node_modules/glob/dist/esm/package.json +0 -3
- package/dist/node_modules/glob/dist/esm/pattern.js +0 -219
- package/dist/node_modules/glob/dist/esm/processor.js +0 -294
- package/dist/node_modules/glob/dist/esm/walker.js +0 -381
- package/dist/node_modules/glob/package.json +0 -98
- package/dist/node_modules/http-cache-semantics/LICENSE +0 -9
- package/dist/node_modules/http-cache-semantics/index.js +0 -928
- package/dist/node_modules/http-cache-semantics/package.json +0 -22
- package/dist/node_modules/http-proxy-agent/LICENSE +0 -22
- package/dist/node_modules/http-proxy-agent/dist/index.js +0 -148
- package/dist/node_modules/http-proxy-agent/package.json +0 -47
- package/dist/node_modules/https-proxy-agent/LICENSE +0 -22
- package/dist/node_modules/https-proxy-agent/dist/index.js +0 -180
- package/dist/node_modules/https-proxy-agent/dist/parse-proxy-response.js +0 -101
- package/dist/node_modules/https-proxy-agent/package.json +0 -50
- package/dist/node_modules/iconv-lite/LICENSE +0 -21
- package/dist/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -532
- package/dist/node_modules/iconv-lite/encodings/dbcs-data.js +0 -185
- package/dist/node_modules/iconv-lite/encodings/index.js +0 -23
- package/dist/node_modules/iconv-lite/encodings/internal.js +0 -218
- package/dist/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -75
- package/dist/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
- package/dist/node_modules/iconv-lite/encodings/sbcs-data.js +0 -178
- package/dist/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
- package/dist/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
- package/dist/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
- package/dist/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
- package/dist/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
- package/dist/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
- package/dist/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -56
- package/dist/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
- package/dist/node_modules/iconv-lite/encodings/utf16.js +0 -187
- package/dist/node_modules/iconv-lite/encodings/utf32.js +0 -307
- package/dist/node_modules/iconv-lite/encodings/utf7.js +0 -283
- package/dist/node_modules/iconv-lite/lib/bom-handling.js +0 -48
- package/dist/node_modules/iconv-lite/lib/helpers/merge-exports.js +0 -13
- package/dist/node_modules/iconv-lite/lib/index.js +0 -182
- package/dist/node_modules/iconv-lite/lib/streams.js +0 -105
- package/dist/node_modules/iconv-lite/package.json +0 -70
- package/dist/node_modules/ip-address/LICENSE +0 -19
- package/dist/node_modules/ip-address/dist/address-error.js +0 -12
- package/dist/node_modules/ip-address/dist/common.js +0 -46
- package/dist/node_modules/ip-address/dist/ip-address.js +0 -35
- package/dist/node_modules/ip-address/dist/ipv4.js +0 -360
- package/dist/node_modules/ip-address/dist/ipv6.js +0 -1003
- package/dist/node_modules/ip-address/dist/v4/constants.js +0 -8
- package/dist/node_modules/ip-address/dist/v6/constants.js +0 -76
- package/dist/node_modules/ip-address/dist/v6/helpers.js +0 -45
- package/dist/node_modules/ip-address/dist/v6/regular-expressions.js +0 -95
- package/dist/node_modules/ip-address/package.json +0 -78
- package/dist/node_modules/lru-cache/dist/commonjs/diagnostics-channel.js +0 -10
- package/dist/node_modules/lru-cache/dist/commonjs/index.js +0 -1692
- package/dist/node_modules/lru-cache/dist/commonjs/index.min.js +0 -2
- package/dist/node_modules/lru-cache/dist/commonjs/package.json +0 -3
- package/dist/node_modules/lru-cache/dist/esm/browser/diagnostics-channel.js +0 -4
- package/dist/node_modules/lru-cache/dist/esm/browser/index.js +0 -1688
- package/dist/node_modules/lru-cache/dist/esm/browser/index.min.js +0 -2
- package/dist/node_modules/lru-cache/dist/esm/diagnostics-channel.js +0 -19
- package/dist/node_modules/lru-cache/dist/esm/index.js +0 -1688
- package/dist/node_modules/lru-cache/dist/esm/index.min.js +0 -2
- package/dist/node_modules/lru-cache/dist/esm/node/diagnostics-channel.js +0 -7
- package/dist/node_modules/lru-cache/dist/esm/node/index.js +0 -1688
- package/dist/node_modules/lru-cache/dist/esm/node/index.min.js +0 -2
- package/dist/node_modules/lru-cache/dist/esm/package.json +0 -3
- package/dist/node_modules/lru-cache/package.json +0 -126
- package/dist/node_modules/make-fetch-happen/LICENSE +0 -16
- package/dist/node_modules/make-fetch-happen/lib/cache/entry.js +0 -471
- package/dist/node_modules/make-fetch-happen/lib/cache/errors.js +0 -11
- package/dist/node_modules/make-fetch-happen/lib/cache/index.js +0 -49
- package/dist/node_modules/make-fetch-happen/lib/cache/key.js +0 -17
- package/dist/node_modules/make-fetch-happen/lib/cache/policy.js +0 -161
- package/dist/node_modules/make-fetch-happen/lib/fetch.js +0 -118
- package/dist/node_modules/make-fetch-happen/lib/index.js +0 -41
- package/dist/node_modules/make-fetch-happen/lib/options.js +0 -59
- package/dist/node_modules/make-fetch-happen/lib/pipeline.js +0 -41
- package/dist/node_modules/make-fetch-happen/lib/remote.js +0 -134
- package/dist/node_modules/make-fetch-happen/package.json +0 -75
- package/dist/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +0 -14
- package/dist/node_modules/minimatch/dist/commonjs/ast.js +0 -845
- package/dist/node_modules/minimatch/dist/commonjs/brace-expressions.js +0 -150
- package/dist/node_modules/minimatch/dist/commonjs/escape.js +0 -30
- package/dist/node_modules/minimatch/dist/commonjs/index.js +0 -1127
- package/dist/node_modules/minimatch/dist/commonjs/package.json +0 -3
- package/dist/node_modules/minimatch/dist/commonjs/unescape.js +0 -38
- package/dist/node_modules/minimatch/dist/esm/assert-valid-pattern.js +0 -10
- package/dist/node_modules/minimatch/dist/esm/ast.js +0 -841
- package/dist/node_modules/minimatch/dist/esm/brace-expressions.js +0 -146
- package/dist/node_modules/minimatch/dist/esm/escape.js +0 -26
- package/dist/node_modules/minimatch/dist/esm/index.js +0 -1114
- package/dist/node_modules/minimatch/dist/esm/package.json +0 -3
- package/dist/node_modules/minimatch/dist/esm/unescape.js +0 -34
- package/dist/node_modules/minimatch/package.json +0 -73
- package/dist/node_modules/minipass-collect/LICENSE +0 -15
- package/dist/node_modules/minipass-collect/index.js +0 -71
- package/dist/node_modules/minipass-collect/package.json +0 -30
- package/dist/node_modules/minipass-fetch/LICENSE +0 -28
- package/dist/node_modules/minipass-fetch/lib/abort-error.js +0 -17
- package/dist/node_modules/minipass-fetch/lib/blob.js +0 -97
- package/dist/node_modules/minipass-fetch/lib/body.js +0 -360
- package/dist/node_modules/minipass-fetch/lib/fetch-error.js +0 -32
- package/dist/node_modules/minipass-fetch/lib/headers.js +0 -267
- package/dist/node_modules/minipass-fetch/lib/index.js +0 -376
- package/dist/node_modules/minipass-fetch/lib/request.js +0 -282
- package/dist/node_modules/minipass-fetch/lib/response.js +0 -90
- package/dist/node_modules/minipass-fetch/package.json +0 -70
- package/dist/node_modules/minipass-flush/index.js +0 -39
- package/dist/node_modules/minipass-flush/node_modules/minipass/LICENSE +0 -15
- package/dist/node_modules/minipass-flush/node_modules/minipass/index.js +0 -649
- package/dist/node_modules/minipass-flush/node_modules/minipass/package.json +0 -56
- package/dist/node_modules/minipass-flush/package.json +0 -42
- package/dist/node_modules/minipass-pipeline/LICENSE +0 -15
- package/dist/node_modules/minipass-pipeline/index.js +0 -128
- package/dist/node_modules/minipass-pipeline/node_modules/minipass/LICENSE +0 -15
- package/dist/node_modules/minipass-pipeline/node_modules/minipass/index.js +0 -649
- package/dist/node_modules/minipass-pipeline/node_modules/minipass/package.json +0 -56
- package/dist/node_modules/minipass-pipeline/package.json +0 -29
- package/dist/node_modules/minipass-sized/LICENSE +0 -15
- package/dist/node_modules/minipass-sized/dist/commonjs/index.js +0 -69
- package/dist/node_modules/minipass-sized/dist/commonjs/package.json +0 -3
- package/dist/node_modules/minipass-sized/dist/esm/index.js +0 -64
- package/dist/node_modules/minipass-sized/dist/esm/package.json +0 -3
- package/dist/node_modules/minipass-sized/package.json +0 -69
- package/dist/node_modules/ms/index.js +0 -162
- package/dist/node_modules/ms/package.json +0 -38
- package/dist/node_modules/negotiator/LICENSE +0 -24
- package/dist/node_modules/negotiator/index.js +0 -83
- package/dist/node_modules/negotiator/lib/charset.js +0 -169
- package/dist/node_modules/negotiator/lib/encoding.js +0 -205
- package/dist/node_modules/negotiator/lib/language.js +0 -179
- package/dist/node_modules/negotiator/lib/mediaType.js +0 -294
- package/dist/node_modules/negotiator/package.json +0 -43
- package/dist/node_modules/p-map/index.js +0 -283
- package/dist/node_modules/p-map/license +0 -9
- package/dist/node_modules/p-map/package.json +0 -57
- package/dist/node_modules/path-scurry/dist/commonjs/index.js +0 -2018
- package/dist/node_modules/path-scurry/dist/commonjs/package.json +0 -3
- package/dist/node_modules/path-scurry/dist/esm/index.js +0 -1983
- package/dist/node_modules/path-scurry/dist/esm/package.json +0 -3
- package/dist/node_modules/path-scurry/package.json +0 -72
- package/dist/node_modules/safer-buffer/dangerous.js +0 -58
- package/dist/node_modules/safer-buffer/package.json +0 -34
- package/dist/node_modules/safer-buffer/safer.js +0 -77
- package/dist/node_modules/safer-buffer/tests.js +0 -406
- package/dist/node_modules/smart-buffer/.prettierrc.yaml +0 -5
- package/dist/node_modules/smart-buffer/LICENSE +0 -20
- package/dist/node_modules/smart-buffer/build/smartbuffer.js +0 -1233
- package/dist/node_modules/smart-buffer/build/utils.js +0 -108
- package/dist/node_modules/smart-buffer/package.json +0 -79
- package/dist/node_modules/socks/.eslintrc.cjs +0 -11
- package/dist/node_modules/socks/.prettierrc.yaml +0 -7
- package/dist/node_modules/socks/LICENSE +0 -20
- package/dist/node_modules/socks/build/client/socksclient.js +0 -793
- package/dist/node_modules/socks/build/common/constants.js +0 -108
- package/dist/node_modules/socks/build/common/helpers.js +0 -167
- package/dist/node_modules/socks/build/common/receivebuffer.js +0 -43
- package/dist/node_modules/socks/build/common/util.js +0 -25
- package/dist/node_modules/socks/build/index.js +0 -18
- package/dist/node_modules/socks/package.json +0 -58
- package/dist/node_modules/socks-proxy-agent/LICENSE +0 -22
- package/dist/node_modules/socks-proxy-agent/dist/index.js +0 -195
- package/dist/node_modules/socks-proxy-agent/package.json +0 -142
- package/dist/node_modules/ssri/lib/index.js +0 -550
- package/dist/node_modules/ssri/package.json +0 -66
- package/dist/node_modules/tar/node_modules/yallist/dist/commonjs/package.json +0 -3
- package/dist/node_modules/tar/node_modules/yallist/dist/esm/package.json +0 -3
- package/dist/node_modules/tar/node_modules/yallist/package.json +0 -68
- package/dist/node_modules/yallist/LICENSE +0 -15
- package/dist/node_modules/yallist/iterator.js +0 -8
- package/dist/node_modules/yallist/yallist.js +0 -426
- /package/dist/node_modules/{tar/node_modules/yallist → yallist}/dist/commonjs/index.js +0 -0
- /package/dist/node_modules/{balanced-match → yallist}/dist/commonjs/package.json +0 -0
- /package/dist/node_modules/{tar/node_modules/yallist → yallist}/dist/esm/index.js +0 -0
- /package/dist/node_modules/{balanced-match → yallist}/dist/esm/package.json +0 -0
|
@@ -0,0 +1,290 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @see https://encoding.spec.whatwg.org/#concept-encoding-get
|
|
5
|
+
* @param {string|undefined} label
|
|
6
|
+
*/
|
|
7
|
+
function getEncoding (label) {
|
|
8
|
+
if (!label) {
|
|
9
|
+
return 'failure'
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
// 1. Remove any leading and trailing ASCII whitespace from label.
|
|
13
|
+
// 2. If label is an ASCII case-insensitive match for any of the
|
|
14
|
+
// labels listed in the table below, then return the
|
|
15
|
+
// corresponding encoding; otherwise return failure.
|
|
16
|
+
switch (label.trim().toLowerCase()) {
|
|
17
|
+
case 'unicode-1-1-utf-8':
|
|
18
|
+
case 'unicode11utf8':
|
|
19
|
+
case 'unicode20utf8':
|
|
20
|
+
case 'utf-8':
|
|
21
|
+
case 'utf8':
|
|
22
|
+
case 'x-unicode20utf8':
|
|
23
|
+
return 'UTF-8'
|
|
24
|
+
case '866':
|
|
25
|
+
case 'cp866':
|
|
26
|
+
case 'csibm866':
|
|
27
|
+
case 'ibm866':
|
|
28
|
+
return 'IBM866'
|
|
29
|
+
case 'csisolatin2':
|
|
30
|
+
case 'iso-8859-2':
|
|
31
|
+
case 'iso-ir-101':
|
|
32
|
+
case 'iso8859-2':
|
|
33
|
+
case 'iso88592':
|
|
34
|
+
case 'iso_8859-2':
|
|
35
|
+
case 'iso_8859-2:1987':
|
|
36
|
+
case 'l2':
|
|
37
|
+
case 'latin2':
|
|
38
|
+
return 'ISO-8859-2'
|
|
39
|
+
case 'csisolatin3':
|
|
40
|
+
case 'iso-8859-3':
|
|
41
|
+
case 'iso-ir-109':
|
|
42
|
+
case 'iso8859-3':
|
|
43
|
+
case 'iso88593':
|
|
44
|
+
case 'iso_8859-3':
|
|
45
|
+
case 'iso_8859-3:1988':
|
|
46
|
+
case 'l3':
|
|
47
|
+
case 'latin3':
|
|
48
|
+
return 'ISO-8859-3'
|
|
49
|
+
case 'csisolatin4':
|
|
50
|
+
case 'iso-8859-4':
|
|
51
|
+
case 'iso-ir-110':
|
|
52
|
+
case 'iso8859-4':
|
|
53
|
+
case 'iso88594':
|
|
54
|
+
case 'iso_8859-4':
|
|
55
|
+
case 'iso_8859-4:1988':
|
|
56
|
+
case 'l4':
|
|
57
|
+
case 'latin4':
|
|
58
|
+
return 'ISO-8859-4'
|
|
59
|
+
case 'csisolatincyrillic':
|
|
60
|
+
case 'cyrillic':
|
|
61
|
+
case 'iso-8859-5':
|
|
62
|
+
case 'iso-ir-144':
|
|
63
|
+
case 'iso8859-5':
|
|
64
|
+
case 'iso88595':
|
|
65
|
+
case 'iso_8859-5':
|
|
66
|
+
case 'iso_8859-5:1988':
|
|
67
|
+
return 'ISO-8859-5'
|
|
68
|
+
case 'arabic':
|
|
69
|
+
case 'asmo-708':
|
|
70
|
+
case 'csiso88596e':
|
|
71
|
+
case 'csiso88596i':
|
|
72
|
+
case 'csisolatinarabic':
|
|
73
|
+
case 'ecma-114':
|
|
74
|
+
case 'iso-8859-6':
|
|
75
|
+
case 'iso-8859-6-e':
|
|
76
|
+
case 'iso-8859-6-i':
|
|
77
|
+
case 'iso-ir-127':
|
|
78
|
+
case 'iso8859-6':
|
|
79
|
+
case 'iso88596':
|
|
80
|
+
case 'iso_8859-6':
|
|
81
|
+
case 'iso_8859-6:1987':
|
|
82
|
+
return 'ISO-8859-6'
|
|
83
|
+
case 'csisolatingreek':
|
|
84
|
+
case 'ecma-118':
|
|
85
|
+
case 'elot_928':
|
|
86
|
+
case 'greek':
|
|
87
|
+
case 'greek8':
|
|
88
|
+
case 'iso-8859-7':
|
|
89
|
+
case 'iso-ir-126':
|
|
90
|
+
case 'iso8859-7':
|
|
91
|
+
case 'iso88597':
|
|
92
|
+
case 'iso_8859-7':
|
|
93
|
+
case 'iso_8859-7:1987':
|
|
94
|
+
case 'sun_eu_greek':
|
|
95
|
+
return 'ISO-8859-7'
|
|
96
|
+
case 'csiso88598e':
|
|
97
|
+
case 'csisolatinhebrew':
|
|
98
|
+
case 'hebrew':
|
|
99
|
+
case 'iso-8859-8':
|
|
100
|
+
case 'iso-8859-8-e':
|
|
101
|
+
case 'iso-ir-138':
|
|
102
|
+
case 'iso8859-8':
|
|
103
|
+
case 'iso88598':
|
|
104
|
+
case 'iso_8859-8':
|
|
105
|
+
case 'iso_8859-8:1988':
|
|
106
|
+
case 'visual':
|
|
107
|
+
return 'ISO-8859-8'
|
|
108
|
+
case 'csiso88598i':
|
|
109
|
+
case 'iso-8859-8-i':
|
|
110
|
+
case 'logical':
|
|
111
|
+
return 'ISO-8859-8-I'
|
|
112
|
+
case 'csisolatin6':
|
|
113
|
+
case 'iso-8859-10':
|
|
114
|
+
case 'iso-ir-157':
|
|
115
|
+
case 'iso8859-10':
|
|
116
|
+
case 'iso885910':
|
|
117
|
+
case 'l6':
|
|
118
|
+
case 'latin6':
|
|
119
|
+
return 'ISO-8859-10'
|
|
120
|
+
case 'iso-8859-13':
|
|
121
|
+
case 'iso8859-13':
|
|
122
|
+
case 'iso885913':
|
|
123
|
+
return 'ISO-8859-13'
|
|
124
|
+
case 'iso-8859-14':
|
|
125
|
+
case 'iso8859-14':
|
|
126
|
+
case 'iso885914':
|
|
127
|
+
return 'ISO-8859-14'
|
|
128
|
+
case 'csisolatin9':
|
|
129
|
+
case 'iso-8859-15':
|
|
130
|
+
case 'iso8859-15':
|
|
131
|
+
case 'iso885915':
|
|
132
|
+
case 'iso_8859-15':
|
|
133
|
+
case 'l9':
|
|
134
|
+
return 'ISO-8859-15'
|
|
135
|
+
case 'iso-8859-16':
|
|
136
|
+
return 'ISO-8859-16'
|
|
137
|
+
case 'cskoi8r':
|
|
138
|
+
case 'koi':
|
|
139
|
+
case 'koi8':
|
|
140
|
+
case 'koi8-r':
|
|
141
|
+
case 'koi8_r':
|
|
142
|
+
return 'KOI8-R'
|
|
143
|
+
case 'koi8-ru':
|
|
144
|
+
case 'koi8-u':
|
|
145
|
+
return 'KOI8-U'
|
|
146
|
+
case 'csmacintosh':
|
|
147
|
+
case 'mac':
|
|
148
|
+
case 'macintosh':
|
|
149
|
+
case 'x-mac-roman':
|
|
150
|
+
return 'macintosh'
|
|
151
|
+
case 'iso-8859-11':
|
|
152
|
+
case 'iso8859-11':
|
|
153
|
+
case 'iso885911':
|
|
154
|
+
case 'tis-620':
|
|
155
|
+
case 'windows-874':
|
|
156
|
+
return 'windows-874'
|
|
157
|
+
case 'cp1250':
|
|
158
|
+
case 'windows-1250':
|
|
159
|
+
case 'x-cp1250':
|
|
160
|
+
return 'windows-1250'
|
|
161
|
+
case 'cp1251':
|
|
162
|
+
case 'windows-1251':
|
|
163
|
+
case 'x-cp1251':
|
|
164
|
+
return 'windows-1251'
|
|
165
|
+
case 'ansi_x3.4-1968':
|
|
166
|
+
case 'ascii':
|
|
167
|
+
case 'cp1252':
|
|
168
|
+
case 'cp819':
|
|
169
|
+
case 'csisolatin1':
|
|
170
|
+
case 'ibm819':
|
|
171
|
+
case 'iso-8859-1':
|
|
172
|
+
case 'iso-ir-100':
|
|
173
|
+
case 'iso8859-1':
|
|
174
|
+
case 'iso88591':
|
|
175
|
+
case 'iso_8859-1':
|
|
176
|
+
case 'iso_8859-1:1987':
|
|
177
|
+
case 'l1':
|
|
178
|
+
case 'latin1':
|
|
179
|
+
case 'us-ascii':
|
|
180
|
+
case 'windows-1252':
|
|
181
|
+
case 'x-cp1252':
|
|
182
|
+
return 'windows-1252'
|
|
183
|
+
case 'cp1253':
|
|
184
|
+
case 'windows-1253':
|
|
185
|
+
case 'x-cp1253':
|
|
186
|
+
return 'windows-1253'
|
|
187
|
+
case 'cp1254':
|
|
188
|
+
case 'csisolatin5':
|
|
189
|
+
case 'iso-8859-9':
|
|
190
|
+
case 'iso-ir-148':
|
|
191
|
+
case 'iso8859-9':
|
|
192
|
+
case 'iso88599':
|
|
193
|
+
case 'iso_8859-9':
|
|
194
|
+
case 'iso_8859-9:1989':
|
|
195
|
+
case 'l5':
|
|
196
|
+
case 'latin5':
|
|
197
|
+
case 'windows-1254':
|
|
198
|
+
case 'x-cp1254':
|
|
199
|
+
return 'windows-1254'
|
|
200
|
+
case 'cp1255':
|
|
201
|
+
case 'windows-1255':
|
|
202
|
+
case 'x-cp1255':
|
|
203
|
+
return 'windows-1255'
|
|
204
|
+
case 'cp1256':
|
|
205
|
+
case 'windows-1256':
|
|
206
|
+
case 'x-cp1256':
|
|
207
|
+
return 'windows-1256'
|
|
208
|
+
case 'cp1257':
|
|
209
|
+
case 'windows-1257':
|
|
210
|
+
case 'x-cp1257':
|
|
211
|
+
return 'windows-1257'
|
|
212
|
+
case 'cp1258':
|
|
213
|
+
case 'windows-1258':
|
|
214
|
+
case 'x-cp1258':
|
|
215
|
+
return 'windows-1258'
|
|
216
|
+
case 'x-mac-cyrillic':
|
|
217
|
+
case 'x-mac-ukrainian':
|
|
218
|
+
return 'x-mac-cyrillic'
|
|
219
|
+
case 'chinese':
|
|
220
|
+
case 'csgb2312':
|
|
221
|
+
case 'csiso58gb231280':
|
|
222
|
+
case 'gb2312':
|
|
223
|
+
case 'gb_2312':
|
|
224
|
+
case 'gb_2312-80':
|
|
225
|
+
case 'gbk':
|
|
226
|
+
case 'iso-ir-58':
|
|
227
|
+
case 'x-gbk':
|
|
228
|
+
return 'GBK'
|
|
229
|
+
case 'gb18030':
|
|
230
|
+
return 'gb18030'
|
|
231
|
+
case 'big5':
|
|
232
|
+
case 'big5-hkscs':
|
|
233
|
+
case 'cn-big5':
|
|
234
|
+
case 'csbig5':
|
|
235
|
+
case 'x-x-big5':
|
|
236
|
+
return 'Big5'
|
|
237
|
+
case 'cseucpkdfmtjapanese':
|
|
238
|
+
case 'euc-jp':
|
|
239
|
+
case 'x-euc-jp':
|
|
240
|
+
return 'EUC-JP'
|
|
241
|
+
case 'csiso2022jp':
|
|
242
|
+
case 'iso-2022-jp':
|
|
243
|
+
return 'ISO-2022-JP'
|
|
244
|
+
case 'csshiftjis':
|
|
245
|
+
case 'ms932':
|
|
246
|
+
case 'ms_kanji':
|
|
247
|
+
case 'shift-jis':
|
|
248
|
+
case 'shift_jis':
|
|
249
|
+
case 'sjis':
|
|
250
|
+
case 'windows-31j':
|
|
251
|
+
case 'x-sjis':
|
|
252
|
+
return 'Shift_JIS'
|
|
253
|
+
case 'cseuckr':
|
|
254
|
+
case 'csksc56011987':
|
|
255
|
+
case 'euc-kr':
|
|
256
|
+
case 'iso-ir-149':
|
|
257
|
+
case 'korean':
|
|
258
|
+
case 'ks_c_5601-1987':
|
|
259
|
+
case 'ks_c_5601-1989':
|
|
260
|
+
case 'ksc5601':
|
|
261
|
+
case 'ksc_5601':
|
|
262
|
+
case 'windows-949':
|
|
263
|
+
return 'EUC-KR'
|
|
264
|
+
case 'csiso2022kr':
|
|
265
|
+
case 'hz-gb-2312':
|
|
266
|
+
case 'iso-2022-cn':
|
|
267
|
+
case 'iso-2022-cn-ext':
|
|
268
|
+
case 'iso-2022-kr':
|
|
269
|
+
case 'replacement':
|
|
270
|
+
return 'replacement'
|
|
271
|
+
case 'unicodefffe':
|
|
272
|
+
case 'utf-16be':
|
|
273
|
+
return 'UTF-16BE'
|
|
274
|
+
case 'csunicode':
|
|
275
|
+
case 'iso-10646-ucs-2':
|
|
276
|
+
case 'ucs-2':
|
|
277
|
+
case 'unicode':
|
|
278
|
+
case 'unicodefeff':
|
|
279
|
+
case 'utf-16':
|
|
280
|
+
case 'utf-16le':
|
|
281
|
+
return 'UTF-16LE'
|
|
282
|
+
case 'x-user-defined':
|
|
283
|
+
return 'x-user-defined'
|
|
284
|
+
default: return 'failure'
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
module.exports = {
|
|
289
|
+
getEncoding
|
|
290
|
+
}
|
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const {
|
|
4
|
+
staticPropertyDescriptors,
|
|
5
|
+
readOperation,
|
|
6
|
+
fireAProgressEvent
|
|
7
|
+
} = require('./util')
|
|
8
|
+
const {
|
|
9
|
+
kState,
|
|
10
|
+
kError,
|
|
11
|
+
kResult,
|
|
12
|
+
kEvents,
|
|
13
|
+
kAborted
|
|
14
|
+
} = require('./symbols')
|
|
15
|
+
const { webidl } = require('../fetch/webidl')
|
|
16
|
+
const { kEnumerableProperty } = require('../../core/util')
|
|
17
|
+
|
|
18
|
+
class FileReader extends EventTarget {
|
|
19
|
+
constructor () {
|
|
20
|
+
super()
|
|
21
|
+
|
|
22
|
+
this[kState] = 'empty'
|
|
23
|
+
this[kResult] = null
|
|
24
|
+
this[kError] = null
|
|
25
|
+
this[kEvents] = {
|
|
26
|
+
loadend: null,
|
|
27
|
+
error: null,
|
|
28
|
+
abort: null,
|
|
29
|
+
load: null,
|
|
30
|
+
progress: null,
|
|
31
|
+
loadstart: null
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @see https://w3c.github.io/FileAPI/#dfn-readAsArrayBuffer
|
|
37
|
+
* @param {import('buffer').Blob} blob
|
|
38
|
+
*/
|
|
39
|
+
readAsArrayBuffer (blob) {
|
|
40
|
+
webidl.brandCheck(this, FileReader)
|
|
41
|
+
|
|
42
|
+
webidl.argumentLengthCheck(arguments, 1, 'FileReader.readAsArrayBuffer')
|
|
43
|
+
|
|
44
|
+
blob = webidl.converters.Blob(blob, { strict: false })
|
|
45
|
+
|
|
46
|
+
// The readAsArrayBuffer(blob) method, when invoked,
|
|
47
|
+
// must initiate a read operation for blob with ArrayBuffer.
|
|
48
|
+
readOperation(this, blob, 'ArrayBuffer')
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* @see https://w3c.github.io/FileAPI/#readAsBinaryString
|
|
53
|
+
* @param {import('buffer').Blob} blob
|
|
54
|
+
*/
|
|
55
|
+
readAsBinaryString (blob) {
|
|
56
|
+
webidl.brandCheck(this, FileReader)
|
|
57
|
+
|
|
58
|
+
webidl.argumentLengthCheck(arguments, 1, 'FileReader.readAsBinaryString')
|
|
59
|
+
|
|
60
|
+
blob = webidl.converters.Blob(blob, { strict: false })
|
|
61
|
+
|
|
62
|
+
// The readAsBinaryString(blob) method, when invoked,
|
|
63
|
+
// must initiate a read operation for blob with BinaryString.
|
|
64
|
+
readOperation(this, blob, 'BinaryString')
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* @see https://w3c.github.io/FileAPI/#readAsDataText
|
|
69
|
+
* @param {import('buffer').Blob} blob
|
|
70
|
+
* @param {string?} encoding
|
|
71
|
+
*/
|
|
72
|
+
readAsText (blob, encoding = undefined) {
|
|
73
|
+
webidl.brandCheck(this, FileReader)
|
|
74
|
+
|
|
75
|
+
webidl.argumentLengthCheck(arguments, 1, 'FileReader.readAsText')
|
|
76
|
+
|
|
77
|
+
blob = webidl.converters.Blob(blob, { strict: false })
|
|
78
|
+
|
|
79
|
+
if (encoding !== undefined) {
|
|
80
|
+
encoding = webidl.converters.DOMString(encoding, 'FileReader.readAsText', 'encoding')
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// The readAsText(blob, encoding) method, when invoked,
|
|
84
|
+
// must initiate a read operation for blob with Text and encoding.
|
|
85
|
+
readOperation(this, blob, 'Text', encoding)
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* @see https://w3c.github.io/FileAPI/#dfn-readAsDataURL
|
|
90
|
+
* @param {import('buffer').Blob} blob
|
|
91
|
+
*/
|
|
92
|
+
readAsDataURL (blob) {
|
|
93
|
+
webidl.brandCheck(this, FileReader)
|
|
94
|
+
|
|
95
|
+
webidl.argumentLengthCheck(arguments, 1, 'FileReader.readAsDataURL')
|
|
96
|
+
|
|
97
|
+
blob = webidl.converters.Blob(blob, { strict: false })
|
|
98
|
+
|
|
99
|
+
// The readAsDataURL(blob) method, when invoked, must
|
|
100
|
+
// initiate a read operation for blob with DataURL.
|
|
101
|
+
readOperation(this, blob, 'DataURL')
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* @see https://w3c.github.io/FileAPI/#dfn-abort
|
|
106
|
+
*/
|
|
107
|
+
abort () {
|
|
108
|
+
// 1. If this's state is "empty" or if this's state is
|
|
109
|
+
// "done" set this's result to null and terminate
|
|
110
|
+
// this algorithm.
|
|
111
|
+
if (this[kState] === 'empty' || this[kState] === 'done') {
|
|
112
|
+
this[kResult] = null
|
|
113
|
+
return
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// 2. If this's state is "loading" set this's state to
|
|
117
|
+
// "done" and set this's result to null.
|
|
118
|
+
if (this[kState] === 'loading') {
|
|
119
|
+
this[kState] = 'done'
|
|
120
|
+
this[kResult] = null
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// 3. If there are any tasks from this on the file reading
|
|
124
|
+
// task source in an affiliated task queue, then remove
|
|
125
|
+
// those tasks from that task queue.
|
|
126
|
+
this[kAborted] = true
|
|
127
|
+
|
|
128
|
+
// 4. Terminate the algorithm for the read method being processed.
|
|
129
|
+
// TODO
|
|
130
|
+
|
|
131
|
+
// 5. Fire a progress event called abort at this.
|
|
132
|
+
fireAProgressEvent('abort', this)
|
|
133
|
+
|
|
134
|
+
// 6. If this's state is not "loading", fire a progress
|
|
135
|
+
// event called loadend at this.
|
|
136
|
+
if (this[kState] !== 'loading') {
|
|
137
|
+
fireAProgressEvent('loadend', this)
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* @see https://w3c.github.io/FileAPI/#dom-filereader-readystate
|
|
143
|
+
*/
|
|
144
|
+
get readyState () {
|
|
145
|
+
webidl.brandCheck(this, FileReader)
|
|
146
|
+
|
|
147
|
+
switch (this[kState]) {
|
|
148
|
+
case 'empty': return this.EMPTY
|
|
149
|
+
case 'loading': return this.LOADING
|
|
150
|
+
case 'done': return this.DONE
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* @see https://w3c.github.io/FileAPI/#dom-filereader-result
|
|
156
|
+
*/
|
|
157
|
+
get result () {
|
|
158
|
+
webidl.brandCheck(this, FileReader)
|
|
159
|
+
|
|
160
|
+
// The result attribute’s getter, when invoked, must return
|
|
161
|
+
// this's result.
|
|
162
|
+
return this[kResult]
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* @see https://w3c.github.io/FileAPI/#dom-filereader-error
|
|
167
|
+
*/
|
|
168
|
+
get error () {
|
|
169
|
+
webidl.brandCheck(this, FileReader)
|
|
170
|
+
|
|
171
|
+
// The error attribute’s getter, when invoked, must return
|
|
172
|
+
// this's error.
|
|
173
|
+
return this[kError]
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
get onloadend () {
|
|
177
|
+
webidl.brandCheck(this, FileReader)
|
|
178
|
+
|
|
179
|
+
return this[kEvents].loadend
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
set onloadend (fn) {
|
|
183
|
+
webidl.brandCheck(this, FileReader)
|
|
184
|
+
|
|
185
|
+
if (this[kEvents].loadend) {
|
|
186
|
+
this.removeEventListener('loadend', this[kEvents].loadend)
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
if (typeof fn === 'function') {
|
|
190
|
+
this[kEvents].loadend = fn
|
|
191
|
+
this.addEventListener('loadend', fn)
|
|
192
|
+
} else {
|
|
193
|
+
this[kEvents].loadend = null
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
get onerror () {
|
|
198
|
+
webidl.brandCheck(this, FileReader)
|
|
199
|
+
|
|
200
|
+
return this[kEvents].error
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
set onerror (fn) {
|
|
204
|
+
webidl.brandCheck(this, FileReader)
|
|
205
|
+
|
|
206
|
+
if (this[kEvents].error) {
|
|
207
|
+
this.removeEventListener('error', this[kEvents].error)
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
if (typeof fn === 'function') {
|
|
211
|
+
this[kEvents].error = fn
|
|
212
|
+
this.addEventListener('error', fn)
|
|
213
|
+
} else {
|
|
214
|
+
this[kEvents].error = null
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
get onloadstart () {
|
|
219
|
+
webidl.brandCheck(this, FileReader)
|
|
220
|
+
|
|
221
|
+
return this[kEvents].loadstart
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
set onloadstart (fn) {
|
|
225
|
+
webidl.brandCheck(this, FileReader)
|
|
226
|
+
|
|
227
|
+
if (this[kEvents].loadstart) {
|
|
228
|
+
this.removeEventListener('loadstart', this[kEvents].loadstart)
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
if (typeof fn === 'function') {
|
|
232
|
+
this[kEvents].loadstart = fn
|
|
233
|
+
this.addEventListener('loadstart', fn)
|
|
234
|
+
} else {
|
|
235
|
+
this[kEvents].loadstart = null
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
get onprogress () {
|
|
240
|
+
webidl.brandCheck(this, FileReader)
|
|
241
|
+
|
|
242
|
+
return this[kEvents].progress
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
set onprogress (fn) {
|
|
246
|
+
webidl.brandCheck(this, FileReader)
|
|
247
|
+
|
|
248
|
+
if (this[kEvents].progress) {
|
|
249
|
+
this.removeEventListener('progress', this[kEvents].progress)
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
if (typeof fn === 'function') {
|
|
253
|
+
this[kEvents].progress = fn
|
|
254
|
+
this.addEventListener('progress', fn)
|
|
255
|
+
} else {
|
|
256
|
+
this[kEvents].progress = null
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
get onload () {
|
|
261
|
+
webidl.brandCheck(this, FileReader)
|
|
262
|
+
|
|
263
|
+
return this[kEvents].load
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
set onload (fn) {
|
|
267
|
+
webidl.brandCheck(this, FileReader)
|
|
268
|
+
|
|
269
|
+
if (this[kEvents].load) {
|
|
270
|
+
this.removeEventListener('load', this[kEvents].load)
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
if (typeof fn === 'function') {
|
|
274
|
+
this[kEvents].load = fn
|
|
275
|
+
this.addEventListener('load', fn)
|
|
276
|
+
} else {
|
|
277
|
+
this[kEvents].load = null
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
get onabort () {
|
|
282
|
+
webidl.brandCheck(this, FileReader)
|
|
283
|
+
|
|
284
|
+
return this[kEvents].abort
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
set onabort (fn) {
|
|
288
|
+
webidl.brandCheck(this, FileReader)
|
|
289
|
+
|
|
290
|
+
if (this[kEvents].abort) {
|
|
291
|
+
this.removeEventListener('abort', this[kEvents].abort)
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
if (typeof fn === 'function') {
|
|
295
|
+
this[kEvents].abort = fn
|
|
296
|
+
this.addEventListener('abort', fn)
|
|
297
|
+
} else {
|
|
298
|
+
this[kEvents].abort = null
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
// https://w3c.github.io/FileAPI/#dom-filereader-empty
|
|
304
|
+
FileReader.EMPTY = FileReader.prototype.EMPTY = 0
|
|
305
|
+
// https://w3c.github.io/FileAPI/#dom-filereader-loading
|
|
306
|
+
FileReader.LOADING = FileReader.prototype.LOADING = 1
|
|
307
|
+
// https://w3c.github.io/FileAPI/#dom-filereader-done
|
|
308
|
+
FileReader.DONE = FileReader.prototype.DONE = 2
|
|
309
|
+
|
|
310
|
+
Object.defineProperties(FileReader.prototype, {
|
|
311
|
+
EMPTY: staticPropertyDescriptors,
|
|
312
|
+
LOADING: staticPropertyDescriptors,
|
|
313
|
+
DONE: staticPropertyDescriptors,
|
|
314
|
+
readAsArrayBuffer: kEnumerableProperty,
|
|
315
|
+
readAsBinaryString: kEnumerableProperty,
|
|
316
|
+
readAsText: kEnumerableProperty,
|
|
317
|
+
readAsDataURL: kEnumerableProperty,
|
|
318
|
+
abort: kEnumerableProperty,
|
|
319
|
+
readyState: kEnumerableProperty,
|
|
320
|
+
result: kEnumerableProperty,
|
|
321
|
+
error: kEnumerableProperty,
|
|
322
|
+
onloadstart: kEnumerableProperty,
|
|
323
|
+
onprogress: kEnumerableProperty,
|
|
324
|
+
onload: kEnumerableProperty,
|
|
325
|
+
onabort: kEnumerableProperty,
|
|
326
|
+
onerror: kEnumerableProperty,
|
|
327
|
+
onloadend: kEnumerableProperty,
|
|
328
|
+
[Symbol.toStringTag]: {
|
|
329
|
+
value: 'FileReader',
|
|
330
|
+
writable: false,
|
|
331
|
+
enumerable: false,
|
|
332
|
+
configurable: true
|
|
333
|
+
}
|
|
334
|
+
})
|
|
335
|
+
|
|
336
|
+
Object.defineProperties(FileReader, {
|
|
337
|
+
EMPTY: staticPropertyDescriptors,
|
|
338
|
+
LOADING: staticPropertyDescriptors,
|
|
339
|
+
DONE: staticPropertyDescriptors
|
|
340
|
+
})
|
|
341
|
+
|
|
342
|
+
module.exports = {
|
|
343
|
+
FileReader
|
|
344
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const { webidl } = require('../fetch/webidl')
|
|
4
|
+
|
|
5
|
+
const kState = Symbol('ProgressEvent state')
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @see https://xhr.spec.whatwg.org/#progressevent
|
|
9
|
+
*/
|
|
10
|
+
class ProgressEvent extends Event {
|
|
11
|
+
constructor (type, eventInitDict = {}) {
|
|
12
|
+
type = webidl.converters.DOMString(type, 'ProgressEvent constructor', 'type')
|
|
13
|
+
eventInitDict = webidl.converters.ProgressEventInit(eventInitDict ?? {})
|
|
14
|
+
|
|
15
|
+
super(type, eventInitDict)
|
|
16
|
+
|
|
17
|
+
this[kState] = {
|
|
18
|
+
lengthComputable: eventInitDict.lengthComputable,
|
|
19
|
+
loaded: eventInitDict.loaded,
|
|
20
|
+
total: eventInitDict.total
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
get lengthComputable () {
|
|
25
|
+
webidl.brandCheck(this, ProgressEvent)
|
|
26
|
+
|
|
27
|
+
return this[kState].lengthComputable
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
get loaded () {
|
|
31
|
+
webidl.brandCheck(this, ProgressEvent)
|
|
32
|
+
|
|
33
|
+
return this[kState].loaded
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
get total () {
|
|
37
|
+
webidl.brandCheck(this, ProgressEvent)
|
|
38
|
+
|
|
39
|
+
return this[kState].total
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
webidl.converters.ProgressEventInit = webidl.dictionaryConverter([
|
|
44
|
+
{
|
|
45
|
+
key: 'lengthComputable',
|
|
46
|
+
converter: webidl.converters.boolean,
|
|
47
|
+
defaultValue: () => false
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
key: 'loaded',
|
|
51
|
+
converter: webidl.converters['unsigned long long'],
|
|
52
|
+
defaultValue: () => 0
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
key: 'total',
|
|
56
|
+
converter: webidl.converters['unsigned long long'],
|
|
57
|
+
defaultValue: () => 0
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
key: 'bubbles',
|
|
61
|
+
converter: webidl.converters.boolean,
|
|
62
|
+
defaultValue: () => false
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
key: 'cancelable',
|
|
66
|
+
converter: webidl.converters.boolean,
|
|
67
|
+
defaultValue: () => false
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
key: 'composed',
|
|
71
|
+
converter: webidl.converters.boolean,
|
|
72
|
+
defaultValue: () => false
|
|
73
|
+
}
|
|
74
|
+
])
|
|
75
|
+
|
|
76
|
+
module.exports = {
|
|
77
|
+
ProgressEvent
|
|
78
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
module.exports = {
|
|
4
|
+
kState: Symbol('FileReader state'),
|
|
5
|
+
kResult: Symbol('FileReader result'),
|
|
6
|
+
kError: Symbol('FileReader error'),
|
|
7
|
+
kLastProgressEventFired: Symbol('FileReader last progress event fired timestamp'),
|
|
8
|
+
kEvents: Symbol('FileReader events'),
|
|
9
|
+
kAborted: Symbol('FileReader aborted')
|
|
10
|
+
}
|