node-red-contrib-tak-registration 0.11.5 → 0.12.0
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/node_modules/@types/node/README.md +2 -2
- package/node_modules/@types/node/assert.d.ts +88 -44
- package/node_modules/@types/node/async_hooks.d.ts +17 -15
- package/node_modules/@types/node/buffer.d.ts +37 -36
- package/node_modules/@types/node/child_process.d.ts +38 -34
- package/node_modules/@types/node/cluster.d.ts +165 -19
- package/node_modules/@types/node/console.d.ts +64 -27
- package/node_modules/@types/node/crypto.d.ts +139 -72
- package/node_modules/@types/node/dgram.d.ts +24 -14
- package/node_modules/@types/node/diagnostics_channel.d.ts +365 -2
- package/node_modules/@types/node/dns/promises.d.ts +79 -28
- package/node_modules/@types/node/dns.d.ts +124 -69
- package/node_modules/@types/node/dom-events.d.ts +2 -0
- package/node_modules/@types/node/domain.d.ts +4 -4
- package/node_modules/@types/node/events.d.ts +115 -63
- package/node_modules/@types/node/fs/promises.d.ts +18 -12
- package/node_modules/@types/node/fs.d.ts +72 -46
- package/node_modules/@types/node/globals.d.ts +27 -0
- package/node_modules/@types/node/http.d.ts +75 -55
- package/node_modules/@types/node/http2.d.ts +83 -47
- package/node_modules/@types/node/https.d.ts +3 -3
- package/node_modules/@types/node/index.d.ts +1 -0
- package/node_modules/@types/node/inspector.d.ts +5 -6
- package/node_modules/@types/node/module.d.ts +14 -0
- package/node_modules/@types/node/net.d.ts +66 -16
- package/node_modules/@types/node/os.d.ts +29 -12
- package/node_modules/@types/node/package.json +3 -16
- package/node_modules/@types/node/path.d.ts +1 -1
- package/node_modules/@types/node/perf_hooks.d.ts +320 -54
- package/node_modules/@types/node/process.d.ts +265 -50
- package/node_modules/@types/node/punycode.d.ts +4 -4
- package/node_modules/@types/node/querystring.d.ts +21 -9
- package/node_modules/@types/node/readline/promises.d.ts +9 -9
- package/node_modules/@types/node/readline.d.ts +21 -20
- package/node_modules/@types/node/repl.d.ts +10 -10
- package/node_modules/@types/node/sea.d.ts +153 -0
- package/node_modules/@types/node/stream/web.d.ts +18 -1
- package/node_modules/@types/node/stream.d.ts +62 -56
- package/node_modules/@types/node/string_decoder.d.ts +5 -5
- package/node_modules/@types/node/test.d.ts +445 -109
- package/node_modules/@types/node/timers/promises.d.ts +10 -6
- package/node_modules/@types/node/timers.d.ts +5 -5
- package/node_modules/@types/node/tls.d.ts +40 -33
- package/node_modules/@types/node/trace_events.d.ts +40 -25
- package/node_modules/@types/node/tty.d.ts +8 -8
- package/node_modules/@types/node/url.d.ts +73 -48
- package/node_modules/@types/node/util.d.ts +131 -22
- package/node_modules/@types/node/v8.d.ts +183 -10
- package/node_modules/@types/node/vm.d.ts +43 -22
- package/node_modules/@types/node/wasi.d.ts +38 -15
- package/node_modules/@types/node/worker_threads.d.ts +19 -16
- package/node_modules/@types/node/zlib.d.ts +16 -3
- package/node_modules/adm-zip/README.md +2 -1
- package/node_modules/adm-zip/adm-zip.js +46 -45
- package/node_modules/adm-zip/headers/entryHeader.js +14 -12
- package/node_modules/adm-zip/headers/mainHeader.js +1 -1
- package/node_modules/adm-zip/methods/inflater.js +6 -3
- package/node_modules/adm-zip/methods/zipcrypto.js +6 -2
- package/node_modules/adm-zip/package.json +2 -2
- package/node_modules/adm-zip/util/errors.js +1 -0
- package/node_modules/adm-zip/zipEntry.js +64 -43
- package/node_modules/adm-zip/zipFile.js +35 -35
- package/node_modules/axios/CHANGELOG.md +873 -711
- package/node_modules/axios/README.md +98 -8
- package/node_modules/axios/dist/axios.js +1461 -350
- package/node_modules/axios/dist/axios.js.map +1 -1
- package/node_modules/axios/dist/axios.min.js +1 -1
- package/node_modules/axios/dist/axios.min.js.map +1 -1
- package/node_modules/axios/dist/browser/axios.cjs +710 -306
- package/node_modules/axios/dist/browser/axios.cjs.map +1 -1
- package/node_modules/axios/dist/esm/axios.js +710 -306
- package/node_modules/axios/dist/esm/axios.js.map +1 -1
- package/node_modules/axios/dist/esm/axios.min.js +1 -1
- package/node_modules/axios/dist/esm/axios.min.js.map +1 -1
- package/node_modules/axios/dist/node/axios.cjs +628 -250
- package/node_modules/axios/dist/node/axios.cjs.map +1 -1
- package/node_modules/axios/index.d.cts +6 -3
- package/node_modules/axios/index.d.ts +6 -3
- package/node_modules/axios/lib/adapters/adapters.js +3 -1
- package/node_modules/axios/lib/adapters/fetch.js +227 -0
- package/node_modules/axios/lib/adapters/http.js +7 -3
- package/node_modules/axios/lib/adapters/xhr.js +31 -101
- package/node_modules/axios/lib/core/Axios.js +28 -1
- package/node_modules/axios/lib/core/AxiosHeaders.js +4 -0
- package/node_modules/axios/lib/core/mergeConfig.js +1 -1
- package/node_modules/axios/lib/defaults/index.js +7 -5
- package/node_modules/axios/lib/env/data.js +1 -1
- package/node_modules/axios/lib/helpers/AxiosTransformStream.js +9 -8
- package/node_modules/axios/lib/helpers/combineURLs.js +1 -1
- package/node_modules/axios/lib/helpers/composeSignals.js +46 -0
- package/node_modules/axios/lib/helpers/formDataToJSON.js +3 -0
- package/node_modules/axios/lib/helpers/progressEventReducer.js +32 -0
- package/node_modules/axios/lib/helpers/resolveConfig.js +57 -0
- package/node_modules/axios/lib/helpers/throttle.js +5 -3
- package/node_modules/axios/lib/helpers/trackStream.js +55 -0
- package/node_modules/axios/lib/platform/common/utils.js +4 -1
- package/node_modules/axios/lib/utils.js +7 -2
- package/node_modules/axios/package.json +27 -26
- package/node_modules/call-bind/CHANGELOG.md +16 -0
- package/node_modules/call-bind/index.js +2 -11
- package/node_modules/call-bind/package.json +11 -6
- package/node_modules/define-data-property/CHANGELOG.md +29 -0
- package/node_modules/define-data-property/index.d.ts +12 -3
- package/node_modules/define-data-property/index.js +4 -16
- package/node_modules/define-data-property/package.json +26 -33
- package/node_modules/define-data-property/test/index.js +10 -10
- package/node_modules/es-define-property/.eslintrc +13 -0
- package/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/node_modules/es-define-property/.nycrc +9 -0
- package/node_modules/es-define-property/CHANGELOG.md +15 -0
- package/node_modules/es-define-property/LICENSE +21 -0
- package/node_modules/es-define-property/README.md +49 -0
- package/node_modules/es-define-property/index.d.ts +3 -0
- package/node_modules/es-define-property/index.js +16 -0
- package/node_modules/es-define-property/package.json +81 -0
- package/node_modules/es-define-property/test/index.js +55 -0
- package/node_modules/es-define-property/tsconfig.json +50 -0
- package/node_modules/es-errors/.eslintrc +5 -0
- package/node_modules/es-errors/.github/FUNDING.yml +12 -0
- package/node_modules/es-errors/CHANGELOG.md +40 -0
- package/node_modules/es-errors/LICENSE +21 -0
- package/node_modules/es-errors/README.md +55 -0
- package/node_modules/es-errors/eval.d.ts +3 -0
- package/node_modules/es-errors/eval.js +4 -0
- package/node_modules/es-errors/index.d.ts +3 -0
- package/node_modules/es-errors/index.js +4 -0
- package/node_modules/es-errors/package.json +80 -0
- package/node_modules/es-errors/range.d.ts +3 -0
- package/node_modules/es-errors/range.js +4 -0
- package/node_modules/es-errors/ref.d.ts +3 -0
- package/node_modules/es-errors/ref.js +4 -0
- package/node_modules/es-errors/syntax.d.ts +3 -0
- package/node_modules/es-errors/syntax.js +4 -0
- package/node_modules/es-errors/test/index.js +19 -0
- package/node_modules/es-errors/tsconfig.json +49 -0
- package/node_modules/es-errors/type.d.ts +3 -0
- package/node_modules/es-errors/type.js +4 -0
- package/node_modules/es-errors/uri.d.ts +3 -0
- package/node_modules/es-errors/uri.js +4 -0
- package/node_modules/fast-xml-parser/CHANGELOG.md +17 -0
- package/node_modules/fast-xml-parser/README.md +9 -15
- package/node_modules/fast-xml-parser/package.json +4 -1
- package/node_modules/fast-xml-parser/src/fxp.d.ts +365 -71
- package/node_modules/fast-xml-parser/src/v5/CharsSymbol.js +16 -0
- package/node_modules/fast-xml-parser/src/v5/EntitiesParser.js +107 -0
- package/node_modules/fast-xml-parser/src/v5/OptionsBuilder.js +64 -0
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/BaseOutputBuilder.js +71 -0
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsArrBuilder.js +103 -0
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsMinArrBuilder.js +102 -0
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsObjBuilder.js +156 -0
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/ParserOptionsBuilder.js +96 -0
- package/node_modules/fast-xml-parser/src/v5/Report.js +0 -0
- package/node_modules/fast-xml-parser/src/v5/TagPath.js +81 -0
- package/node_modules/fast-xml-parser/src/v5/TagPathMatcher.js +15 -0
- package/node_modules/fast-xml-parser/src/v5/XMLParser.js +85 -0
- package/node_modules/fast-xml-parser/src/v5/Xml2JsParser.js +237 -0
- package/node_modules/fast-xml-parser/src/v5/XmlPartReader.js +212 -0
- package/node_modules/fast-xml-parser/src/v5/XmlSpecialTagsReader.js +118 -0
- package/node_modules/fast-xml-parser/src/v5/inputSource/BufferSource.js +118 -0
- package/node_modules/fast-xml-parser/src/v5/inputSource/StringSource.js +123 -0
- package/node_modules/fast-xml-parser/src/v5/valueParsers/EntitiesParser.js +107 -0
- package/node_modules/fast-xml-parser/src/v5/valueParsers/booleanParser.js +23 -0
- package/node_modules/fast-xml-parser/src/v5/valueParsers/booleanParserExt.js +20 -0
- package/node_modules/fast-xml-parser/src/v5/valueParsers/currency.js +31 -0
- package/node_modules/fast-xml-parser/src/v5/valueParsers/join.js +14 -0
- package/node_modules/fast-xml-parser/src/v5/valueParsers/number.js +16 -0
- package/node_modules/fast-xml-parser/src/v5/valueParsers/trim.js +8 -0
- package/node_modules/fast-xml-parser/src/validator.js +2 -0
- package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +18 -9
- package/node_modules/follow-redirects/index.js +115 -76
- package/node_modules/follow-redirects/package.json +1 -1
- package/node_modules/get-intrinsic/CHANGELOG.md +18 -0
- package/node_modules/get-intrinsic/index.js +15 -7
- package/node_modules/get-intrinsic/package.json +12 -12
- package/node_modules/has-property-descriptors/CHANGELOG.md +8 -0
- package/node_modules/has-property-descriptors/index.js +3 -14
- package/node_modules/has-property-descriptors/package.json +5 -5
- package/node_modules/has-proto/CHANGELOG.md +15 -0
- package/node_modules/has-proto/index.d.ts +3 -0
- package/node_modules/has-proto/index.js +5 -1
- package/node_modules/has-proto/package.json +9 -5
- package/node_modules/has-proto/tsconfig.json +49 -0
- package/node_modules/has-tostringtag/.eslintrc +0 -6
- package/node_modules/has-tostringtag/.nycrc +13 -0
- package/node_modules/has-tostringtag/CHANGELOG.md +22 -0
- package/node_modules/has-tostringtag/index.d.ts +3 -0
- package/node_modules/has-tostringtag/index.js +1 -0
- package/node_modules/has-tostringtag/package.json +37 -13
- package/node_modules/has-tostringtag/shams.d.ts +3 -0
- package/node_modules/has-tostringtag/shams.js +1 -0
- package/node_modules/has-tostringtag/test/shams/core-js.js +3 -0
- package/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +2 -0
- package/node_modules/has-tostringtag/test/tests.js +2 -1
- package/node_modules/has-tostringtag/tsconfig.json +49 -0
- package/node_modules/hasown/CHANGELOG.md +20 -0
- package/node_modules/hasown/index.d.ts +3 -3
- package/node_modules/hasown/index.js +1 -1
- package/node_modules/hasown/package.json +16 -15
- package/node_modules/hasown/tsconfig.json +3 -46
- package/node_modules/object-is/.eslintrc +1 -1
- package/node_modules/object-is/.nycrc +0 -4
- package/node_modules/object-is/CHANGELOG.md +25 -0
- package/node_modules/object-is/README.md +20 -20
- package/node_modules/object-is/package.json +23 -14
- package/node_modules/polygon-clipping/README.md +29 -26
- package/node_modules/polygon-clipping/dist/polygon-clipping.cjs.js +1398 -1421
- package/node_modules/polygon-clipping/dist/polygon-clipping.d.ts +13 -10
- package/node_modules/polygon-clipping/dist/polygon-clipping.esm.js +1139 -1427
- package/node_modules/polygon-clipping/dist/polygon-clipping.umd.js +1770 -1831
- package/node_modules/polygon-clipping/dist/polygon-clipping.umd.min.js +22 -8
- package/node_modules/polygon-clipping/dist/polygon-clipping.umd.min.js.map +1 -1
- package/node_modules/polygon-clipping/node_modules/robust-predicates/LICENSE +24 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/README.md +82 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/esm/incircle.js +765 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/esm/insphere.js +766 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/esm/orient2d.js +184 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/esm/orient3d.js +462 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/esm/util.js +138 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/index.d.ts +49 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/index.js +5 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/package.json +75 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/incircle.js +908 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/incircle.min.js +1 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/insphere.js +914 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/insphere.min.js +1 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/orient2d.js +280 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/orient2d.min.js +1 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/orient3d.js +601 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/orient3d.min.js +1 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/predicates.js +2328 -0
- package/node_modules/polygon-clipping/node_modules/robust-predicates/umd/predicates.min.js +1 -0
- package/node_modules/polygon-clipping/package.json +30 -25
- package/node_modules/protobufjs/LICENSE +39 -39
- package/node_modules/protobufjs/README.md +727 -740
- package/node_modules/protobufjs/dist/light/protobuf.js +6264 -6264
- package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/dist/minimal/protobuf.js +1928 -1928
- package/node_modules/protobufjs/dist/minimal/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/minimal/protobuf.min.js +2 -2
- package/node_modules/protobufjs/dist/minimal/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/dist/protobuf.js +7978 -7961
- package/node_modules/protobufjs/dist/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/ext/debug/README.md +4 -4
- package/node_modules/protobufjs/ext/debug/index.js +71 -71
- package/node_modules/protobufjs/ext/descriptor/README.md +72 -72
- package/node_modules/protobufjs/ext/descriptor/index.d.ts +191 -191
- package/node_modules/protobufjs/ext/descriptor/index.js +1052 -1052
- package/node_modules/protobufjs/ext/descriptor/test.js +54 -54
- package/node_modules/protobufjs/google/LICENSE +27 -27
- package/node_modules/protobufjs/google/README.md +1 -1
- package/node_modules/protobufjs/google/api/annotations.json +82 -82
- package/node_modules/protobufjs/google/api/annotations.proto +10 -10
- package/node_modules/protobufjs/google/api/http.json +85 -85
- package/node_modules/protobufjs/google/api/http.proto +30 -30
- package/node_modules/protobufjs/google/protobuf/api.json +117 -117
- package/node_modules/protobufjs/google/protobuf/api.proto +33 -33
- package/node_modules/protobufjs/google/protobuf/descriptor.json +738 -738
- package/node_modules/protobufjs/google/protobuf/descriptor.proto +286 -286
- package/node_modules/protobufjs/google/protobuf/source_context.json +19 -19
- package/node_modules/protobufjs/google/protobuf/source_context.proto +7 -7
- package/node_modules/protobufjs/google/protobuf/type.json +201 -201
- package/node_modules/protobufjs/google/protobuf/type.proto +89 -89
- package/node_modules/protobufjs/index.d.ts +2741 -2741
- package/node_modules/protobufjs/index.js +4 -4
- package/node_modules/protobufjs/light.d.ts +2 -2
- package/node_modules/protobufjs/light.js +3 -3
- package/node_modules/protobufjs/minimal.d.ts +2 -2
- package/node_modules/protobufjs/minimal.js +4 -4
- package/node_modules/protobufjs/package.json +111 -111
- package/node_modules/protobufjs/scripts/postinstall.js +32 -32
- package/node_modules/protobufjs/src/common.js +399 -399
- package/node_modules/protobufjs/src/converter.js +301 -301
- package/node_modules/protobufjs/src/decoder.js +129 -129
- package/node_modules/protobufjs/src/encoder.js +100 -100
- package/node_modules/protobufjs/src/enum.js +198 -198
- package/node_modules/protobufjs/src/field.js +377 -377
- package/node_modules/protobufjs/src/index-light.js +104 -104
- package/node_modules/protobufjs/src/index-minimal.js +36 -36
- package/node_modules/protobufjs/src/index.js +12 -12
- package/node_modules/protobufjs/src/mapfield.js +126 -126
- package/node_modules/protobufjs/src/message.js +138 -138
- package/node_modules/protobufjs/src/method.js +160 -160
- package/node_modules/protobufjs/src/namespace.js +433 -433
- package/node_modules/protobufjs/src/object.js +243 -243
- package/node_modules/protobufjs/src/oneof.js +203 -203
- package/node_modules/protobufjs/src/parse.js +889 -872
- package/node_modules/protobufjs/src/reader.js +416 -416
- package/node_modules/protobufjs/src/reader_buffer.js +51 -51
- package/node_modules/protobufjs/src/root.js +368 -368
- package/node_modules/protobufjs/src/roots.js +18 -18
- package/node_modules/protobufjs/src/rpc/service.js +142 -142
- package/node_modules/protobufjs/src/rpc.js +36 -36
- package/node_modules/protobufjs/src/service.js +167 -167
- package/node_modules/protobufjs/src/tokenize.js +416 -416
- package/node_modules/protobufjs/src/type.js +589 -589
- package/node_modules/protobufjs/src/types.js +196 -196
- package/node_modules/protobufjs/src/typescript.jsdoc +15 -15
- package/node_modules/protobufjs/src/util/longbits.js +200 -200
- package/node_modules/protobufjs/src/util/minimal.js +438 -438
- package/node_modules/protobufjs/src/util.js +212 -212
- package/node_modules/protobufjs/src/verifier.js +176 -176
- package/node_modules/protobufjs/src/wrappers.js +102 -102
- package/node_modules/protobufjs/src/writer.js +465 -465
- package/node_modules/protobufjs/src/writer_buffer.js +85 -85
- package/node_modules/protobufjs/tsconfig.json +7 -7
- package/node_modules/regexp.prototype.flags/CHANGELOG.md +13 -0
- package/node_modules/regexp.prototype.flags/implementation.js +2 -2
- package/node_modules/regexp.prototype.flags/package.json +11 -10
- package/node_modules/regexp.prototype.flags/test/tests.js +13 -13
- package/node_modules/set-function-length/CHANGELOG.md +29 -0
- package/node_modules/set-function-length/env.d.ts +9 -0
- package/node_modules/set-function-length/env.js +10 -4
- package/node_modules/set-function-length/index.d.ts +7 -0
- package/node_modules/set-function-length/index.js +4 -3
- package/node_modules/set-function-length/package.json +29 -11
- package/node_modules/set-function-length/tsconfig.json +9 -0
- package/node_modules/set-function-name/.eslintrc +1 -0
- package/node_modules/set-function-name/CHANGELOG.md +9 -0
- package/node_modules/set-function-name/index.d.ts +5 -0
- package/node_modules/set-function-name/index.js +4 -3
- package/node_modules/set-function-name/package.json +28 -9
- package/node_modules/set-function-name/tsconfig.json +59 -0
- package/node_modules/uuid/CHANGELOG.md +18 -0
- package/node_modules/uuid/README.md +134 -16
- package/node_modules/uuid/dist/commonjs-browser/index.js +40 -15
- package/node_modules/uuid/dist/commonjs-browser/max.js +7 -0
- package/node_modules/uuid/dist/commonjs-browser/md5.js +30 -53
- package/node_modules/uuid/dist/commonjs-browser/native.js +3 -4
- package/node_modules/uuid/dist/commonjs-browser/nil.js +1 -2
- package/node_modules/uuid/dist/commonjs-browser/parse.js +14 -15
- package/node_modules/uuid/dist/commonjs-browser/regex.js +1 -2
- package/node_modules/uuid/dist/commonjs-browser/rng.js +2 -4
- package/node_modules/uuid/dist/commonjs-browser/sha1.js +27 -49
- package/node_modules/uuid/dist/commonjs-browser/stringify.js +10 -16
- package/node_modules/uuid/dist/commonjs-browser/v1.js +73 -49
- package/node_modules/uuid/dist/commonjs-browser/v1ToV6.js +26 -0
- package/node_modules/uuid/dist/commonjs-browser/v3.js +3 -8
- package/node_modules/uuid/dist/commonjs-browser/v35.js +15 -32
- package/node_modules/uuid/dist/commonjs-browser/v4.js +7 -18
- package/node_modules/uuid/dist/commonjs-browser/v5.js +3 -8
- package/node_modules/uuid/dist/commonjs-browser/v6.js +42 -0
- package/node_modules/uuid/dist/commonjs-browser/v6ToV1.js +26 -0
- package/node_modules/uuid/dist/commonjs-browser/v7.js +152 -0
- package/node_modules/uuid/dist/commonjs-browser/validate.js +2 -7
- package/node_modules/uuid/dist/commonjs-browser/version.js +2 -8
- package/node_modules/uuid/dist/esm-browser/index.js +9 -4
- package/node_modules/uuid/dist/esm-browser/max.js +1 -0
- package/node_modules/uuid/dist/esm-browser/md5.js +29 -50
- package/node_modules/uuid/dist/esm-browser/native.js +1 -1
- package/node_modules/uuid/dist/esm-browser/parse.js +12 -10
- package/node_modules/uuid/dist/esm-browser/regex.js +1 -1
- package/node_modules/uuid/dist/esm-browser/rng.js +3 -4
- package/node_modules/uuid/dist/esm-browser/sha1.js +26 -46
- package/node_modules/uuid/dist/esm-browser/stringify.js +9 -11
- package/node_modules/uuid/dist/esm-browser/v1.js +74 -44
- package/node_modules/uuid/dist/esm-browser/v1ToV6.js +20 -0
- package/node_modules/uuid/dist/esm-browser/v3.js +1 -1
- package/node_modules/uuid/dist/esm-browser/v35.js +14 -25
- package/node_modules/uuid/dist/esm-browser/v4.js +5 -9
- package/node_modules/uuid/dist/esm-browser/v5.js +1 -1
- package/node_modules/uuid/dist/esm-browser/v6.js +36 -0
- package/node_modules/uuid/dist/esm-browser/v6ToV1.js +20 -0
- package/node_modules/uuid/dist/esm-browser/v7.js +146 -0
- package/node_modules/uuid/dist/esm-browser/validate.js +0 -2
- package/node_modules/uuid/dist/esm-browser/version.js +0 -3
- package/node_modules/uuid/dist/esm-node/index.js +9 -4
- package/node_modules/uuid/dist/esm-node/max.js +1 -0
- package/node_modules/uuid/dist/esm-node/md5.js +1 -4
- package/node_modules/uuid/dist/esm-node/native.js +1 -1
- package/node_modules/uuid/dist/esm-node/parse.js +11 -9
- package/node_modules/uuid/dist/esm-node/regex.js +1 -1
- package/node_modules/uuid/dist/esm-node/rng.js +1 -3
- package/node_modules/uuid/dist/esm-node/sha1.js +1 -4
- package/node_modules/uuid/dist/esm-node/stringify.js +7 -9
- package/node_modules/uuid/dist/esm-node/v1.js +66 -36
- package/node_modules/uuid/dist/esm-node/v1ToV6.js +20 -0
- package/node_modules/uuid/dist/esm-node/v35.js +8 -19
- package/node_modules/uuid/dist/esm-node/v4.js +4 -8
- package/node_modules/uuid/dist/esm-node/v6.js +32 -0
- package/node_modules/uuid/dist/esm-node/v6ToV1.js +20 -0
- package/node_modules/uuid/dist/esm-node/v7.js +146 -0
- package/node_modules/uuid/dist/esm-node/validate.js +0 -2
- package/node_modules/uuid/dist/esm-node/version.js +0 -3
- package/node_modules/uuid/dist/index.js +40 -15
- package/node_modules/uuid/dist/max.js +7 -0
- package/node_modules/uuid/dist/md5-browser.js +8 -31
- package/node_modules/uuid/dist/md5.js +4 -10
- package/node_modules/uuid/dist/native-browser.js +2 -3
- package/node_modules/uuid/dist/native.js +5 -9
- package/node_modules/uuid/dist/nil.js +1 -2
- package/node_modules/uuid/dist/parse.js +13 -14
- package/node_modules/uuid/dist/regex.js +1 -2
- package/node_modules/uuid/dist/rng-browser.js +1 -3
- package/node_modules/uuid/dist/rng.js +3 -10
- package/node_modules/uuid/dist/sha1-browser.js +1 -23
- package/node_modules/uuid/dist/sha1.js +4 -10
- package/node_modules/uuid/dist/stringify.js +8 -14
- package/node_modules/uuid/dist/uuid-bin.js +12 -22
- package/node_modules/uuid/dist/v1.js +66 -42
- package/node_modules/uuid/dist/v1ToV6.js +26 -0
- package/node_modules/uuid/dist/v3.js +2 -7
- package/node_modules/uuid/dist/v35.js +11 -28
- package/node_modules/uuid/dist/v4.js +6 -17
- package/node_modules/uuid/dist/v5.js +2 -7
- package/node_modules/uuid/dist/v6.js +38 -0
- package/node_modules/uuid/dist/v6ToV1.js +26 -0
- package/node_modules/uuid/dist/v7.js +152 -0
- package/node_modules/uuid/dist/validate.js +2 -7
- package/node_modules/uuid/dist/version.js +2 -8
- package/node_modules/uuid/package.json +41 -34
- package/node_modules/uuid/wrapper.mjs +5 -0
- package/package.json +6 -6
- package/tak-ingest.js +5 -1
- package/tak-registration.js +8 -1
- package/node_modules/@types/node/ts4.8/assert/strict.d.ts +0 -8
- package/node_modules/@types/node/ts4.8/assert.d.ts +0 -996
- package/node_modules/@types/node/ts4.8/async_hooks.d.ts +0 -539
- package/node_modules/@types/node/ts4.8/buffer.d.ts +0 -2362
- package/node_modules/@types/node/ts4.8/child_process.d.ts +0 -1540
- package/node_modules/@types/node/ts4.8/cluster.d.ts +0 -432
- package/node_modules/@types/node/ts4.8/console.d.ts +0 -415
- package/node_modules/@types/node/ts4.8/constants.d.ts +0 -19
- package/node_modules/@types/node/ts4.8/crypto.d.ts +0 -4455
- package/node_modules/@types/node/ts4.8/dgram.d.ts +0 -586
- package/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +0 -191
- package/node_modules/@types/node/ts4.8/dns/promises.d.ts +0 -425
- package/node_modules/@types/node/ts4.8/dns.d.ts +0 -809
- package/node_modules/@types/node/ts4.8/dom-events.d.ts +0 -122
- package/node_modules/@types/node/ts4.8/domain.d.ts +0 -170
- package/node_modules/@types/node/ts4.8/events.d.ts +0 -879
- package/node_modules/@types/node/ts4.8/fs/promises.d.ts +0 -1239
- package/node_modules/@types/node/ts4.8/fs.d.ts +0 -4291
- package/node_modules/@types/node/ts4.8/globals.d.ts +0 -385
- package/node_modules/@types/node/ts4.8/globals.global.d.ts +0 -1
- package/node_modules/@types/node/ts4.8/http.d.ts +0 -1888
- package/node_modules/@types/node/ts4.8/http2.d.ts +0 -2382
- package/node_modules/@types/node/ts4.8/https.d.ts +0 -550
- package/node_modules/@types/node/ts4.8/index.d.ts +0 -88
- package/node_modules/@types/node/ts4.8/inspector.d.ts +0 -2747
- package/node_modules/@types/node/ts4.8/module.d.ts +0 -301
- package/node_modules/@types/node/ts4.8/net.d.ts +0 -949
- package/node_modules/@types/node/ts4.8/os.d.ts +0 -478
- package/node_modules/@types/node/ts4.8/path.d.ts +0 -191
- package/node_modules/@types/node/ts4.8/perf_hooks.d.ts +0 -639
- package/node_modules/@types/node/ts4.8/process.d.ts +0 -1539
- package/node_modules/@types/node/ts4.8/punycode.d.ts +0 -117
- package/node_modules/@types/node/ts4.8/querystring.d.ts +0 -141
- package/node_modules/@types/node/ts4.8/readline/promises.d.ts +0 -150
- package/node_modules/@types/node/ts4.8/readline.d.ts +0 -539
- package/node_modules/@types/node/ts4.8/repl.d.ts +0 -430
- package/node_modules/@types/node/ts4.8/stream/consumers.d.ts +0 -12
- package/node_modules/@types/node/ts4.8/stream/promises.d.ts +0 -83
- package/node_modules/@types/node/ts4.8/stream/web.d.ts +0 -350
- package/node_modules/@types/node/ts4.8/stream.d.ts +0 -1701
- package/node_modules/@types/node/ts4.8/string_decoder.d.ts +0 -67
- package/node_modules/@types/node/ts4.8/test.d.ts +0 -1382
- package/node_modules/@types/node/ts4.8/timers/promises.d.ts +0 -93
- package/node_modules/@types/node/ts4.8/timers.d.ts +0 -240
- package/node_modules/@types/node/ts4.8/tls.d.ts +0 -1210
- package/node_modules/@types/node/ts4.8/trace_events.d.ts +0 -182
- package/node_modules/@types/node/ts4.8/tty.d.ts +0 -208
- package/node_modules/@types/node/ts4.8/url.d.ts +0 -927
- package/node_modules/@types/node/ts4.8/util.d.ts +0 -2183
- package/node_modules/@types/node/ts4.8/v8.d.ts +0 -635
- package/node_modules/@types/node/ts4.8/vm.d.ts +0 -903
- package/node_modules/@types/node/ts4.8/wasi.d.ts +0 -158
- package/node_modules/@types/node/ts4.8/worker_threads.d.ts +0 -691
- package/node_modules/@types/node/ts4.8/zlib.d.ts +0 -517
- package/node_modules/define-data-property/index.d.ts.map +0 -1
- package/node_modules/hasown/index.d.ts.map +0 -1
- package/node_modules/object-is/.eslintignore +0 -1
- package/node_modules/polygon-clipping/CHANGELOG.md +0 -129
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Axios v1.
|
|
1
|
+
// Axios v1.7.2 Copyright (c) 2024 Matt Zabriskie and contributors
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
const FormData$1 = require('form-data');
|
|
@@ -10,7 +10,7 @@ const util = require('util');
|
|
|
10
10
|
const followRedirects = require('follow-redirects');
|
|
11
11
|
const zlib = require('zlib');
|
|
12
12
|
const stream = require('stream');
|
|
13
|
-
const
|
|
13
|
+
const events = require('events');
|
|
14
14
|
|
|
15
15
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
16
16
|
|
|
@@ -22,7 +22,6 @@ const util__default = /*#__PURE__*/_interopDefaultLegacy(util);
|
|
|
22
22
|
const followRedirects__default = /*#__PURE__*/_interopDefaultLegacy(followRedirects);
|
|
23
23
|
const zlib__default = /*#__PURE__*/_interopDefaultLegacy(zlib);
|
|
24
24
|
const stream__default = /*#__PURE__*/_interopDefaultLegacy(stream);
|
|
25
|
-
const EventEmitter__default = /*#__PURE__*/_interopDefaultLegacy(EventEmitter);
|
|
26
25
|
|
|
27
26
|
function bind(fn, thisArg) {
|
|
28
27
|
return function wrap() {
|
|
@@ -237,6 +236,8 @@ const isFormData = (thing) => {
|
|
|
237
236
|
*/
|
|
238
237
|
const isURLSearchParams = kindOfTest('URLSearchParams');
|
|
239
238
|
|
|
239
|
+
const [isReadableStream, isRequest, isResponse, isHeaders] = ['ReadableStream', 'Request', 'Response', 'Headers'].map(kindOfTest);
|
|
240
|
+
|
|
240
241
|
/**
|
|
241
242
|
* Trim excess whitespace off the beginning and end of a string
|
|
242
243
|
*
|
|
@@ -625,8 +626,7 @@ const toObjectSet = (arrayOrString, delimiter) => {
|
|
|
625
626
|
const noop = () => {};
|
|
626
627
|
|
|
627
628
|
const toFiniteNumber = (value, defaultValue) => {
|
|
628
|
-
value = +value;
|
|
629
|
-
return Number.isFinite(value) ? value : defaultValue;
|
|
629
|
+
return value != null && Number.isFinite(value = +value) ? value : defaultValue;
|
|
630
630
|
};
|
|
631
631
|
|
|
632
632
|
const ALPHA = 'abcdefghijklmnopqrstuvwxyz';
|
|
@@ -707,6 +707,10 @@ const utils$1 = {
|
|
|
707
707
|
isBoolean,
|
|
708
708
|
isObject,
|
|
709
709
|
isPlainObject,
|
|
710
|
+
isReadableStream,
|
|
711
|
+
isRequest,
|
|
712
|
+
isResponse,
|
|
713
|
+
isHeaders,
|
|
710
714
|
isUndefined,
|
|
711
715
|
isDate,
|
|
712
716
|
isFile,
|
|
@@ -1296,11 +1300,14 @@ const hasStandardBrowserWebWorkerEnv = (() => {
|
|
|
1296
1300
|
);
|
|
1297
1301
|
})();
|
|
1298
1302
|
|
|
1303
|
+
const origin = hasBrowserEnv && window.location.href || 'http://localhost';
|
|
1304
|
+
|
|
1299
1305
|
const utils = /*#__PURE__*/Object.freeze({
|
|
1300
1306
|
__proto__: null,
|
|
1301
1307
|
hasBrowserEnv: hasBrowserEnv,
|
|
1302
1308
|
hasStandardBrowserWebWorkerEnv: hasStandardBrowserWebWorkerEnv,
|
|
1303
|
-
hasStandardBrowserEnv: hasStandardBrowserEnv
|
|
1309
|
+
hasStandardBrowserEnv: hasStandardBrowserEnv,
|
|
1310
|
+
origin: origin
|
|
1304
1311
|
});
|
|
1305
1312
|
|
|
1306
1313
|
const platform = {
|
|
@@ -1368,6 +1375,9 @@ function arrayToObject(arr) {
|
|
|
1368
1375
|
function formDataToJSON(formData) {
|
|
1369
1376
|
function buildPath(path, value, target, index) {
|
|
1370
1377
|
let name = path[index++];
|
|
1378
|
+
|
|
1379
|
+
if (name === '__proto__') return true;
|
|
1380
|
+
|
|
1371
1381
|
const isNumericKey = Number.isFinite(+name);
|
|
1372
1382
|
const isLast = index >= path.length;
|
|
1373
1383
|
name = !name && utils$1.isArray(target) ? target.length : name;
|
|
@@ -1437,7 +1447,7 @@ const defaults = {
|
|
|
1437
1447
|
|
|
1438
1448
|
transitional: transitionalDefaults,
|
|
1439
1449
|
|
|
1440
|
-
adapter: ['xhr', 'http'],
|
|
1450
|
+
adapter: ['xhr', 'http', 'fetch'],
|
|
1441
1451
|
|
|
1442
1452
|
transformRequest: [function transformRequest(data, headers) {
|
|
1443
1453
|
const contentType = headers.getContentType() || '';
|
|
@@ -1451,9 +1461,6 @@ const defaults = {
|
|
|
1451
1461
|
const isFormData = utils$1.isFormData(data);
|
|
1452
1462
|
|
|
1453
1463
|
if (isFormData) {
|
|
1454
|
-
if (!hasJSONContentType) {
|
|
1455
|
-
return data;
|
|
1456
|
-
}
|
|
1457
1464
|
return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data;
|
|
1458
1465
|
}
|
|
1459
1466
|
|
|
@@ -1461,7 +1468,8 @@ const defaults = {
|
|
|
1461
1468
|
utils$1.isBuffer(data) ||
|
|
1462
1469
|
utils$1.isStream(data) ||
|
|
1463
1470
|
utils$1.isFile(data) ||
|
|
1464
|
-
utils$1.isBlob(data)
|
|
1471
|
+
utils$1.isBlob(data) ||
|
|
1472
|
+
utils$1.isReadableStream(data)
|
|
1465
1473
|
) {
|
|
1466
1474
|
return data;
|
|
1467
1475
|
}
|
|
@@ -1504,6 +1512,10 @@ const defaults = {
|
|
|
1504
1512
|
const forcedJSONParsing = transitional && transitional.forcedJSONParsing;
|
|
1505
1513
|
const JSONRequested = this.responseType === 'json';
|
|
1506
1514
|
|
|
1515
|
+
if (utils$1.isResponse(data) || utils$1.isReadableStream(data)) {
|
|
1516
|
+
return data;
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1507
1519
|
if (data && utils$1.isString(data) && ((forcedJSONParsing && !this.responseType) || JSONRequested)) {
|
|
1508
1520
|
const silentJSONParsing = transitional && transitional.silentJSONParsing;
|
|
1509
1521
|
const strictJSONParsing = !silentJSONParsing && JSONRequested;
|
|
@@ -1707,6 +1719,10 @@ class AxiosHeaders {
|
|
|
1707
1719
|
setHeaders(header, valueOrRewrite);
|
|
1708
1720
|
} else if(utils$1.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {
|
|
1709
1721
|
setHeaders(parseHeaders(header), valueOrRewrite);
|
|
1722
|
+
} else if (utils$1.isHeaders(header)) {
|
|
1723
|
+
for (const [key, value] of header.entries()) {
|
|
1724
|
+
setHeader(value, key, rewrite);
|
|
1725
|
+
}
|
|
1710
1726
|
} else {
|
|
1711
1727
|
header != null && setHeader(valueOrRewrite, header, rewrite);
|
|
1712
1728
|
}
|
|
@@ -1998,7 +2014,7 @@ function isAbsoluteURL(url) {
|
|
|
1998
2014
|
*/
|
|
1999
2015
|
function combineURLs(baseURL, relativeURL) {
|
|
2000
2016
|
return relativeURL
|
|
2001
|
-
? baseURL.replace(
|
|
2017
|
+
? baseURL.replace(/\/?\/$/, '') + '/' + relativeURL.replace(/^\/+/, '')
|
|
2002
2018
|
: baseURL;
|
|
2003
2019
|
}
|
|
2004
2020
|
|
|
@@ -2019,7 +2035,7 @@ function buildFullPath(baseURL, requestedURL) {
|
|
|
2019
2035
|
return requestedURL;
|
|
2020
2036
|
}
|
|
2021
2037
|
|
|
2022
|
-
const VERSION = "1.
|
|
2038
|
+
const VERSION = "1.7.2";
|
|
2023
2039
|
|
|
2024
2040
|
function parseProtocol(url) {
|
|
2025
2041
|
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
|
|
@@ -2084,7 +2100,9 @@ function throttle(fn, freq) {
|
|
|
2084
2100
|
let timestamp = 0;
|
|
2085
2101
|
const threshold = 1000 / freq;
|
|
2086
2102
|
let timer = null;
|
|
2087
|
-
return function throttled(
|
|
2103
|
+
return function throttled() {
|
|
2104
|
+
const force = this === true;
|
|
2105
|
+
|
|
2088
2106
|
const now = Date.now();
|
|
2089
2107
|
if (force || now - timestamp > threshold) {
|
|
2090
2108
|
if (timer) {
|
|
@@ -2092,13 +2110,13 @@ function throttle(fn, freq) {
|
|
|
2092
2110
|
timer = null;
|
|
2093
2111
|
}
|
|
2094
2112
|
timestamp = now;
|
|
2095
|
-
return fn.apply(null,
|
|
2113
|
+
return fn.apply(null, arguments);
|
|
2096
2114
|
}
|
|
2097
2115
|
if (!timer) {
|
|
2098
2116
|
timer = setTimeout(() => {
|
|
2099
2117
|
timer = null;
|
|
2100
2118
|
timestamp = Date.now();
|
|
2101
|
-
return fn.apply(null,
|
|
2119
|
+
return fn.apply(null, arguments);
|
|
2102
2120
|
}, threshold - (now - timestamp));
|
|
2103
2121
|
}
|
|
2104
2122
|
};
|
|
@@ -2216,19 +2234,20 @@ class AxiosTransformStream extends stream__default["default"].Transform{
|
|
|
2216
2234
|
|
|
2217
2235
|
process.nextTick(() => {
|
|
2218
2236
|
self.emit('progress', {
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
(totalBytes - bytesTransferred) / rate : undefined
|
|
2237
|
+
loaded: bytesTransferred,
|
|
2238
|
+
total: totalBytes,
|
|
2239
|
+
progress: totalBytes ? (bytesTransferred / totalBytes) : undefined,
|
|
2240
|
+
bytes: progressBytes,
|
|
2241
|
+
rate: rate ? rate : undefined,
|
|
2242
|
+
estimated: rate && totalBytes && bytesTransferred <= totalBytes ?
|
|
2243
|
+
(totalBytes - bytesTransferred) / rate : undefined,
|
|
2244
|
+
lengthComputable: totalBytes != null
|
|
2226
2245
|
});
|
|
2227
2246
|
});
|
|
2228
2247
|
}, internals.ticksRate);
|
|
2229
2248
|
|
|
2230
2249
|
const onFinish = () => {
|
|
2231
|
-
internals.updateProgress(true);
|
|
2250
|
+
internals.updateProgress.call(true);
|
|
2232
2251
|
};
|
|
2233
2252
|
|
|
2234
2253
|
this.once('end', onFinish);
|
|
@@ -2532,12 +2551,12 @@ const supportedProtocols = platform.protocols.map(protocol => {
|
|
|
2532
2551
|
*
|
|
2533
2552
|
* @returns {Object<string, any>}
|
|
2534
2553
|
*/
|
|
2535
|
-
function dispatchBeforeRedirect(options) {
|
|
2554
|
+
function dispatchBeforeRedirect(options, responseDetails) {
|
|
2536
2555
|
if (options.beforeRedirects.proxy) {
|
|
2537
2556
|
options.beforeRedirects.proxy(options);
|
|
2538
2557
|
}
|
|
2539
2558
|
if (options.beforeRedirects.config) {
|
|
2540
|
-
options.beforeRedirects.config(options);
|
|
2559
|
+
options.beforeRedirects.config(options, responseDetails);
|
|
2541
2560
|
}
|
|
2542
2561
|
}
|
|
2543
2562
|
|
|
@@ -2650,6 +2669,10 @@ const httpAdapter = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
2650
2669
|
// hotfix to support opt.all option which is required for node 20.x
|
|
2651
2670
|
lookup = (hostname, opt, cb) => {
|
|
2652
2671
|
_lookup(hostname, opt, (err, arg0, arg1) => {
|
|
2672
|
+
if (err) {
|
|
2673
|
+
return cb(err);
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2653
2676
|
const addresses = utils$1.isArray(arg0) ? arg0.map(addr => buildAddressEntry(addr)) : [buildAddressEntry(arg0, arg1)];
|
|
2654
2677
|
|
|
2655
2678
|
opt.all ? cb(err, addresses) : cb(err, addresses[0].address, addresses[0].family);
|
|
@@ -2658,7 +2681,7 @@ const httpAdapter = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
2658
2681
|
}
|
|
2659
2682
|
|
|
2660
2683
|
// temporary internal emitter until the AxiosRequest class will be implemented
|
|
2661
|
-
const emitter = new
|
|
2684
|
+
const emitter = new events.EventEmitter();
|
|
2662
2685
|
|
|
2663
2686
|
const onFinished = () => {
|
|
2664
2687
|
if (config.cancelToken) {
|
|
@@ -3155,44 +3178,35 @@ const httpAdapter = isHttpAdapterSupported && function httpAdapter(config) {
|
|
|
3155
3178
|
});
|
|
3156
3179
|
};
|
|
3157
3180
|
|
|
3158
|
-
const
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
{
|
|
3162
|
-
write(name, value, expires, path, domain, secure) {
|
|
3163
|
-
const cookie = [name + '=' + encodeURIComponent(value)];
|
|
3164
|
-
|
|
3165
|
-
utils$1.isNumber(expires) && cookie.push('expires=' + new Date(expires).toGMTString());
|
|
3166
|
-
|
|
3167
|
-
utils$1.isString(path) && cookie.push('path=' + path);
|
|
3168
|
-
|
|
3169
|
-
utils$1.isString(domain) && cookie.push('domain=' + domain);
|
|
3170
|
-
|
|
3171
|
-
secure === true && cookie.push('secure');
|
|
3181
|
+
const progressEventReducer = (listener, isDownloadStream, freq = 3) => {
|
|
3182
|
+
let bytesNotified = 0;
|
|
3183
|
+
const _speedometer = speedometer(50, 250);
|
|
3172
3184
|
|
|
3173
|
-
|
|
3174
|
-
|
|
3185
|
+
return throttle(e => {
|
|
3186
|
+
const loaded = e.loaded;
|
|
3187
|
+
const total = e.lengthComputable ? e.total : undefined;
|
|
3188
|
+
const progressBytes = loaded - bytesNotified;
|
|
3189
|
+
const rate = _speedometer(progressBytes);
|
|
3190
|
+
const inRange = loaded <= total;
|
|
3175
3191
|
|
|
3176
|
-
|
|
3177
|
-
const match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)'));
|
|
3178
|
-
return (match ? decodeURIComponent(match[3]) : null);
|
|
3179
|
-
},
|
|
3192
|
+
bytesNotified = loaded;
|
|
3180
3193
|
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
|
|
3184
|
-
|
|
3194
|
+
const data = {
|
|
3195
|
+
loaded,
|
|
3196
|
+
total,
|
|
3197
|
+
progress: total ? (loaded / total) : undefined,
|
|
3198
|
+
bytes: progressBytes,
|
|
3199
|
+
rate: rate ? rate : undefined,
|
|
3200
|
+
estimated: rate && total && inRange ? (total - loaded) / rate : undefined,
|
|
3201
|
+
event: e,
|
|
3202
|
+
lengthComputable: total != null
|
|
3203
|
+
};
|
|
3185
3204
|
|
|
3186
|
-
|
|
3205
|
+
data[isDownloadStream ? 'download' : 'upload'] = true;
|
|
3187
3206
|
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
read() {
|
|
3192
|
-
return null;
|
|
3193
|
-
},
|
|
3194
|
-
remove() {}
|
|
3195
|
-
};
|
|
3207
|
+
listener(data);
|
|
3208
|
+
}, freq);
|
|
3209
|
+
};
|
|
3196
3210
|
|
|
3197
3211
|
const isURLSameOrigin = platform.hasStandardBrowserEnv ?
|
|
3198
3212
|
|
|
@@ -3257,80 +3271,220 @@ const isURLSameOrigin = platform.hasStandardBrowserEnv ?
|
|
|
3257
3271
|
};
|
|
3258
3272
|
})();
|
|
3259
3273
|
|
|
3260
|
-
|
|
3261
|
-
let bytesNotified = 0;
|
|
3262
|
-
const _speedometer = speedometer(50, 250);
|
|
3274
|
+
const cookies = platform.hasStandardBrowserEnv ?
|
|
3263
3275
|
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
const rate = _speedometer(progressBytes);
|
|
3269
|
-
const inRange = loaded <= total;
|
|
3276
|
+
// Standard browser envs support document.cookie
|
|
3277
|
+
{
|
|
3278
|
+
write(name, value, expires, path, domain, secure) {
|
|
3279
|
+
const cookie = [name + '=' + encodeURIComponent(value)];
|
|
3270
3280
|
|
|
3271
|
-
|
|
3281
|
+
utils$1.isNumber(expires) && cookie.push('expires=' + new Date(expires).toGMTString());
|
|
3272
3282
|
|
|
3273
|
-
|
|
3274
|
-
loaded,
|
|
3275
|
-
total,
|
|
3276
|
-
progress: total ? (loaded / total) : undefined,
|
|
3277
|
-
bytes: progressBytes,
|
|
3278
|
-
rate: rate ? rate : undefined,
|
|
3279
|
-
estimated: rate && total && inRange ? (total - loaded) / rate : undefined,
|
|
3280
|
-
event: e
|
|
3281
|
-
};
|
|
3283
|
+
utils$1.isString(path) && cookie.push('path=' + path);
|
|
3282
3284
|
|
|
3283
|
-
|
|
3285
|
+
utils$1.isString(domain) && cookie.push('domain=' + domain);
|
|
3284
3286
|
|
|
3285
|
-
|
|
3287
|
+
secure === true && cookie.push('secure');
|
|
3288
|
+
|
|
3289
|
+
document.cookie = cookie.join('; ');
|
|
3290
|
+
},
|
|
3291
|
+
|
|
3292
|
+
read(name) {
|
|
3293
|
+
const match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)'));
|
|
3294
|
+
return (match ? decodeURIComponent(match[3]) : null);
|
|
3295
|
+
},
|
|
3296
|
+
|
|
3297
|
+
remove(name) {
|
|
3298
|
+
this.write(name, '', Date.now() - 86400000);
|
|
3299
|
+
}
|
|
3300
|
+
}
|
|
3301
|
+
|
|
3302
|
+
:
|
|
3303
|
+
|
|
3304
|
+
// Non-standard browser env (web workers, react-native) lack needed support.
|
|
3305
|
+
{
|
|
3306
|
+
write() {},
|
|
3307
|
+
read() {
|
|
3308
|
+
return null;
|
|
3309
|
+
},
|
|
3310
|
+
remove() {}
|
|
3311
|
+
};
|
|
3312
|
+
|
|
3313
|
+
const headersToObject = (thing) => thing instanceof AxiosHeaders$1 ? { ...thing } : thing;
|
|
3314
|
+
|
|
3315
|
+
/**
|
|
3316
|
+
* Config-specific merge-function which creates a new config-object
|
|
3317
|
+
* by merging two configuration objects together.
|
|
3318
|
+
*
|
|
3319
|
+
* @param {Object} config1
|
|
3320
|
+
* @param {Object} config2
|
|
3321
|
+
*
|
|
3322
|
+
* @returns {Object} New object resulting from merging config2 to config1
|
|
3323
|
+
*/
|
|
3324
|
+
function mergeConfig(config1, config2) {
|
|
3325
|
+
// eslint-disable-next-line no-param-reassign
|
|
3326
|
+
config2 = config2 || {};
|
|
3327
|
+
const config = {};
|
|
3328
|
+
|
|
3329
|
+
function getMergedValue(target, source, caseless) {
|
|
3330
|
+
if (utils$1.isPlainObject(target) && utils$1.isPlainObject(source)) {
|
|
3331
|
+
return utils$1.merge.call({caseless}, target, source);
|
|
3332
|
+
} else if (utils$1.isPlainObject(source)) {
|
|
3333
|
+
return utils$1.merge({}, source);
|
|
3334
|
+
} else if (utils$1.isArray(source)) {
|
|
3335
|
+
return source.slice();
|
|
3336
|
+
}
|
|
3337
|
+
return source;
|
|
3338
|
+
}
|
|
3339
|
+
|
|
3340
|
+
// eslint-disable-next-line consistent-return
|
|
3341
|
+
function mergeDeepProperties(a, b, caseless) {
|
|
3342
|
+
if (!utils$1.isUndefined(b)) {
|
|
3343
|
+
return getMergedValue(a, b, caseless);
|
|
3344
|
+
} else if (!utils$1.isUndefined(a)) {
|
|
3345
|
+
return getMergedValue(undefined, a, caseless);
|
|
3346
|
+
}
|
|
3347
|
+
}
|
|
3348
|
+
|
|
3349
|
+
// eslint-disable-next-line consistent-return
|
|
3350
|
+
function valueFromConfig2(a, b) {
|
|
3351
|
+
if (!utils$1.isUndefined(b)) {
|
|
3352
|
+
return getMergedValue(undefined, b);
|
|
3353
|
+
}
|
|
3354
|
+
}
|
|
3355
|
+
|
|
3356
|
+
// eslint-disable-next-line consistent-return
|
|
3357
|
+
function defaultToConfig2(a, b) {
|
|
3358
|
+
if (!utils$1.isUndefined(b)) {
|
|
3359
|
+
return getMergedValue(undefined, b);
|
|
3360
|
+
} else if (!utils$1.isUndefined(a)) {
|
|
3361
|
+
return getMergedValue(undefined, a);
|
|
3362
|
+
}
|
|
3363
|
+
}
|
|
3364
|
+
|
|
3365
|
+
// eslint-disable-next-line consistent-return
|
|
3366
|
+
function mergeDirectKeys(a, b, prop) {
|
|
3367
|
+
if (prop in config2) {
|
|
3368
|
+
return getMergedValue(a, b);
|
|
3369
|
+
} else if (prop in config1) {
|
|
3370
|
+
return getMergedValue(undefined, a);
|
|
3371
|
+
}
|
|
3372
|
+
}
|
|
3373
|
+
|
|
3374
|
+
const mergeMap = {
|
|
3375
|
+
url: valueFromConfig2,
|
|
3376
|
+
method: valueFromConfig2,
|
|
3377
|
+
data: valueFromConfig2,
|
|
3378
|
+
baseURL: defaultToConfig2,
|
|
3379
|
+
transformRequest: defaultToConfig2,
|
|
3380
|
+
transformResponse: defaultToConfig2,
|
|
3381
|
+
paramsSerializer: defaultToConfig2,
|
|
3382
|
+
timeout: defaultToConfig2,
|
|
3383
|
+
timeoutMessage: defaultToConfig2,
|
|
3384
|
+
withCredentials: defaultToConfig2,
|
|
3385
|
+
withXSRFToken: defaultToConfig2,
|
|
3386
|
+
adapter: defaultToConfig2,
|
|
3387
|
+
responseType: defaultToConfig2,
|
|
3388
|
+
xsrfCookieName: defaultToConfig2,
|
|
3389
|
+
xsrfHeaderName: defaultToConfig2,
|
|
3390
|
+
onUploadProgress: defaultToConfig2,
|
|
3391
|
+
onDownloadProgress: defaultToConfig2,
|
|
3392
|
+
decompress: defaultToConfig2,
|
|
3393
|
+
maxContentLength: defaultToConfig2,
|
|
3394
|
+
maxBodyLength: defaultToConfig2,
|
|
3395
|
+
beforeRedirect: defaultToConfig2,
|
|
3396
|
+
transport: defaultToConfig2,
|
|
3397
|
+
httpAgent: defaultToConfig2,
|
|
3398
|
+
httpsAgent: defaultToConfig2,
|
|
3399
|
+
cancelToken: defaultToConfig2,
|
|
3400
|
+
socketPath: defaultToConfig2,
|
|
3401
|
+
responseEncoding: defaultToConfig2,
|
|
3402
|
+
validateStatus: mergeDirectKeys,
|
|
3403
|
+
headers: (a, b) => mergeDeepProperties(headersToObject(a), headersToObject(b), true)
|
|
3286
3404
|
};
|
|
3405
|
+
|
|
3406
|
+
utils$1.forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {
|
|
3407
|
+
const merge = mergeMap[prop] || mergeDeepProperties;
|
|
3408
|
+
const configValue = merge(config1[prop], config2[prop], prop);
|
|
3409
|
+
(utils$1.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);
|
|
3410
|
+
});
|
|
3411
|
+
|
|
3412
|
+
return config;
|
|
3287
3413
|
}
|
|
3288
3414
|
|
|
3415
|
+
const resolveConfig = (config) => {
|
|
3416
|
+
const newConfig = mergeConfig({}, config);
|
|
3417
|
+
|
|
3418
|
+
let {data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth} = newConfig;
|
|
3419
|
+
|
|
3420
|
+
newConfig.headers = headers = AxiosHeaders$1.from(headers);
|
|
3421
|
+
|
|
3422
|
+
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url), config.params, config.paramsSerializer);
|
|
3423
|
+
|
|
3424
|
+
// HTTP basic authentication
|
|
3425
|
+
if (auth) {
|
|
3426
|
+
headers.set('Authorization', 'Basic ' +
|
|
3427
|
+
btoa((auth.username || '') + ':' + (auth.password ? unescape(encodeURIComponent(auth.password)) : ''))
|
|
3428
|
+
);
|
|
3429
|
+
}
|
|
3430
|
+
|
|
3431
|
+
let contentType;
|
|
3432
|
+
|
|
3433
|
+
if (utils$1.isFormData(data)) {
|
|
3434
|
+
if (platform.hasStandardBrowserEnv || platform.hasStandardBrowserWebWorkerEnv) {
|
|
3435
|
+
headers.setContentType(undefined); // Let the browser set it
|
|
3436
|
+
} else if ((contentType = headers.getContentType()) !== false) {
|
|
3437
|
+
// fix semicolon duplication issue for ReactNative FormData implementation
|
|
3438
|
+
const [type, ...tokens] = contentType ? contentType.split(';').map(token => token.trim()).filter(Boolean) : [];
|
|
3439
|
+
headers.setContentType([type || 'multipart/form-data', ...tokens].join('; '));
|
|
3440
|
+
}
|
|
3441
|
+
}
|
|
3442
|
+
|
|
3443
|
+
// Add xsrf header
|
|
3444
|
+
// This is only done if running in a standard browser environment.
|
|
3445
|
+
// Specifically not if we're in a web worker, or react-native.
|
|
3446
|
+
|
|
3447
|
+
if (platform.hasStandardBrowserEnv) {
|
|
3448
|
+
withXSRFToken && utils$1.isFunction(withXSRFToken) && (withXSRFToken = withXSRFToken(newConfig));
|
|
3449
|
+
|
|
3450
|
+
if (withXSRFToken || (withXSRFToken !== false && isURLSameOrigin(newConfig.url))) {
|
|
3451
|
+
// Add xsrf header
|
|
3452
|
+
const xsrfValue = xsrfHeaderName && xsrfCookieName && cookies.read(xsrfCookieName);
|
|
3453
|
+
|
|
3454
|
+
if (xsrfValue) {
|
|
3455
|
+
headers.set(xsrfHeaderName, xsrfValue);
|
|
3456
|
+
}
|
|
3457
|
+
}
|
|
3458
|
+
}
|
|
3459
|
+
|
|
3460
|
+
return newConfig;
|
|
3461
|
+
};
|
|
3462
|
+
|
|
3289
3463
|
const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
3290
3464
|
|
|
3291
3465
|
const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
3292
3466
|
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3467
|
+
const _config = resolveConfig(config);
|
|
3468
|
+
let requestData = _config.data;
|
|
3469
|
+
const requestHeaders = AxiosHeaders$1.from(_config.headers).normalize();
|
|
3470
|
+
let {responseType} = _config;
|
|
3296
3471
|
let onCanceled;
|
|
3297
3472
|
function done() {
|
|
3298
|
-
if (
|
|
3299
|
-
|
|
3473
|
+
if (_config.cancelToken) {
|
|
3474
|
+
_config.cancelToken.unsubscribe(onCanceled);
|
|
3300
3475
|
}
|
|
3301
3476
|
|
|
3302
|
-
if (
|
|
3303
|
-
|
|
3304
|
-
}
|
|
3305
|
-
}
|
|
3306
|
-
|
|
3307
|
-
let contentType;
|
|
3308
|
-
|
|
3309
|
-
if (utils$1.isFormData(requestData)) {
|
|
3310
|
-
if (platform.hasStandardBrowserEnv || platform.hasStandardBrowserWebWorkerEnv) {
|
|
3311
|
-
requestHeaders.setContentType(false); // Let the browser set it
|
|
3312
|
-
} else if ((contentType = requestHeaders.getContentType()) !== false) {
|
|
3313
|
-
// fix semicolon duplication issue for ReactNative FormData implementation
|
|
3314
|
-
const [type, ...tokens] = contentType ? contentType.split(';').map(token => token.trim()).filter(Boolean) : [];
|
|
3315
|
-
requestHeaders.setContentType([type || 'multipart/form-data', ...tokens].join('; '));
|
|
3477
|
+
if (_config.signal) {
|
|
3478
|
+
_config.signal.removeEventListener('abort', onCanceled);
|
|
3316
3479
|
}
|
|
3317
3480
|
}
|
|
3318
3481
|
|
|
3319
3482
|
let request = new XMLHttpRequest();
|
|
3320
3483
|
|
|
3321
|
-
|
|
3322
|
-
if (config.auth) {
|
|
3323
|
-
const username = config.auth.username || '';
|
|
3324
|
-
const password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';
|
|
3325
|
-
requestHeaders.set('Authorization', 'Basic ' + btoa(username + ':' + password));
|
|
3326
|
-
}
|
|
3327
|
-
|
|
3328
|
-
const fullPath = buildFullPath(config.baseURL, config.url);
|
|
3329
|
-
|
|
3330
|
-
request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);
|
|
3484
|
+
request.open(_config.method.toUpperCase(), _config.url, true);
|
|
3331
3485
|
|
|
3332
3486
|
// Set the request timeout in MS
|
|
3333
|
-
request.timeout =
|
|
3487
|
+
request.timeout = _config.timeout;
|
|
3334
3488
|
|
|
3335
3489
|
function onloadend() {
|
|
3336
3490
|
if (!request) {
|
|
@@ -3392,7 +3546,7 @@ const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
|
3392
3546
|
return;
|
|
3393
3547
|
}
|
|
3394
3548
|
|
|
3395
|
-
reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED,
|
|
3549
|
+
reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, _config, request));
|
|
3396
3550
|
|
|
3397
3551
|
// Clean up request
|
|
3398
3552
|
request = null;
|
|
@@ -3402,7 +3556,7 @@ const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
|
3402
3556
|
request.onerror = function handleError() {
|
|
3403
3557
|
// Real errors are hidden from us by the browser
|
|
3404
3558
|
// onerror should only fire if it's a network error
|
|
3405
|
-
reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK,
|
|
3559
|
+
reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, _config, request));
|
|
3406
3560
|
|
|
3407
3561
|
// Clean up request
|
|
3408
3562
|
request = null;
|
|
@@ -3410,37 +3564,21 @@ const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
|
3410
3564
|
|
|
3411
3565
|
// Handle timeout
|
|
3412
3566
|
request.ontimeout = function handleTimeout() {
|
|
3413
|
-
let timeoutErrorMessage =
|
|
3414
|
-
const transitional =
|
|
3415
|
-
if (
|
|
3416
|
-
timeoutErrorMessage =
|
|
3567
|
+
let timeoutErrorMessage = _config.timeout ? 'timeout of ' + _config.timeout + 'ms exceeded' : 'timeout exceeded';
|
|
3568
|
+
const transitional = _config.transitional || transitionalDefaults;
|
|
3569
|
+
if (_config.timeoutErrorMessage) {
|
|
3570
|
+
timeoutErrorMessage = _config.timeoutErrorMessage;
|
|
3417
3571
|
}
|
|
3418
3572
|
reject(new AxiosError(
|
|
3419
3573
|
timeoutErrorMessage,
|
|
3420
3574
|
transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,
|
|
3421
|
-
|
|
3575
|
+
_config,
|
|
3422
3576
|
request));
|
|
3423
3577
|
|
|
3424
3578
|
// Clean up request
|
|
3425
3579
|
request = null;
|
|
3426
3580
|
};
|
|
3427
3581
|
|
|
3428
|
-
// Add xsrf header
|
|
3429
|
-
// This is only done if running in a standard browser environment.
|
|
3430
|
-
// Specifically not if we're in a web worker, or react-native.
|
|
3431
|
-
if(platform.hasStandardBrowserEnv) {
|
|
3432
|
-
withXSRFToken && utils$1.isFunction(withXSRFToken) && (withXSRFToken = withXSRFToken(config));
|
|
3433
|
-
|
|
3434
|
-
if (withXSRFToken || (withXSRFToken !== false && isURLSameOrigin(fullPath))) {
|
|
3435
|
-
// Add xsrf header
|
|
3436
|
-
const xsrfValue = config.xsrfHeaderName && config.xsrfCookieName && cookies.read(config.xsrfCookieName);
|
|
3437
|
-
|
|
3438
|
-
if (xsrfValue) {
|
|
3439
|
-
requestHeaders.set(config.xsrfHeaderName, xsrfValue);
|
|
3440
|
-
}
|
|
3441
|
-
}
|
|
3442
|
-
}
|
|
3443
|
-
|
|
3444
3582
|
// Remove Content-Type if data is undefined
|
|
3445
3583
|
requestData === undefined && requestHeaders.setContentType(null);
|
|
3446
3584
|
|
|
@@ -3452,26 +3590,26 @@ const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
|
3452
3590
|
}
|
|
3453
3591
|
|
|
3454
3592
|
// Add withCredentials to request if needed
|
|
3455
|
-
if (!utils$1.isUndefined(
|
|
3456
|
-
request.withCredentials = !!
|
|
3593
|
+
if (!utils$1.isUndefined(_config.withCredentials)) {
|
|
3594
|
+
request.withCredentials = !!_config.withCredentials;
|
|
3457
3595
|
}
|
|
3458
3596
|
|
|
3459
3597
|
// Add responseType to request if needed
|
|
3460
3598
|
if (responseType && responseType !== 'json') {
|
|
3461
|
-
request.responseType =
|
|
3599
|
+
request.responseType = _config.responseType;
|
|
3462
3600
|
}
|
|
3463
3601
|
|
|
3464
3602
|
// Handle progress if needed
|
|
3465
|
-
if (typeof
|
|
3466
|
-
request.addEventListener('progress', progressEventReducer(
|
|
3603
|
+
if (typeof _config.onDownloadProgress === 'function') {
|
|
3604
|
+
request.addEventListener('progress', progressEventReducer(_config.onDownloadProgress, true));
|
|
3467
3605
|
}
|
|
3468
3606
|
|
|
3469
3607
|
// Not all browsers support upload events
|
|
3470
|
-
if (typeof
|
|
3471
|
-
request.upload.addEventListener('progress', progressEventReducer(
|
|
3608
|
+
if (typeof _config.onUploadProgress === 'function' && request.upload) {
|
|
3609
|
+
request.upload.addEventListener('progress', progressEventReducer(_config.onUploadProgress));
|
|
3472
3610
|
}
|
|
3473
3611
|
|
|
3474
|
-
if (
|
|
3612
|
+
if (_config.cancelToken || _config.signal) {
|
|
3475
3613
|
// Handle cancellation
|
|
3476
3614
|
// eslint-disable-next-line func-names
|
|
3477
3615
|
onCanceled = cancel => {
|
|
@@ -3483,13 +3621,13 @@ const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
|
3483
3621
|
request = null;
|
|
3484
3622
|
};
|
|
3485
3623
|
|
|
3486
|
-
|
|
3487
|
-
if (
|
|
3488
|
-
|
|
3624
|
+
_config.cancelToken && _config.cancelToken.subscribe(onCanceled);
|
|
3625
|
+
if (_config.signal) {
|
|
3626
|
+
_config.signal.aborted ? onCanceled() : _config.signal.addEventListener('abort', onCanceled);
|
|
3489
3627
|
}
|
|
3490
3628
|
}
|
|
3491
3629
|
|
|
3492
|
-
const protocol = parseProtocol(
|
|
3630
|
+
const protocol = parseProtocol(_config.url);
|
|
3493
3631
|
|
|
3494
3632
|
if (protocol && platform.protocols.indexOf(protocol) === -1) {
|
|
3495
3633
|
reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config));
|
|
@@ -3502,9 +3640,324 @@ const xhrAdapter = isXHRAdapterSupported && function (config) {
|
|
|
3502
3640
|
});
|
|
3503
3641
|
};
|
|
3504
3642
|
|
|
3643
|
+
const composeSignals = (signals, timeout) => {
|
|
3644
|
+
let controller = new AbortController();
|
|
3645
|
+
|
|
3646
|
+
let aborted;
|
|
3647
|
+
|
|
3648
|
+
const onabort = function (cancel) {
|
|
3649
|
+
if (!aborted) {
|
|
3650
|
+
aborted = true;
|
|
3651
|
+
unsubscribe();
|
|
3652
|
+
const err = cancel instanceof Error ? cancel : this.reason;
|
|
3653
|
+
controller.abort(err instanceof AxiosError ? err : new CanceledError(err instanceof Error ? err.message : err));
|
|
3654
|
+
}
|
|
3655
|
+
};
|
|
3656
|
+
|
|
3657
|
+
let timer = timeout && setTimeout(() => {
|
|
3658
|
+
onabort(new AxiosError(`timeout ${timeout} of ms exceeded`, AxiosError.ETIMEDOUT));
|
|
3659
|
+
}, timeout);
|
|
3660
|
+
|
|
3661
|
+
const unsubscribe = () => {
|
|
3662
|
+
if (signals) {
|
|
3663
|
+
timer && clearTimeout(timer);
|
|
3664
|
+
timer = null;
|
|
3665
|
+
signals.forEach(signal => {
|
|
3666
|
+
signal &&
|
|
3667
|
+
(signal.removeEventListener ? signal.removeEventListener('abort', onabort) : signal.unsubscribe(onabort));
|
|
3668
|
+
});
|
|
3669
|
+
signals = null;
|
|
3670
|
+
}
|
|
3671
|
+
};
|
|
3672
|
+
|
|
3673
|
+
signals.forEach((signal) => signal && signal.addEventListener && signal.addEventListener('abort', onabort));
|
|
3674
|
+
|
|
3675
|
+
const {signal} = controller;
|
|
3676
|
+
|
|
3677
|
+
signal.unsubscribe = unsubscribe;
|
|
3678
|
+
|
|
3679
|
+
return [signal, () => {
|
|
3680
|
+
timer && clearTimeout(timer);
|
|
3681
|
+
timer = null;
|
|
3682
|
+
}];
|
|
3683
|
+
};
|
|
3684
|
+
|
|
3685
|
+
const composeSignals$1 = composeSignals;
|
|
3686
|
+
|
|
3687
|
+
const streamChunk = function* (chunk, chunkSize) {
|
|
3688
|
+
let len = chunk.byteLength;
|
|
3689
|
+
|
|
3690
|
+
if (!chunkSize || len < chunkSize) {
|
|
3691
|
+
yield chunk;
|
|
3692
|
+
return;
|
|
3693
|
+
}
|
|
3694
|
+
|
|
3695
|
+
let pos = 0;
|
|
3696
|
+
let end;
|
|
3697
|
+
|
|
3698
|
+
while (pos < len) {
|
|
3699
|
+
end = pos + chunkSize;
|
|
3700
|
+
yield chunk.slice(pos, end);
|
|
3701
|
+
pos = end;
|
|
3702
|
+
}
|
|
3703
|
+
};
|
|
3704
|
+
|
|
3705
|
+
const readBytes = async function* (iterable, chunkSize, encode) {
|
|
3706
|
+
for await (const chunk of iterable) {
|
|
3707
|
+
yield* streamChunk(ArrayBuffer.isView(chunk) ? chunk : (await encode(String(chunk))), chunkSize);
|
|
3708
|
+
}
|
|
3709
|
+
};
|
|
3710
|
+
|
|
3711
|
+
const trackStream = (stream, chunkSize, onProgress, onFinish, encode) => {
|
|
3712
|
+
const iterator = readBytes(stream, chunkSize, encode);
|
|
3713
|
+
|
|
3714
|
+
let bytes = 0;
|
|
3715
|
+
|
|
3716
|
+
return new ReadableStream({
|
|
3717
|
+
type: 'bytes',
|
|
3718
|
+
|
|
3719
|
+
async pull(controller) {
|
|
3720
|
+
const {done, value} = await iterator.next();
|
|
3721
|
+
|
|
3722
|
+
if (done) {
|
|
3723
|
+
controller.close();
|
|
3724
|
+
onFinish();
|
|
3725
|
+
return;
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3728
|
+
let len = value.byteLength;
|
|
3729
|
+
onProgress && onProgress(bytes += len);
|
|
3730
|
+
controller.enqueue(new Uint8Array(value));
|
|
3731
|
+
},
|
|
3732
|
+
cancel(reason) {
|
|
3733
|
+
onFinish(reason);
|
|
3734
|
+
return iterator.return();
|
|
3735
|
+
}
|
|
3736
|
+
}, {
|
|
3737
|
+
highWaterMark: 2
|
|
3738
|
+
})
|
|
3739
|
+
};
|
|
3740
|
+
|
|
3741
|
+
const fetchProgressDecorator = (total, fn) => {
|
|
3742
|
+
const lengthComputable = total != null;
|
|
3743
|
+
return (loaded) => setTimeout(() => fn({
|
|
3744
|
+
lengthComputable,
|
|
3745
|
+
total,
|
|
3746
|
+
loaded
|
|
3747
|
+
}));
|
|
3748
|
+
};
|
|
3749
|
+
|
|
3750
|
+
const isFetchSupported = typeof fetch === 'function' && typeof Request === 'function' && typeof Response === 'function';
|
|
3751
|
+
const isReadableStreamSupported = isFetchSupported && typeof ReadableStream === 'function';
|
|
3752
|
+
|
|
3753
|
+
// used only inside the fetch adapter
|
|
3754
|
+
const encodeText = isFetchSupported && (typeof TextEncoder === 'function' ?
|
|
3755
|
+
((encoder) => (str) => encoder.encode(str))(new TextEncoder()) :
|
|
3756
|
+
async (str) => new Uint8Array(await new Response(str).arrayBuffer())
|
|
3757
|
+
);
|
|
3758
|
+
|
|
3759
|
+
const supportsRequestStream = isReadableStreamSupported && (() => {
|
|
3760
|
+
let duplexAccessed = false;
|
|
3761
|
+
|
|
3762
|
+
const hasContentType = new Request(platform.origin, {
|
|
3763
|
+
body: new ReadableStream(),
|
|
3764
|
+
method: 'POST',
|
|
3765
|
+
get duplex() {
|
|
3766
|
+
duplexAccessed = true;
|
|
3767
|
+
return 'half';
|
|
3768
|
+
},
|
|
3769
|
+
}).headers.has('Content-Type');
|
|
3770
|
+
|
|
3771
|
+
return duplexAccessed && !hasContentType;
|
|
3772
|
+
})();
|
|
3773
|
+
|
|
3774
|
+
const DEFAULT_CHUNK_SIZE = 64 * 1024;
|
|
3775
|
+
|
|
3776
|
+
const supportsResponseStream = isReadableStreamSupported && !!(()=> {
|
|
3777
|
+
try {
|
|
3778
|
+
return utils$1.isReadableStream(new Response('').body);
|
|
3779
|
+
} catch(err) {
|
|
3780
|
+
// return undefined
|
|
3781
|
+
}
|
|
3782
|
+
})();
|
|
3783
|
+
|
|
3784
|
+
const resolvers = {
|
|
3785
|
+
stream: supportsResponseStream && ((res) => res.body)
|
|
3786
|
+
};
|
|
3787
|
+
|
|
3788
|
+
isFetchSupported && (((res) => {
|
|
3789
|
+
['text', 'arrayBuffer', 'blob', 'formData', 'stream'].forEach(type => {
|
|
3790
|
+
!resolvers[type] && (resolvers[type] = utils$1.isFunction(res[type]) ? (res) => res[type]() :
|
|
3791
|
+
(_, config) => {
|
|
3792
|
+
throw new AxiosError(`Response type '${type}' is not supported`, AxiosError.ERR_NOT_SUPPORT, config);
|
|
3793
|
+
});
|
|
3794
|
+
});
|
|
3795
|
+
})(new Response));
|
|
3796
|
+
|
|
3797
|
+
const getBodyLength = async (body) => {
|
|
3798
|
+
if (body == null) {
|
|
3799
|
+
return 0;
|
|
3800
|
+
}
|
|
3801
|
+
|
|
3802
|
+
if(utils$1.isBlob(body)) {
|
|
3803
|
+
return body.size;
|
|
3804
|
+
}
|
|
3805
|
+
|
|
3806
|
+
if(utils$1.isSpecCompliantForm(body)) {
|
|
3807
|
+
return (await new Request(body).arrayBuffer()).byteLength;
|
|
3808
|
+
}
|
|
3809
|
+
|
|
3810
|
+
if(utils$1.isArrayBufferView(body)) {
|
|
3811
|
+
return body.byteLength;
|
|
3812
|
+
}
|
|
3813
|
+
|
|
3814
|
+
if(utils$1.isURLSearchParams(body)) {
|
|
3815
|
+
body = body + '';
|
|
3816
|
+
}
|
|
3817
|
+
|
|
3818
|
+
if(utils$1.isString(body)) {
|
|
3819
|
+
return (await encodeText(body)).byteLength;
|
|
3820
|
+
}
|
|
3821
|
+
};
|
|
3822
|
+
|
|
3823
|
+
const resolveBodyLength = async (headers, body) => {
|
|
3824
|
+
const length = utils$1.toFiniteNumber(headers.getContentLength());
|
|
3825
|
+
|
|
3826
|
+
return length == null ? getBodyLength(body) : length;
|
|
3827
|
+
};
|
|
3828
|
+
|
|
3829
|
+
const fetchAdapter = isFetchSupported && (async (config) => {
|
|
3830
|
+
let {
|
|
3831
|
+
url,
|
|
3832
|
+
method,
|
|
3833
|
+
data,
|
|
3834
|
+
signal,
|
|
3835
|
+
cancelToken,
|
|
3836
|
+
timeout,
|
|
3837
|
+
onDownloadProgress,
|
|
3838
|
+
onUploadProgress,
|
|
3839
|
+
responseType,
|
|
3840
|
+
headers,
|
|
3841
|
+
withCredentials = 'same-origin',
|
|
3842
|
+
fetchOptions
|
|
3843
|
+
} = resolveConfig(config);
|
|
3844
|
+
|
|
3845
|
+
responseType = responseType ? (responseType + '').toLowerCase() : 'text';
|
|
3846
|
+
|
|
3847
|
+
let [composedSignal, stopTimeout] = (signal || cancelToken || timeout) ?
|
|
3848
|
+
composeSignals$1([signal, cancelToken], timeout) : [];
|
|
3849
|
+
|
|
3850
|
+
let finished, request;
|
|
3851
|
+
|
|
3852
|
+
const onFinish = () => {
|
|
3853
|
+
!finished && setTimeout(() => {
|
|
3854
|
+
composedSignal && composedSignal.unsubscribe();
|
|
3855
|
+
});
|
|
3856
|
+
|
|
3857
|
+
finished = true;
|
|
3858
|
+
};
|
|
3859
|
+
|
|
3860
|
+
let requestContentLength;
|
|
3861
|
+
|
|
3862
|
+
try {
|
|
3863
|
+
if (
|
|
3864
|
+
onUploadProgress && supportsRequestStream && method !== 'get' && method !== 'head' &&
|
|
3865
|
+
(requestContentLength = await resolveBodyLength(headers, data)) !== 0
|
|
3866
|
+
) {
|
|
3867
|
+
let _request = new Request(url, {
|
|
3868
|
+
method: 'POST',
|
|
3869
|
+
body: data,
|
|
3870
|
+
duplex: "half"
|
|
3871
|
+
});
|
|
3872
|
+
|
|
3873
|
+
let contentTypeHeader;
|
|
3874
|
+
|
|
3875
|
+
if (utils$1.isFormData(data) && (contentTypeHeader = _request.headers.get('content-type'))) {
|
|
3876
|
+
headers.setContentType(contentTypeHeader);
|
|
3877
|
+
}
|
|
3878
|
+
|
|
3879
|
+
if (_request.body) {
|
|
3880
|
+
data = trackStream(_request.body, DEFAULT_CHUNK_SIZE, fetchProgressDecorator(
|
|
3881
|
+
requestContentLength,
|
|
3882
|
+
progressEventReducer(onUploadProgress)
|
|
3883
|
+
), null, encodeText);
|
|
3884
|
+
}
|
|
3885
|
+
}
|
|
3886
|
+
|
|
3887
|
+
if (!utils$1.isString(withCredentials)) {
|
|
3888
|
+
withCredentials = withCredentials ? 'cors' : 'omit';
|
|
3889
|
+
}
|
|
3890
|
+
|
|
3891
|
+
request = new Request(url, {
|
|
3892
|
+
...fetchOptions,
|
|
3893
|
+
signal: composedSignal,
|
|
3894
|
+
method: method.toUpperCase(),
|
|
3895
|
+
headers: headers.normalize().toJSON(),
|
|
3896
|
+
body: data,
|
|
3897
|
+
duplex: "half",
|
|
3898
|
+
withCredentials
|
|
3899
|
+
});
|
|
3900
|
+
|
|
3901
|
+
let response = await fetch(request);
|
|
3902
|
+
|
|
3903
|
+
const isStreamResponse = supportsResponseStream && (responseType === 'stream' || responseType === 'response');
|
|
3904
|
+
|
|
3905
|
+
if (supportsResponseStream && (onDownloadProgress || isStreamResponse)) {
|
|
3906
|
+
const options = {};
|
|
3907
|
+
|
|
3908
|
+
['status', 'statusText', 'headers'].forEach(prop => {
|
|
3909
|
+
options[prop] = response[prop];
|
|
3910
|
+
});
|
|
3911
|
+
|
|
3912
|
+
const responseContentLength = utils$1.toFiniteNumber(response.headers.get('content-length'));
|
|
3913
|
+
|
|
3914
|
+
response = new Response(
|
|
3915
|
+
trackStream(response.body, DEFAULT_CHUNK_SIZE, onDownloadProgress && fetchProgressDecorator(
|
|
3916
|
+
responseContentLength,
|
|
3917
|
+
progressEventReducer(onDownloadProgress, true)
|
|
3918
|
+
), isStreamResponse && onFinish, encodeText),
|
|
3919
|
+
options
|
|
3920
|
+
);
|
|
3921
|
+
}
|
|
3922
|
+
|
|
3923
|
+
responseType = responseType || 'text';
|
|
3924
|
+
|
|
3925
|
+
let responseData = await resolvers[utils$1.findKey(resolvers, responseType) || 'text'](response, config);
|
|
3926
|
+
|
|
3927
|
+
!isStreamResponse && onFinish();
|
|
3928
|
+
|
|
3929
|
+
stopTimeout && stopTimeout();
|
|
3930
|
+
|
|
3931
|
+
return await new Promise((resolve, reject) => {
|
|
3932
|
+
settle(resolve, reject, {
|
|
3933
|
+
data: responseData,
|
|
3934
|
+
headers: AxiosHeaders$1.from(response.headers),
|
|
3935
|
+
status: response.status,
|
|
3936
|
+
statusText: response.statusText,
|
|
3937
|
+
config,
|
|
3938
|
+
request
|
|
3939
|
+
});
|
|
3940
|
+
})
|
|
3941
|
+
} catch (err) {
|
|
3942
|
+
onFinish();
|
|
3943
|
+
|
|
3944
|
+
if (err && err.name === 'TypeError' && /fetch/i.test(err.message)) {
|
|
3945
|
+
throw Object.assign(
|
|
3946
|
+
new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request),
|
|
3947
|
+
{
|
|
3948
|
+
cause: err.cause || err
|
|
3949
|
+
}
|
|
3950
|
+
)
|
|
3951
|
+
}
|
|
3952
|
+
|
|
3953
|
+
throw AxiosError.from(err, err && err.code, config, request);
|
|
3954
|
+
}
|
|
3955
|
+
});
|
|
3956
|
+
|
|
3505
3957
|
const knownAdapters = {
|
|
3506
3958
|
http: httpAdapter,
|
|
3507
|
-
xhr: xhrAdapter
|
|
3959
|
+
xhr: xhrAdapter,
|
|
3960
|
+
fetch: fetchAdapter
|
|
3508
3961
|
};
|
|
3509
3962
|
|
|
3510
3963
|
utils$1.forEach(knownAdapters, (fn, value) => {
|
|
@@ -3648,108 +4101,6 @@ function dispatchRequest(config) {
|
|
|
3648
4101
|
});
|
|
3649
4102
|
}
|
|
3650
4103
|
|
|
3651
|
-
const headersToObject = (thing) => thing instanceof AxiosHeaders$1 ? thing.toJSON() : thing;
|
|
3652
|
-
|
|
3653
|
-
/**
|
|
3654
|
-
* Config-specific merge-function which creates a new config-object
|
|
3655
|
-
* by merging two configuration objects together.
|
|
3656
|
-
*
|
|
3657
|
-
* @param {Object} config1
|
|
3658
|
-
* @param {Object} config2
|
|
3659
|
-
*
|
|
3660
|
-
* @returns {Object} New object resulting from merging config2 to config1
|
|
3661
|
-
*/
|
|
3662
|
-
function mergeConfig(config1, config2) {
|
|
3663
|
-
// eslint-disable-next-line no-param-reassign
|
|
3664
|
-
config2 = config2 || {};
|
|
3665
|
-
const config = {};
|
|
3666
|
-
|
|
3667
|
-
function getMergedValue(target, source, caseless) {
|
|
3668
|
-
if (utils$1.isPlainObject(target) && utils$1.isPlainObject(source)) {
|
|
3669
|
-
return utils$1.merge.call({caseless}, target, source);
|
|
3670
|
-
} else if (utils$1.isPlainObject(source)) {
|
|
3671
|
-
return utils$1.merge({}, source);
|
|
3672
|
-
} else if (utils$1.isArray(source)) {
|
|
3673
|
-
return source.slice();
|
|
3674
|
-
}
|
|
3675
|
-
return source;
|
|
3676
|
-
}
|
|
3677
|
-
|
|
3678
|
-
// eslint-disable-next-line consistent-return
|
|
3679
|
-
function mergeDeepProperties(a, b, caseless) {
|
|
3680
|
-
if (!utils$1.isUndefined(b)) {
|
|
3681
|
-
return getMergedValue(a, b, caseless);
|
|
3682
|
-
} else if (!utils$1.isUndefined(a)) {
|
|
3683
|
-
return getMergedValue(undefined, a, caseless);
|
|
3684
|
-
}
|
|
3685
|
-
}
|
|
3686
|
-
|
|
3687
|
-
// eslint-disable-next-line consistent-return
|
|
3688
|
-
function valueFromConfig2(a, b) {
|
|
3689
|
-
if (!utils$1.isUndefined(b)) {
|
|
3690
|
-
return getMergedValue(undefined, b);
|
|
3691
|
-
}
|
|
3692
|
-
}
|
|
3693
|
-
|
|
3694
|
-
// eslint-disable-next-line consistent-return
|
|
3695
|
-
function defaultToConfig2(a, b) {
|
|
3696
|
-
if (!utils$1.isUndefined(b)) {
|
|
3697
|
-
return getMergedValue(undefined, b);
|
|
3698
|
-
} else if (!utils$1.isUndefined(a)) {
|
|
3699
|
-
return getMergedValue(undefined, a);
|
|
3700
|
-
}
|
|
3701
|
-
}
|
|
3702
|
-
|
|
3703
|
-
// eslint-disable-next-line consistent-return
|
|
3704
|
-
function mergeDirectKeys(a, b, prop) {
|
|
3705
|
-
if (prop in config2) {
|
|
3706
|
-
return getMergedValue(a, b);
|
|
3707
|
-
} else if (prop in config1) {
|
|
3708
|
-
return getMergedValue(undefined, a);
|
|
3709
|
-
}
|
|
3710
|
-
}
|
|
3711
|
-
|
|
3712
|
-
const mergeMap = {
|
|
3713
|
-
url: valueFromConfig2,
|
|
3714
|
-
method: valueFromConfig2,
|
|
3715
|
-
data: valueFromConfig2,
|
|
3716
|
-
baseURL: defaultToConfig2,
|
|
3717
|
-
transformRequest: defaultToConfig2,
|
|
3718
|
-
transformResponse: defaultToConfig2,
|
|
3719
|
-
paramsSerializer: defaultToConfig2,
|
|
3720
|
-
timeout: defaultToConfig2,
|
|
3721
|
-
timeoutMessage: defaultToConfig2,
|
|
3722
|
-
withCredentials: defaultToConfig2,
|
|
3723
|
-
withXSRFToken: defaultToConfig2,
|
|
3724
|
-
adapter: defaultToConfig2,
|
|
3725
|
-
responseType: defaultToConfig2,
|
|
3726
|
-
xsrfCookieName: defaultToConfig2,
|
|
3727
|
-
xsrfHeaderName: defaultToConfig2,
|
|
3728
|
-
onUploadProgress: defaultToConfig2,
|
|
3729
|
-
onDownloadProgress: defaultToConfig2,
|
|
3730
|
-
decompress: defaultToConfig2,
|
|
3731
|
-
maxContentLength: defaultToConfig2,
|
|
3732
|
-
maxBodyLength: defaultToConfig2,
|
|
3733
|
-
beforeRedirect: defaultToConfig2,
|
|
3734
|
-
transport: defaultToConfig2,
|
|
3735
|
-
httpAgent: defaultToConfig2,
|
|
3736
|
-
httpsAgent: defaultToConfig2,
|
|
3737
|
-
cancelToken: defaultToConfig2,
|
|
3738
|
-
socketPath: defaultToConfig2,
|
|
3739
|
-
responseEncoding: defaultToConfig2,
|
|
3740
|
-
validateStatus: mergeDirectKeys,
|
|
3741
|
-
headers: (a, b) => mergeDeepProperties(headersToObject(a), headersToObject(b), true)
|
|
3742
|
-
};
|
|
3743
|
-
|
|
3744
|
-
utils$1.forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {
|
|
3745
|
-
const merge = mergeMap[prop] || mergeDeepProperties;
|
|
3746
|
-
const configValue = merge(config1[prop], config2[prop], prop);
|
|
3747
|
-
(utils$1.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);
|
|
3748
|
-
});
|
|
3749
|
-
|
|
3750
|
-
return config;
|
|
3751
|
-
}
|
|
3752
|
-
|
|
3753
4104
|
const validators$1 = {};
|
|
3754
4105
|
|
|
3755
4106
|
// eslint-disable-next-line func-names
|
|
@@ -3863,7 +4214,34 @@ class Axios {
|
|
|
3863
4214
|
*
|
|
3864
4215
|
* @returns {Promise} The Promise to be fulfilled
|
|
3865
4216
|
*/
|
|
3866
|
-
request(configOrUrl, config) {
|
|
4217
|
+
async request(configOrUrl, config) {
|
|
4218
|
+
try {
|
|
4219
|
+
return await this._request(configOrUrl, config);
|
|
4220
|
+
} catch (err) {
|
|
4221
|
+
if (err instanceof Error) {
|
|
4222
|
+
let dummy;
|
|
4223
|
+
|
|
4224
|
+
Error.captureStackTrace ? Error.captureStackTrace(dummy = {}) : (dummy = new Error());
|
|
4225
|
+
|
|
4226
|
+
// slice off the Error: ... line
|
|
4227
|
+
const stack = dummy.stack ? dummy.stack.replace(/^.+\n/, '') : '';
|
|
4228
|
+
try {
|
|
4229
|
+
if (!err.stack) {
|
|
4230
|
+
err.stack = stack;
|
|
4231
|
+
// match without the 2 top stack lines
|
|
4232
|
+
} else if (stack && !String(err.stack).endsWith(stack.replace(/^.+\n.+\n/, ''))) {
|
|
4233
|
+
err.stack += '\n' + stack;
|
|
4234
|
+
}
|
|
4235
|
+
} catch (e) {
|
|
4236
|
+
// ignore the case where "stack" is an un-writable property
|
|
4237
|
+
}
|
|
4238
|
+
}
|
|
4239
|
+
|
|
4240
|
+
throw err;
|
|
4241
|
+
}
|
|
4242
|
+
}
|
|
4243
|
+
|
|
4244
|
+
_request(configOrUrl, config) {
|
|
3867
4245
|
/*eslint no-param-reassign:0*/
|
|
3868
4246
|
// Allow for axios('example/url'[, config]) a la fetch API
|
|
3869
4247
|
if (typeof configOrUrl === 'string') {
|