cbs-block 1.0.8 → 1.0.10

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.
Files changed (1973) hide show
  1. package/README.md +141 -84
  2. package/WeatherAPI/index.js +98 -0
  3. package/WeatherAPI/metadata.json +20 -0
  4. package/WeatherAPI/node_modules/.package-lock.json +305 -0
  5. package/WeatherAPI/node_modules/asynckit/LICENSE +21 -0
  6. package/WeatherAPI/node_modules/asynckit/README.md +233 -0
  7. package/WeatherAPI/node_modules/asynckit/bench.js +76 -0
  8. package/WeatherAPI/node_modules/asynckit/index.js +6 -0
  9. package/WeatherAPI/node_modules/asynckit/lib/abort.js +29 -0
  10. package/WeatherAPI/node_modules/asynckit/lib/async.js +34 -0
  11. package/WeatherAPI/node_modules/asynckit/lib/defer.js +26 -0
  12. package/WeatherAPI/node_modules/asynckit/lib/iterate.js +75 -0
  13. package/WeatherAPI/node_modules/asynckit/lib/readable_asynckit.js +91 -0
  14. package/WeatherAPI/node_modules/asynckit/lib/readable_parallel.js +25 -0
  15. package/WeatherAPI/node_modules/asynckit/lib/readable_serial.js +25 -0
  16. package/WeatherAPI/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
  17. package/WeatherAPI/node_modules/asynckit/lib/state.js +37 -0
  18. package/WeatherAPI/node_modules/asynckit/lib/streamify.js +141 -0
  19. package/WeatherAPI/node_modules/asynckit/lib/terminator.js +29 -0
  20. package/WeatherAPI/node_modules/asynckit/package.json +63 -0
  21. package/WeatherAPI/node_modules/asynckit/parallel.js +43 -0
  22. package/WeatherAPI/node_modules/asynckit/serial.js +17 -0
  23. package/WeatherAPI/node_modules/asynckit/serialOrdered.js +75 -0
  24. package/WeatherAPI/node_modules/asynckit/stream.js +21 -0
  25. package/WeatherAPI/node_modules/axios/CHANGELOG.md +1416 -0
  26. package/WeatherAPI/node_modules/axios/LICENSE +7 -0
  27. package/WeatherAPI/node_modules/axios/MIGRATION_GUIDE.md +877 -0
  28. package/WeatherAPI/node_modules/axios/README.md +1946 -0
  29. package/WeatherAPI/node_modules/axios/dist/axios.js +4454 -0
  30. package/WeatherAPI/node_modules/axios/dist/axios.js.map +1 -0
  31. package/WeatherAPI/node_modules/axios/dist/axios.min.js +5 -0
  32. package/WeatherAPI/node_modules/axios/dist/axios.min.js.map +1 -0
  33. package/WeatherAPI/node_modules/axios/dist/browser/axios.cjs +4225 -0
  34. package/WeatherAPI/node_modules/axios/dist/browser/axios.cjs.map +1 -0
  35. package/WeatherAPI/node_modules/axios/dist/esm/axios.js +4245 -0
  36. package/WeatherAPI/node_modules/axios/dist/esm/axios.js.map +1 -0
  37. package/WeatherAPI/node_modules/axios/dist/esm/axios.min.js +3 -0
  38. package/WeatherAPI/node_modules/axios/dist/esm/axios.min.js.map +1 -0
  39. package/WeatherAPI/node_modules/axios/dist/node/axios.cjs +4697 -0
  40. package/WeatherAPI/node_modules/axios/dist/node/axios.cjs.map +1 -0
  41. package/WeatherAPI/node_modules/axios/index.d.cts +716 -0
  42. package/WeatherAPI/node_modules/axios/index.d.ts +810 -0
  43. package/WeatherAPI/node_modules/axios/index.js +43 -0
  44. package/WeatherAPI/node_modules/axios/lib/adapters/README.md +36 -0
  45. package/WeatherAPI/node_modules/axios/lib/adapters/adapters.js +130 -0
  46. package/WeatherAPI/node_modules/axios/lib/adapters/fetch.js +338 -0
  47. package/WeatherAPI/node_modules/axios/lib/adapters/http.js +952 -0
  48. package/WeatherAPI/node_modules/axios/lib/adapters/xhr.js +222 -0
  49. package/WeatherAPI/node_modules/axios/lib/axios.js +89 -0
  50. package/WeatherAPI/node_modules/axios/lib/cancel/CancelToken.js +135 -0
  51. package/WeatherAPI/node_modules/axios/lib/cancel/CanceledError.js +22 -0
  52. package/WeatherAPI/node_modules/axios/lib/cancel/isCancel.js +5 -0
  53. package/WeatherAPI/node_modules/axios/lib/core/Axios.js +261 -0
  54. package/WeatherAPI/node_modules/axios/lib/core/AxiosError.js +90 -0
  55. package/WeatherAPI/node_modules/axios/lib/core/AxiosHeaders.js +346 -0
  56. package/WeatherAPI/node_modules/axios/lib/core/InterceptorManager.js +72 -0
  57. package/WeatherAPI/node_modules/axios/lib/core/README.md +8 -0
  58. package/WeatherAPI/node_modules/axios/lib/core/buildFullPath.js +22 -0
  59. package/WeatherAPI/node_modules/axios/lib/core/dispatchRequest.js +77 -0
  60. package/WeatherAPI/node_modules/axios/lib/core/mergeConfig.js +107 -0
  61. package/WeatherAPI/node_modules/axios/lib/core/settle.js +31 -0
  62. package/WeatherAPI/node_modules/axios/lib/core/transformData.js +28 -0
  63. package/WeatherAPI/node_modules/axios/lib/defaults/index.js +172 -0
  64. package/WeatherAPI/node_modules/axios/lib/defaults/transitional.js +8 -0
  65. package/WeatherAPI/node_modules/axios/lib/env/README.md +3 -0
  66. package/WeatherAPI/node_modules/axios/lib/env/classes/FormData.js +2 -0
  67. package/WeatherAPI/node_modules/axios/lib/env/data.js +1 -0
  68. package/WeatherAPI/node_modules/axios/lib/helpers/AxiosTransformStream.js +156 -0
  69. package/WeatherAPI/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +62 -0
  70. package/WeatherAPI/node_modules/axios/lib/helpers/HttpStatusCode.js +77 -0
  71. package/WeatherAPI/node_modules/axios/lib/helpers/README.md +7 -0
  72. package/WeatherAPI/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +29 -0
  73. package/WeatherAPI/node_modules/axios/lib/helpers/bind.js +14 -0
  74. package/WeatherAPI/node_modules/axios/lib/helpers/buildURL.js +66 -0
  75. package/WeatherAPI/node_modules/axios/lib/helpers/callbackify.js +18 -0
  76. package/WeatherAPI/node_modules/axios/lib/helpers/combineURLs.js +15 -0
  77. package/WeatherAPI/node_modules/axios/lib/helpers/composeSignals.js +56 -0
  78. package/WeatherAPI/node_modules/axios/lib/helpers/cookies.js +48 -0
  79. package/WeatherAPI/node_modules/axios/lib/helpers/deprecatedMethod.js +31 -0
  80. package/WeatherAPI/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js +73 -0
  81. package/WeatherAPI/node_modules/axios/lib/helpers/formDataToJSON.js +95 -0
  82. package/WeatherAPI/node_modules/axios/lib/helpers/formDataToStream.js +118 -0
  83. package/WeatherAPI/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
  84. package/WeatherAPI/node_modules/axios/lib/helpers/isAbsoluteURL.js +19 -0
  85. package/WeatherAPI/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
  86. package/WeatherAPI/node_modules/axios/lib/helpers/isURLSameOrigin.js +16 -0
  87. package/WeatherAPI/node_modules/axios/lib/helpers/null.js +2 -0
  88. package/WeatherAPI/node_modules/axios/lib/helpers/parseHeaders.js +69 -0
  89. package/WeatherAPI/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
  90. package/WeatherAPI/node_modules/axios/lib/helpers/progressEventReducer.js +51 -0
  91. package/WeatherAPI/node_modules/axios/lib/helpers/readBlob.js +15 -0
  92. package/WeatherAPI/node_modules/axios/lib/helpers/resolveConfig.js +70 -0
  93. package/WeatherAPI/node_modules/axios/lib/helpers/speedometer.js +55 -0
  94. package/WeatherAPI/node_modules/axios/lib/helpers/spread.js +28 -0
  95. package/WeatherAPI/node_modules/axios/lib/helpers/throttle.js +44 -0
  96. package/WeatherAPI/node_modules/axios/lib/helpers/toFormData.js +241 -0
  97. package/WeatherAPI/node_modules/axios/lib/helpers/toURLEncodedForm.js +19 -0
  98. package/WeatherAPI/node_modules/axios/lib/helpers/trackStream.js +89 -0
  99. package/WeatherAPI/node_modules/axios/lib/helpers/validator.js +110 -0
  100. package/WeatherAPI/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
  101. package/WeatherAPI/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
  102. package/WeatherAPI/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
  103. package/WeatherAPI/node_modules/axios/lib/platform/browser/index.js +13 -0
  104. package/WeatherAPI/node_modules/axios/lib/platform/common/utils.js +52 -0
  105. package/WeatherAPI/node_modules/axios/lib/platform/index.js +7 -0
  106. package/WeatherAPI/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
  107. package/WeatherAPI/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
  108. package/WeatherAPI/node_modules/axios/lib/platform/node/index.js +37 -0
  109. package/WeatherAPI/node_modules/axios/lib/utils.js +919 -0
  110. package/WeatherAPI/node_modules/axios/package.json +187 -0
  111. package/WeatherAPI/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  112. package/WeatherAPI/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  113. package/WeatherAPI/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  114. package/WeatherAPI/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  115. package/WeatherAPI/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  116. package/WeatherAPI/node_modules/call-bind-apply-helpers/README.md +62 -0
  117. package/WeatherAPI/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  118. package/WeatherAPI/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  119. package/WeatherAPI/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  120. package/WeatherAPI/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  121. package/WeatherAPI/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  122. package/WeatherAPI/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  123. package/WeatherAPI/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  124. package/WeatherAPI/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  125. package/WeatherAPI/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  126. package/WeatherAPI/node_modules/call-bind-apply-helpers/index.js +15 -0
  127. package/WeatherAPI/node_modules/call-bind-apply-helpers/package.json +85 -0
  128. package/WeatherAPI/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  129. package/WeatherAPI/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  130. package/WeatherAPI/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  131. package/WeatherAPI/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  132. package/WeatherAPI/node_modules/combined-stream/License +19 -0
  133. package/WeatherAPI/node_modules/combined-stream/Readme.md +138 -0
  134. package/WeatherAPI/node_modules/combined-stream/lib/combined_stream.js +208 -0
  135. package/WeatherAPI/node_modules/combined-stream/package.json +25 -0
  136. package/WeatherAPI/node_modules/combined-stream/yarn.lock +17 -0
  137. package/WeatherAPI/node_modules/delayed-stream/License +19 -0
  138. package/WeatherAPI/node_modules/delayed-stream/Makefile +7 -0
  139. package/WeatherAPI/node_modules/delayed-stream/Readme.md +141 -0
  140. package/WeatherAPI/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
  141. package/WeatherAPI/node_modules/delayed-stream/package.json +27 -0
  142. package/WeatherAPI/node_modules/dunder-proto/.eslintrc +5 -0
  143. package/WeatherAPI/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  144. package/WeatherAPI/node_modules/dunder-proto/.nycrc +13 -0
  145. package/WeatherAPI/node_modules/dunder-proto/CHANGELOG.md +24 -0
  146. package/WeatherAPI/node_modules/dunder-proto/LICENSE +21 -0
  147. package/WeatherAPI/node_modules/dunder-proto/README.md +54 -0
  148. package/WeatherAPI/node_modules/dunder-proto/get.d.ts +5 -0
  149. package/WeatherAPI/node_modules/dunder-proto/get.js +30 -0
  150. package/WeatherAPI/node_modules/dunder-proto/package.json +76 -0
  151. package/WeatherAPI/node_modules/dunder-proto/set.d.ts +5 -0
  152. package/WeatherAPI/node_modules/dunder-proto/set.js +35 -0
  153. package/WeatherAPI/node_modules/dunder-proto/test/get.js +34 -0
  154. package/WeatherAPI/node_modules/dunder-proto/test/index.js +4 -0
  155. package/WeatherAPI/node_modules/dunder-proto/test/set.js +50 -0
  156. package/WeatherAPI/node_modules/dunder-proto/tsconfig.json +9 -0
  157. package/WeatherAPI/node_modules/es-define-property/.eslintrc +13 -0
  158. package/WeatherAPI/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  159. package/WeatherAPI/node_modules/es-define-property/.nycrc +9 -0
  160. package/WeatherAPI/node_modules/es-define-property/CHANGELOG.md +29 -0
  161. package/WeatherAPI/node_modules/es-define-property/LICENSE +21 -0
  162. package/WeatherAPI/node_modules/es-define-property/README.md +49 -0
  163. package/WeatherAPI/node_modules/es-define-property/index.d.ts +3 -0
  164. package/WeatherAPI/node_modules/es-define-property/index.js +14 -0
  165. package/WeatherAPI/node_modules/es-define-property/package.json +81 -0
  166. package/WeatherAPI/node_modules/es-define-property/test/index.js +56 -0
  167. package/WeatherAPI/node_modules/es-define-property/tsconfig.json +10 -0
  168. package/WeatherAPI/node_modules/es-errors/.eslintrc +5 -0
  169. package/WeatherAPI/node_modules/es-errors/.github/FUNDING.yml +12 -0
  170. package/WeatherAPI/node_modules/es-errors/CHANGELOG.md +40 -0
  171. package/WeatherAPI/node_modules/es-errors/LICENSE +21 -0
  172. package/WeatherAPI/node_modules/es-errors/README.md +55 -0
  173. package/WeatherAPI/node_modules/es-errors/eval.d.ts +3 -0
  174. package/WeatherAPI/node_modules/es-errors/eval.js +4 -0
  175. package/WeatherAPI/node_modules/es-errors/index.d.ts +3 -0
  176. package/WeatherAPI/node_modules/es-errors/index.js +4 -0
  177. package/WeatherAPI/node_modules/es-errors/package.json +80 -0
  178. package/WeatherAPI/node_modules/es-errors/range.d.ts +3 -0
  179. package/WeatherAPI/node_modules/es-errors/range.js +4 -0
  180. package/WeatherAPI/node_modules/es-errors/ref.d.ts +3 -0
  181. package/WeatherAPI/node_modules/es-errors/ref.js +4 -0
  182. package/WeatherAPI/node_modules/es-errors/syntax.d.ts +3 -0
  183. package/WeatherAPI/node_modules/es-errors/syntax.js +4 -0
  184. package/WeatherAPI/node_modules/es-errors/test/index.js +19 -0
  185. package/WeatherAPI/node_modules/es-errors/tsconfig.json +49 -0
  186. package/WeatherAPI/node_modules/es-errors/type.d.ts +3 -0
  187. package/WeatherAPI/node_modules/es-errors/type.js +4 -0
  188. package/WeatherAPI/node_modules/es-errors/uri.d.ts +3 -0
  189. package/WeatherAPI/node_modules/es-errors/uri.js +4 -0
  190. package/WeatherAPI/node_modules/es-object-atoms/.eslintrc +16 -0
  191. package/WeatherAPI/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  192. package/WeatherAPI/node_modules/es-object-atoms/CHANGELOG.md +37 -0
  193. package/WeatherAPI/node_modules/es-object-atoms/LICENSE +21 -0
  194. package/WeatherAPI/node_modules/es-object-atoms/README.md +63 -0
  195. package/WeatherAPI/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  196. package/WeatherAPI/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  197. package/WeatherAPI/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  198. package/WeatherAPI/node_modules/es-object-atoms/ToObject.js +10 -0
  199. package/WeatherAPI/node_modules/es-object-atoms/index.d.ts +3 -0
  200. package/WeatherAPI/node_modules/es-object-atoms/index.js +4 -0
  201. package/WeatherAPI/node_modules/es-object-atoms/isObject.d.ts +3 -0
  202. package/WeatherAPI/node_modules/es-object-atoms/isObject.js +6 -0
  203. package/WeatherAPI/node_modules/es-object-atoms/package.json +80 -0
  204. package/WeatherAPI/node_modules/es-object-atoms/test/index.js +38 -0
  205. package/WeatherAPI/node_modules/es-object-atoms/tsconfig.json +6 -0
  206. package/WeatherAPI/node_modules/es-set-tostringtag/.eslintrc +13 -0
  207. package/WeatherAPI/node_modules/es-set-tostringtag/.nycrc +9 -0
  208. package/WeatherAPI/node_modules/es-set-tostringtag/CHANGELOG.md +67 -0
  209. package/WeatherAPI/node_modules/es-set-tostringtag/LICENSE +21 -0
  210. package/WeatherAPI/node_modules/es-set-tostringtag/README.md +53 -0
  211. package/WeatherAPI/node_modules/es-set-tostringtag/index.d.ts +10 -0
  212. package/WeatherAPI/node_modules/es-set-tostringtag/index.js +35 -0
  213. package/WeatherAPI/node_modules/es-set-tostringtag/package.json +78 -0
  214. package/WeatherAPI/node_modules/es-set-tostringtag/test/index.js +85 -0
  215. package/WeatherAPI/node_modules/es-set-tostringtag/tsconfig.json +9 -0
  216. package/WeatherAPI/node_modules/follow-redirects/LICENSE +18 -0
  217. package/WeatherAPI/node_modules/follow-redirects/README.md +155 -0
  218. package/WeatherAPI/node_modules/follow-redirects/debug.js +15 -0
  219. package/WeatherAPI/node_modules/follow-redirects/http.js +1 -0
  220. package/WeatherAPI/node_modules/follow-redirects/https.js +1 -0
  221. package/WeatherAPI/node_modules/follow-redirects/index.js +686 -0
  222. package/WeatherAPI/node_modules/follow-redirects/package.json +58 -0
  223. package/WeatherAPI/node_modules/form-data/CHANGELOG.md +659 -0
  224. package/WeatherAPI/node_modules/form-data/License +19 -0
  225. package/WeatherAPI/node_modules/form-data/README.md +355 -0
  226. package/WeatherAPI/node_modules/form-data/index.d.ts +62 -0
  227. package/WeatherAPI/node_modules/form-data/lib/browser.js +4 -0
  228. package/WeatherAPI/node_modules/form-data/lib/form_data.js +494 -0
  229. package/WeatherAPI/node_modules/form-data/lib/populate.js +10 -0
  230. package/WeatherAPI/node_modules/form-data/package.json +82 -0
  231. package/WeatherAPI/node_modules/function-bind/.eslintrc +21 -0
  232. package/WeatherAPI/node_modules/function-bind/.github/FUNDING.yml +12 -0
  233. package/WeatherAPI/node_modules/function-bind/.github/SECURITY.md +3 -0
  234. package/WeatherAPI/node_modules/function-bind/.nycrc +13 -0
  235. package/WeatherAPI/node_modules/function-bind/CHANGELOG.md +136 -0
  236. package/WeatherAPI/node_modules/function-bind/LICENSE +20 -0
  237. package/WeatherAPI/node_modules/function-bind/README.md +46 -0
  238. package/WeatherAPI/node_modules/function-bind/implementation.js +84 -0
  239. package/WeatherAPI/node_modules/function-bind/index.js +5 -0
  240. package/WeatherAPI/node_modules/function-bind/package.json +87 -0
  241. package/WeatherAPI/node_modules/function-bind/test/.eslintrc +9 -0
  242. package/WeatherAPI/node_modules/function-bind/test/index.js +252 -0
  243. package/WeatherAPI/node_modules/get-intrinsic/.eslintrc +42 -0
  244. package/WeatherAPI/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  245. package/WeatherAPI/node_modules/get-intrinsic/.nycrc +9 -0
  246. package/WeatherAPI/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  247. package/WeatherAPI/node_modules/get-intrinsic/LICENSE +21 -0
  248. package/WeatherAPI/node_modules/get-intrinsic/README.md +71 -0
  249. package/WeatherAPI/node_modules/get-intrinsic/index.js +378 -0
  250. package/WeatherAPI/node_modules/get-intrinsic/package.json +97 -0
  251. package/WeatherAPI/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  252. package/WeatherAPI/node_modules/get-proto/.eslintrc +10 -0
  253. package/WeatherAPI/node_modules/get-proto/.github/FUNDING.yml +12 -0
  254. package/WeatherAPI/node_modules/get-proto/.nycrc +9 -0
  255. package/WeatherAPI/node_modules/get-proto/CHANGELOG.md +21 -0
  256. package/WeatherAPI/node_modules/get-proto/LICENSE +21 -0
  257. package/WeatherAPI/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  258. package/WeatherAPI/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  259. package/WeatherAPI/node_modules/get-proto/README.md +50 -0
  260. package/WeatherAPI/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  261. package/WeatherAPI/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  262. package/WeatherAPI/node_modules/get-proto/index.d.ts +5 -0
  263. package/WeatherAPI/node_modules/get-proto/index.js +27 -0
  264. package/WeatherAPI/node_modules/get-proto/package.json +81 -0
  265. package/WeatherAPI/node_modules/get-proto/test/index.js +68 -0
  266. package/WeatherAPI/node_modules/get-proto/tsconfig.json +9 -0
  267. package/WeatherAPI/node_modules/gopd/.eslintrc +16 -0
  268. package/WeatherAPI/node_modules/gopd/.github/FUNDING.yml +12 -0
  269. package/WeatherAPI/node_modules/gopd/CHANGELOG.md +45 -0
  270. package/WeatherAPI/node_modules/gopd/LICENSE +21 -0
  271. package/WeatherAPI/node_modules/gopd/README.md +40 -0
  272. package/WeatherAPI/node_modules/gopd/gOPD.d.ts +1 -0
  273. package/WeatherAPI/node_modules/gopd/gOPD.js +4 -0
  274. package/WeatherAPI/node_modules/gopd/index.d.ts +5 -0
  275. package/WeatherAPI/node_modules/gopd/index.js +15 -0
  276. package/WeatherAPI/node_modules/gopd/package.json +77 -0
  277. package/WeatherAPI/node_modules/gopd/test/index.js +36 -0
  278. package/WeatherAPI/node_modules/gopd/tsconfig.json +9 -0
  279. package/WeatherAPI/node_modules/has-symbols/.eslintrc +11 -0
  280. package/WeatherAPI/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  281. package/WeatherAPI/node_modules/has-symbols/.nycrc +9 -0
  282. package/WeatherAPI/node_modules/has-symbols/CHANGELOG.md +91 -0
  283. package/WeatherAPI/node_modules/has-symbols/LICENSE +21 -0
  284. package/WeatherAPI/node_modules/has-symbols/README.md +46 -0
  285. package/WeatherAPI/node_modules/has-symbols/index.d.ts +3 -0
  286. package/WeatherAPI/node_modules/has-symbols/index.js +14 -0
  287. package/WeatherAPI/node_modules/has-symbols/package.json +111 -0
  288. package/WeatherAPI/node_modules/has-symbols/shams.d.ts +3 -0
  289. package/WeatherAPI/node_modules/has-symbols/shams.js +45 -0
  290. package/WeatherAPI/node_modules/has-symbols/test/index.js +22 -0
  291. package/WeatherAPI/node_modules/has-symbols/test/shams/core-js.js +29 -0
  292. package/WeatherAPI/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  293. package/WeatherAPI/node_modules/has-symbols/test/tests.js +58 -0
  294. package/WeatherAPI/node_modules/has-symbols/tsconfig.json +10 -0
  295. package/WeatherAPI/node_modules/has-tostringtag/.eslintrc +5 -0
  296. package/WeatherAPI/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
  297. package/WeatherAPI/node_modules/has-tostringtag/.nycrc +13 -0
  298. package/WeatherAPI/node_modules/has-tostringtag/CHANGELOG.md +42 -0
  299. package/WeatherAPI/node_modules/has-tostringtag/LICENSE +21 -0
  300. package/WeatherAPI/node_modules/has-tostringtag/README.md +46 -0
  301. package/WeatherAPI/node_modules/has-tostringtag/index.d.ts +3 -0
  302. package/WeatherAPI/node_modules/has-tostringtag/index.js +8 -0
  303. package/WeatherAPI/node_modules/has-tostringtag/package.json +108 -0
  304. package/WeatherAPI/node_modules/has-tostringtag/shams.d.ts +3 -0
  305. package/WeatherAPI/node_modules/has-tostringtag/shams.js +8 -0
  306. package/WeatherAPI/node_modules/has-tostringtag/test/index.js +21 -0
  307. package/WeatherAPI/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
  308. package/WeatherAPI/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
  309. package/WeatherAPI/node_modules/has-tostringtag/test/tests.js +15 -0
  310. package/WeatherAPI/node_modules/has-tostringtag/tsconfig.json +49 -0
  311. package/WeatherAPI/node_modules/hasown/.eslintrc +5 -0
  312. package/WeatherAPI/node_modules/hasown/.github/FUNDING.yml +12 -0
  313. package/WeatherAPI/node_modules/hasown/.nycrc +13 -0
  314. package/WeatherAPI/node_modules/hasown/CHANGELOG.md +40 -0
  315. package/WeatherAPI/node_modules/hasown/LICENSE +21 -0
  316. package/WeatherAPI/node_modules/hasown/README.md +40 -0
  317. package/WeatherAPI/node_modules/hasown/index.d.ts +3 -0
  318. package/WeatherAPI/node_modules/hasown/index.js +8 -0
  319. package/WeatherAPI/node_modules/hasown/package.json +92 -0
  320. package/WeatherAPI/node_modules/hasown/tsconfig.json +6 -0
  321. package/WeatherAPI/node_modules/lodash/LICENSE +47 -0
  322. package/WeatherAPI/node_modules/lodash/README.md +39 -0
  323. package/WeatherAPI/node_modules/lodash/_DataView.js +7 -0
  324. package/WeatherAPI/node_modules/lodash/_Hash.js +32 -0
  325. package/WeatherAPI/node_modules/lodash/_LazyWrapper.js +28 -0
  326. package/WeatherAPI/node_modules/lodash/_ListCache.js +32 -0
  327. package/WeatherAPI/node_modules/lodash/_LodashWrapper.js +22 -0
  328. package/WeatherAPI/node_modules/lodash/_Map.js +7 -0
  329. package/WeatherAPI/node_modules/lodash/_MapCache.js +32 -0
  330. package/WeatherAPI/node_modules/lodash/_Promise.js +7 -0
  331. package/WeatherAPI/node_modules/lodash/_Set.js +7 -0
  332. package/WeatherAPI/node_modules/lodash/_SetCache.js +27 -0
  333. package/WeatherAPI/node_modules/lodash/_Stack.js +27 -0
  334. package/WeatherAPI/node_modules/lodash/_Symbol.js +6 -0
  335. package/WeatherAPI/node_modules/lodash/_Uint8Array.js +6 -0
  336. package/WeatherAPI/node_modules/lodash/_WeakMap.js +7 -0
  337. package/WeatherAPI/node_modules/lodash/_apply.js +21 -0
  338. package/WeatherAPI/node_modules/lodash/_arrayAggregator.js +22 -0
  339. package/WeatherAPI/node_modules/lodash/_arrayEach.js +22 -0
  340. package/WeatherAPI/node_modules/lodash/_arrayEachRight.js +21 -0
  341. package/WeatherAPI/node_modules/lodash/_arrayEvery.js +23 -0
  342. package/WeatherAPI/node_modules/lodash/_arrayFilter.js +25 -0
  343. package/WeatherAPI/node_modules/lodash/_arrayIncludes.js +17 -0
  344. package/WeatherAPI/node_modules/lodash/_arrayIncludesWith.js +22 -0
  345. package/WeatherAPI/node_modules/lodash/_arrayLikeKeys.js +49 -0
  346. package/WeatherAPI/node_modules/lodash/_arrayMap.js +21 -0
  347. package/WeatherAPI/node_modules/lodash/_arrayPush.js +20 -0
  348. package/WeatherAPI/node_modules/lodash/_arrayReduce.js +26 -0
  349. package/WeatherAPI/node_modules/lodash/_arrayReduceRight.js +24 -0
  350. package/WeatherAPI/node_modules/lodash/_arraySample.js +15 -0
  351. package/WeatherAPI/node_modules/lodash/_arraySampleSize.js +17 -0
  352. package/WeatherAPI/node_modules/lodash/_arrayShuffle.js +15 -0
  353. package/WeatherAPI/node_modules/lodash/_arraySome.js +23 -0
  354. package/WeatherAPI/node_modules/lodash/_asciiSize.js +12 -0
  355. package/WeatherAPI/node_modules/lodash/_asciiToArray.js +12 -0
  356. package/WeatherAPI/node_modules/lodash/_asciiWords.js +15 -0
  357. package/WeatherAPI/node_modules/lodash/_assignMergeValue.js +20 -0
  358. package/WeatherAPI/node_modules/lodash/_assignValue.js +28 -0
  359. package/WeatherAPI/node_modules/lodash/_assocIndexOf.js +21 -0
  360. package/WeatherAPI/node_modules/lodash/_baseAggregator.js +21 -0
  361. package/WeatherAPI/node_modules/lodash/_baseAssign.js +17 -0
  362. package/WeatherAPI/node_modules/lodash/_baseAssignIn.js +17 -0
  363. package/WeatherAPI/node_modules/lodash/_baseAssignValue.js +25 -0
  364. package/WeatherAPI/node_modules/lodash/_baseAt.js +23 -0
  365. package/WeatherAPI/node_modules/lodash/_baseClamp.js +22 -0
  366. package/WeatherAPI/node_modules/lodash/_baseClone.js +166 -0
  367. package/WeatherAPI/node_modules/lodash/_baseConforms.js +18 -0
  368. package/WeatherAPI/node_modules/lodash/_baseConformsTo.js +27 -0
  369. package/WeatherAPI/node_modules/lodash/_baseCreate.js +30 -0
  370. package/WeatherAPI/node_modules/lodash/_baseDelay.js +21 -0
  371. package/WeatherAPI/node_modules/lodash/_baseDifference.js +67 -0
  372. package/WeatherAPI/node_modules/lodash/_baseEach.js +14 -0
  373. package/WeatherAPI/node_modules/lodash/_baseEachRight.js +14 -0
  374. package/WeatherAPI/node_modules/lodash/_baseEvery.js +21 -0
  375. package/WeatherAPI/node_modules/lodash/_baseExtremum.js +32 -0
  376. package/WeatherAPI/node_modules/lodash/_baseFill.js +32 -0
  377. package/WeatherAPI/node_modules/lodash/_baseFilter.js +21 -0
  378. package/WeatherAPI/node_modules/lodash/_baseFindIndex.js +24 -0
  379. package/WeatherAPI/node_modules/lodash/_baseFindKey.js +23 -0
  380. package/WeatherAPI/node_modules/lodash/_baseFlatten.js +38 -0
  381. package/WeatherAPI/node_modules/lodash/_baseFor.js +16 -0
  382. package/WeatherAPI/node_modules/lodash/_baseForOwn.js +16 -0
  383. package/WeatherAPI/node_modules/lodash/_baseForOwnRight.js +16 -0
  384. package/WeatherAPI/node_modules/lodash/_baseForRight.js +15 -0
  385. package/WeatherAPI/node_modules/lodash/_baseFunctions.js +19 -0
  386. package/WeatherAPI/node_modules/lodash/_baseGet.js +24 -0
  387. package/WeatherAPI/node_modules/lodash/_baseGetAllKeys.js +20 -0
  388. package/WeatherAPI/node_modules/lodash/_baseGetTag.js +28 -0
  389. package/WeatherAPI/node_modules/lodash/_baseGt.js +14 -0
  390. package/WeatherAPI/node_modules/lodash/_baseHas.js +19 -0
  391. package/WeatherAPI/node_modules/lodash/_baseHasIn.js +13 -0
  392. package/WeatherAPI/node_modules/lodash/_baseInRange.js +18 -0
  393. package/WeatherAPI/node_modules/lodash/_baseIndexOf.js +20 -0
  394. package/WeatherAPI/node_modules/lodash/_baseIndexOfWith.js +23 -0
  395. package/WeatherAPI/node_modules/lodash/_baseIntersection.js +74 -0
  396. package/WeatherAPI/node_modules/lodash/_baseInverter.js +21 -0
  397. package/WeatherAPI/node_modules/lodash/_baseInvoke.js +24 -0
  398. package/WeatherAPI/node_modules/lodash/_baseIsArguments.js +18 -0
  399. package/WeatherAPI/node_modules/lodash/_baseIsArrayBuffer.js +17 -0
  400. package/WeatherAPI/node_modules/lodash/_baseIsDate.js +18 -0
  401. package/WeatherAPI/node_modules/lodash/_baseIsEqual.js +28 -0
  402. package/WeatherAPI/node_modules/lodash/_baseIsEqualDeep.js +83 -0
  403. package/WeatherAPI/node_modules/lodash/_baseIsMap.js +18 -0
  404. package/WeatherAPI/node_modules/lodash/_baseIsMatch.js +62 -0
  405. package/WeatherAPI/node_modules/lodash/_baseIsNaN.js +12 -0
  406. package/WeatherAPI/node_modules/lodash/_baseIsNative.js +47 -0
  407. package/WeatherAPI/node_modules/lodash/_baseIsRegExp.js +18 -0
  408. package/WeatherAPI/node_modules/lodash/_baseIsSet.js +18 -0
  409. package/WeatherAPI/node_modules/lodash/_baseIsTypedArray.js +60 -0
  410. package/WeatherAPI/node_modules/lodash/_baseIteratee.js +31 -0
  411. package/WeatherAPI/node_modules/lodash/_baseKeys.js +30 -0
  412. package/WeatherAPI/node_modules/lodash/_baseKeysIn.js +33 -0
  413. package/WeatherAPI/node_modules/lodash/_baseLodash.js +10 -0
  414. package/WeatherAPI/node_modules/lodash/_baseLt.js +14 -0
  415. package/WeatherAPI/node_modules/lodash/_baseMap.js +22 -0
  416. package/WeatherAPI/node_modules/lodash/_baseMatches.js +22 -0
  417. package/WeatherAPI/node_modules/lodash/_baseMatchesProperty.js +33 -0
  418. package/WeatherAPI/node_modules/lodash/_baseMean.js +20 -0
  419. package/WeatherAPI/node_modules/lodash/_baseMerge.js +42 -0
  420. package/WeatherAPI/node_modules/lodash/_baseMergeDeep.js +94 -0
  421. package/WeatherAPI/node_modules/lodash/_baseNth.js +20 -0
  422. package/WeatherAPI/node_modules/lodash/_baseOrderBy.js +49 -0
  423. package/WeatherAPI/node_modules/lodash/_basePick.js +19 -0
  424. package/WeatherAPI/node_modules/lodash/_basePickBy.js +30 -0
  425. package/WeatherAPI/node_modules/lodash/_baseProperty.js +14 -0
  426. package/WeatherAPI/node_modules/lodash/_basePropertyDeep.js +16 -0
  427. package/WeatherAPI/node_modules/lodash/_basePropertyOf.js +14 -0
  428. package/WeatherAPI/node_modules/lodash/_basePullAll.js +51 -0
  429. package/WeatherAPI/node_modules/lodash/_basePullAt.js +37 -0
  430. package/WeatherAPI/node_modules/lodash/_baseRandom.js +18 -0
  431. package/WeatherAPI/node_modules/lodash/_baseRange.js +28 -0
  432. package/WeatherAPI/node_modules/lodash/_baseReduce.js +23 -0
  433. package/WeatherAPI/node_modules/lodash/_baseRepeat.js +35 -0
  434. package/WeatherAPI/node_modules/lodash/_baseRest.js +17 -0
  435. package/WeatherAPI/node_modules/lodash/_baseSample.js +15 -0
  436. package/WeatherAPI/node_modules/lodash/_baseSampleSize.js +18 -0
  437. package/WeatherAPI/node_modules/lodash/_baseSet.js +51 -0
  438. package/WeatherAPI/node_modules/lodash/_baseSetData.js +17 -0
  439. package/WeatherAPI/node_modules/lodash/_baseSetToString.js +22 -0
  440. package/WeatherAPI/node_modules/lodash/_baseShuffle.js +15 -0
  441. package/WeatherAPI/node_modules/lodash/_baseSlice.js +31 -0
  442. package/WeatherAPI/node_modules/lodash/_baseSome.js +22 -0
  443. package/WeatherAPI/node_modules/lodash/_baseSortBy.js +21 -0
  444. package/WeatherAPI/node_modules/lodash/_baseSortedIndex.js +42 -0
  445. package/WeatherAPI/node_modules/lodash/_baseSortedIndexBy.js +67 -0
  446. package/WeatherAPI/node_modules/lodash/_baseSortedUniq.js +30 -0
  447. package/WeatherAPI/node_modules/lodash/_baseSum.js +24 -0
  448. package/WeatherAPI/node_modules/lodash/_baseTimes.js +20 -0
  449. package/WeatherAPI/node_modules/lodash/_baseToNumber.js +24 -0
  450. package/WeatherAPI/node_modules/lodash/_baseToPairs.js +18 -0
  451. package/WeatherAPI/node_modules/lodash/_baseToString.js +37 -0
  452. package/WeatherAPI/node_modules/lodash/_baseTrim.js +19 -0
  453. package/WeatherAPI/node_modules/lodash/_baseUnary.js +14 -0
  454. package/WeatherAPI/node_modules/lodash/_baseUniq.js +72 -0
  455. package/WeatherAPI/node_modules/lodash/_baseUnset.js +65 -0
  456. package/WeatherAPI/node_modules/lodash/_baseUpdate.js +18 -0
  457. package/WeatherAPI/node_modules/lodash/_baseValues.js +19 -0
  458. package/WeatherAPI/node_modules/lodash/_baseWhile.js +26 -0
  459. package/WeatherAPI/node_modules/lodash/_baseWrapperValue.js +25 -0
  460. package/WeatherAPI/node_modules/lodash/_baseXor.js +36 -0
  461. package/WeatherAPI/node_modules/lodash/_baseZipObject.js +23 -0
  462. package/WeatherAPI/node_modules/lodash/_cacheHas.js +13 -0
  463. package/WeatherAPI/node_modules/lodash/_castArrayLikeObject.js +14 -0
  464. package/WeatherAPI/node_modules/lodash/_castFunction.js +14 -0
  465. package/WeatherAPI/node_modules/lodash/_castPath.js +21 -0
  466. package/WeatherAPI/node_modules/lodash/_castRest.js +14 -0
  467. package/WeatherAPI/node_modules/lodash/_castSlice.js +18 -0
  468. package/WeatherAPI/node_modules/lodash/_charsEndIndex.js +19 -0
  469. package/WeatherAPI/node_modules/lodash/_charsStartIndex.js +20 -0
  470. package/WeatherAPI/node_modules/lodash/_cloneArrayBuffer.js +16 -0
  471. package/WeatherAPI/node_modules/lodash/_cloneBuffer.js +35 -0
  472. package/WeatherAPI/node_modules/lodash/_cloneDataView.js +16 -0
  473. package/WeatherAPI/node_modules/lodash/_cloneRegExp.js +17 -0
  474. package/WeatherAPI/node_modules/lodash/_cloneSymbol.js +18 -0
  475. package/WeatherAPI/node_modules/lodash/_cloneTypedArray.js +16 -0
  476. package/WeatherAPI/node_modules/lodash/_compareAscending.js +41 -0
  477. package/WeatherAPI/node_modules/lodash/_compareMultiple.js +44 -0
  478. package/WeatherAPI/node_modules/lodash/_composeArgs.js +39 -0
  479. package/WeatherAPI/node_modules/lodash/_composeArgsRight.js +41 -0
  480. package/WeatherAPI/node_modules/lodash/_copyArray.js +20 -0
  481. package/WeatherAPI/node_modules/lodash/_copyObject.js +40 -0
  482. package/WeatherAPI/node_modules/lodash/_copySymbols.js +16 -0
  483. package/WeatherAPI/node_modules/lodash/_copySymbolsIn.js +16 -0
  484. package/WeatherAPI/node_modules/lodash/_coreJsData.js +6 -0
  485. package/WeatherAPI/node_modules/lodash/_countHolders.js +21 -0
  486. package/WeatherAPI/node_modules/lodash/_createAggregator.js +23 -0
  487. package/WeatherAPI/node_modules/lodash/_createAssigner.js +37 -0
  488. package/WeatherAPI/node_modules/lodash/_createBaseEach.js +32 -0
  489. package/WeatherAPI/node_modules/lodash/_createBaseFor.js +25 -0
  490. package/WeatherAPI/node_modules/lodash/_createBind.js +28 -0
  491. package/WeatherAPI/node_modules/lodash/_createCaseFirst.js +33 -0
  492. package/WeatherAPI/node_modules/lodash/_createCompounder.js +24 -0
  493. package/WeatherAPI/node_modules/lodash/_createCtor.js +37 -0
  494. package/WeatherAPI/node_modules/lodash/_createCurry.js +46 -0
  495. package/WeatherAPI/node_modules/lodash/_createFind.js +25 -0
  496. package/WeatherAPI/node_modules/lodash/_createFlow.js +78 -0
  497. package/WeatherAPI/node_modules/lodash/_createHybrid.js +92 -0
  498. package/WeatherAPI/node_modules/lodash/_createInverter.js +17 -0
  499. package/WeatherAPI/node_modules/lodash/_createMathOperation.js +38 -0
  500. package/WeatherAPI/node_modules/lodash/_createOver.js +27 -0
  501. package/WeatherAPI/node_modules/lodash/_createPadding.js +33 -0
  502. package/WeatherAPI/node_modules/lodash/_createPartial.js +43 -0
  503. package/WeatherAPI/node_modules/lodash/_createRange.js +30 -0
  504. package/WeatherAPI/node_modules/lodash/_createRecurry.js +56 -0
  505. package/WeatherAPI/node_modules/lodash/_createRelationalOperation.js +20 -0
  506. package/WeatherAPI/node_modules/lodash/_createRound.js +35 -0
  507. package/WeatherAPI/node_modules/lodash/_createSet.js +19 -0
  508. package/WeatherAPI/node_modules/lodash/_createToPairs.js +30 -0
  509. package/WeatherAPI/node_modules/lodash/_createWrap.js +106 -0
  510. package/WeatherAPI/node_modules/lodash/_customDefaultsAssignIn.js +29 -0
  511. package/WeatherAPI/node_modules/lodash/_customDefaultsMerge.js +28 -0
  512. package/WeatherAPI/node_modules/lodash/_customOmitClone.js +16 -0
  513. package/WeatherAPI/node_modules/lodash/_deburrLetter.js +71 -0
  514. package/WeatherAPI/node_modules/lodash/_defineProperty.js +11 -0
  515. package/WeatherAPI/node_modules/lodash/_equalArrays.js +84 -0
  516. package/WeatherAPI/node_modules/lodash/_equalByTag.js +112 -0
  517. package/WeatherAPI/node_modules/lodash/_equalObjects.js +90 -0
  518. package/WeatherAPI/node_modules/lodash/_escapeHtmlChar.js +21 -0
  519. package/WeatherAPI/node_modules/lodash/_escapeStringChar.js +22 -0
  520. package/WeatherAPI/node_modules/lodash/_flatRest.js +16 -0
  521. package/WeatherAPI/node_modules/lodash/_freeGlobal.js +4 -0
  522. package/WeatherAPI/node_modules/lodash/_getAllKeys.js +16 -0
  523. package/WeatherAPI/node_modules/lodash/_getAllKeysIn.js +17 -0
  524. package/WeatherAPI/node_modules/lodash/_getData.js +15 -0
  525. package/WeatherAPI/node_modules/lodash/_getFuncName.js +31 -0
  526. package/WeatherAPI/node_modules/lodash/_getHolder.js +13 -0
  527. package/WeatherAPI/node_modules/lodash/_getMapData.js +18 -0
  528. package/WeatherAPI/node_modules/lodash/_getMatchData.js +24 -0
  529. package/WeatherAPI/node_modules/lodash/_getNative.js +17 -0
  530. package/WeatherAPI/node_modules/lodash/_getPrototype.js +6 -0
  531. package/WeatherAPI/node_modules/lodash/_getRawTag.js +46 -0
  532. package/WeatherAPI/node_modules/lodash/_getSymbols.js +30 -0
  533. package/WeatherAPI/node_modules/lodash/_getSymbolsIn.js +25 -0
  534. package/WeatherAPI/node_modules/lodash/_getTag.js +58 -0
  535. package/WeatherAPI/node_modules/lodash/_getValue.js +13 -0
  536. package/WeatherAPI/node_modules/lodash/_getView.js +33 -0
  537. package/WeatherAPI/node_modules/lodash/_getWrapDetails.js +17 -0
  538. package/WeatherAPI/node_modules/lodash/_hasPath.js +39 -0
  539. package/WeatherAPI/node_modules/lodash/_hasUnicode.js +26 -0
  540. package/WeatherAPI/node_modules/lodash/_hasUnicodeWord.js +15 -0
  541. package/WeatherAPI/node_modules/lodash/_hashClear.js +15 -0
  542. package/WeatherAPI/node_modules/lodash/_hashDelete.js +17 -0
  543. package/WeatherAPI/node_modules/lodash/_hashGet.js +30 -0
  544. package/WeatherAPI/node_modules/lodash/_hashHas.js +23 -0
  545. package/WeatherAPI/node_modules/lodash/_hashSet.js +23 -0
  546. package/WeatherAPI/node_modules/lodash/_initCloneArray.js +26 -0
  547. package/WeatherAPI/node_modules/lodash/_initCloneByTag.js +77 -0
  548. package/WeatherAPI/node_modules/lodash/_initCloneObject.js +18 -0
  549. package/WeatherAPI/node_modules/lodash/_insertWrapDetails.js +23 -0
  550. package/WeatherAPI/node_modules/lodash/_isFlattenable.js +20 -0
  551. package/WeatherAPI/node_modules/lodash/_isIndex.js +25 -0
  552. package/WeatherAPI/node_modules/lodash/_isIterateeCall.js +30 -0
  553. package/WeatherAPI/node_modules/lodash/_isKey.js +29 -0
  554. package/WeatherAPI/node_modules/lodash/_isKeyable.js +15 -0
  555. package/WeatherAPI/node_modules/lodash/_isLaziable.js +28 -0
  556. package/WeatherAPI/node_modules/lodash/_isMaskable.js +14 -0
  557. package/WeatherAPI/node_modules/lodash/_isMasked.js +20 -0
  558. package/WeatherAPI/node_modules/lodash/_isPrototype.js +18 -0
  559. package/WeatherAPI/node_modules/lodash/_isStrictComparable.js +15 -0
  560. package/WeatherAPI/node_modules/lodash/_iteratorToArray.js +18 -0
  561. package/WeatherAPI/node_modules/lodash/_lazyClone.js +23 -0
  562. package/WeatherAPI/node_modules/lodash/_lazyReverse.js +23 -0
  563. package/WeatherAPI/node_modules/lodash/_lazyValue.js +69 -0
  564. package/WeatherAPI/node_modules/lodash/_listCacheClear.js +13 -0
  565. package/WeatherAPI/node_modules/lodash/_listCacheDelete.js +35 -0
  566. package/WeatherAPI/node_modules/lodash/_listCacheGet.js +19 -0
  567. package/WeatherAPI/node_modules/lodash/_listCacheHas.js +16 -0
  568. package/WeatherAPI/node_modules/lodash/_listCacheSet.js +26 -0
  569. package/WeatherAPI/node_modules/lodash/_mapCacheClear.js +21 -0
  570. package/WeatherAPI/node_modules/lodash/_mapCacheDelete.js +18 -0
  571. package/WeatherAPI/node_modules/lodash/_mapCacheGet.js +16 -0
  572. package/WeatherAPI/node_modules/lodash/_mapCacheHas.js +16 -0
  573. package/WeatherAPI/node_modules/lodash/_mapCacheSet.js +22 -0
  574. package/WeatherAPI/node_modules/lodash/_mapToArray.js +18 -0
  575. package/WeatherAPI/node_modules/lodash/_matchesStrictComparable.js +20 -0
  576. package/WeatherAPI/node_modules/lodash/_memoizeCapped.js +26 -0
  577. package/WeatherAPI/node_modules/lodash/_mergeData.js +90 -0
  578. package/WeatherAPI/node_modules/lodash/_metaMap.js +6 -0
  579. package/WeatherAPI/node_modules/lodash/_nativeCreate.js +6 -0
  580. package/WeatherAPI/node_modules/lodash/_nativeKeys.js +6 -0
  581. package/WeatherAPI/node_modules/lodash/_nativeKeysIn.js +20 -0
  582. package/WeatherAPI/node_modules/lodash/_nodeUtil.js +30 -0
  583. package/WeatherAPI/node_modules/lodash/_objectToString.js +22 -0
  584. package/WeatherAPI/node_modules/lodash/_overArg.js +15 -0
  585. package/WeatherAPI/node_modules/lodash/_overRest.js +36 -0
  586. package/WeatherAPI/node_modules/lodash/_parent.js +16 -0
  587. package/WeatherAPI/node_modules/lodash/_reEscape.js +4 -0
  588. package/WeatherAPI/node_modules/lodash/_reEvaluate.js +4 -0
  589. package/WeatherAPI/node_modules/lodash/_reInterpolate.js +4 -0
  590. package/WeatherAPI/node_modules/lodash/_realNames.js +4 -0
  591. package/WeatherAPI/node_modules/lodash/_reorder.js +29 -0
  592. package/WeatherAPI/node_modules/lodash/_replaceHolders.js +29 -0
  593. package/WeatherAPI/node_modules/lodash/_root.js +9 -0
  594. package/WeatherAPI/node_modules/lodash/_safeGet.js +21 -0
  595. package/WeatherAPI/node_modules/lodash/_setCacheAdd.js +19 -0
  596. package/WeatherAPI/node_modules/lodash/_setCacheHas.js +14 -0
  597. package/WeatherAPI/node_modules/lodash/_setData.js +20 -0
  598. package/WeatherAPI/node_modules/lodash/_setToArray.js +18 -0
  599. package/WeatherAPI/node_modules/lodash/_setToPairs.js +18 -0
  600. package/WeatherAPI/node_modules/lodash/_setToString.js +14 -0
  601. package/WeatherAPI/node_modules/lodash/_setWrapToString.js +21 -0
  602. package/WeatherAPI/node_modules/lodash/_shortOut.js +37 -0
  603. package/WeatherAPI/node_modules/lodash/_shuffleSelf.js +28 -0
  604. package/WeatherAPI/node_modules/lodash/_stackClear.js +15 -0
  605. package/WeatherAPI/node_modules/lodash/_stackDelete.js +18 -0
  606. package/WeatherAPI/node_modules/lodash/_stackGet.js +14 -0
  607. package/WeatherAPI/node_modules/lodash/_stackHas.js +14 -0
  608. package/WeatherAPI/node_modules/lodash/_stackSet.js +34 -0
  609. package/WeatherAPI/node_modules/lodash/_strictIndexOf.js +23 -0
  610. package/WeatherAPI/node_modules/lodash/_strictLastIndexOf.js +21 -0
  611. package/WeatherAPI/node_modules/lodash/_stringSize.js +18 -0
  612. package/WeatherAPI/node_modules/lodash/_stringToArray.js +18 -0
  613. package/WeatherAPI/node_modules/lodash/_stringToPath.js +27 -0
  614. package/WeatherAPI/node_modules/lodash/_toKey.js +21 -0
  615. package/WeatherAPI/node_modules/lodash/_toSource.js +26 -0
  616. package/WeatherAPI/node_modules/lodash/_trimmedEndIndex.js +19 -0
  617. package/WeatherAPI/node_modules/lodash/_unescapeHtmlChar.js +21 -0
  618. package/WeatherAPI/node_modules/lodash/_unicodeSize.js +44 -0
  619. package/WeatherAPI/node_modules/lodash/_unicodeToArray.js +40 -0
  620. package/WeatherAPI/node_modules/lodash/_unicodeWords.js +69 -0
  621. package/WeatherAPI/node_modules/lodash/_updateWrapDetails.js +46 -0
  622. package/WeatherAPI/node_modules/lodash/_wrapperClone.js +23 -0
  623. package/WeatherAPI/node_modules/lodash/add.js +22 -0
  624. package/WeatherAPI/node_modules/lodash/after.js +42 -0
  625. package/WeatherAPI/node_modules/lodash/array.js +67 -0
  626. package/WeatherAPI/node_modules/lodash/ary.js +29 -0
  627. package/WeatherAPI/node_modules/lodash/assign.js +58 -0
  628. package/WeatherAPI/node_modules/lodash/assignIn.js +40 -0
  629. package/WeatherAPI/node_modules/lodash/assignInWith.js +38 -0
  630. package/WeatherAPI/node_modules/lodash/assignWith.js +37 -0
  631. package/WeatherAPI/node_modules/lodash/at.js +23 -0
  632. package/WeatherAPI/node_modules/lodash/attempt.js +35 -0
  633. package/WeatherAPI/node_modules/lodash/before.js +40 -0
  634. package/WeatherAPI/node_modules/lodash/bind.js +57 -0
  635. package/WeatherAPI/node_modules/lodash/bindAll.js +41 -0
  636. package/WeatherAPI/node_modules/lodash/bindKey.js +68 -0
  637. package/WeatherAPI/node_modules/lodash/camelCase.js +29 -0
  638. package/WeatherAPI/node_modules/lodash/capitalize.js +23 -0
  639. package/WeatherAPI/node_modules/lodash/castArray.js +44 -0
  640. package/WeatherAPI/node_modules/lodash/ceil.js +26 -0
  641. package/WeatherAPI/node_modules/lodash/chain.js +38 -0
  642. package/WeatherAPI/node_modules/lodash/chunk.js +50 -0
  643. package/WeatherAPI/node_modules/lodash/clamp.js +39 -0
  644. package/WeatherAPI/node_modules/lodash/clone.js +36 -0
  645. package/WeatherAPI/node_modules/lodash/cloneDeep.js +29 -0
  646. package/WeatherAPI/node_modules/lodash/cloneDeepWith.js +40 -0
  647. package/WeatherAPI/node_modules/lodash/cloneWith.js +42 -0
  648. package/WeatherAPI/node_modules/lodash/collection.js +30 -0
  649. package/WeatherAPI/node_modules/lodash/commit.js +33 -0
  650. package/WeatherAPI/node_modules/lodash/compact.js +31 -0
  651. package/WeatherAPI/node_modules/lodash/concat.js +43 -0
  652. package/WeatherAPI/node_modules/lodash/cond.js +60 -0
  653. package/WeatherAPI/node_modules/lodash/conforms.js +35 -0
  654. package/WeatherAPI/node_modules/lodash/conformsTo.js +32 -0
  655. package/WeatherAPI/node_modules/lodash/constant.js +26 -0
  656. package/WeatherAPI/node_modules/lodash/core.js +3877 -0
  657. package/WeatherAPI/node_modules/lodash/core.min.js +29 -0
  658. package/WeatherAPI/node_modules/lodash/countBy.js +40 -0
  659. package/WeatherAPI/node_modules/lodash/create.js +43 -0
  660. package/WeatherAPI/node_modules/lodash/curry.js +57 -0
  661. package/WeatherAPI/node_modules/lodash/curryRight.js +54 -0
  662. package/WeatherAPI/node_modules/lodash/date.js +3 -0
  663. package/WeatherAPI/node_modules/lodash/debounce.js +191 -0
  664. package/WeatherAPI/node_modules/lodash/deburr.js +45 -0
  665. package/WeatherAPI/node_modules/lodash/defaultTo.js +25 -0
  666. package/WeatherAPI/node_modules/lodash/defaults.js +64 -0
  667. package/WeatherAPI/node_modules/lodash/defaultsDeep.js +30 -0
  668. package/WeatherAPI/node_modules/lodash/defer.js +26 -0
  669. package/WeatherAPI/node_modules/lodash/delay.js +28 -0
  670. package/WeatherAPI/node_modules/lodash/difference.js +33 -0
  671. package/WeatherAPI/node_modules/lodash/differenceBy.js +44 -0
  672. package/WeatherAPI/node_modules/lodash/differenceWith.js +40 -0
  673. package/WeatherAPI/node_modules/lodash/divide.js +22 -0
  674. package/WeatherAPI/node_modules/lodash/drop.js +38 -0
  675. package/WeatherAPI/node_modules/lodash/dropRight.js +39 -0
  676. package/WeatherAPI/node_modules/lodash/dropRightWhile.js +45 -0
  677. package/WeatherAPI/node_modules/lodash/dropWhile.js +45 -0
  678. package/WeatherAPI/node_modules/lodash/each.js +1 -0
  679. package/WeatherAPI/node_modules/lodash/eachRight.js +1 -0
  680. package/WeatherAPI/node_modules/lodash/endsWith.js +43 -0
  681. package/WeatherAPI/node_modules/lodash/entries.js +1 -0
  682. package/WeatherAPI/node_modules/lodash/entriesIn.js +1 -0
  683. package/WeatherAPI/node_modules/lodash/eq.js +37 -0
  684. package/WeatherAPI/node_modules/lodash/escape.js +43 -0
  685. package/WeatherAPI/node_modules/lodash/escapeRegExp.js +32 -0
  686. package/WeatherAPI/node_modules/lodash/every.js +56 -0
  687. package/WeatherAPI/node_modules/lodash/extend.js +1 -0
  688. package/WeatherAPI/node_modules/lodash/extendWith.js +1 -0
  689. package/WeatherAPI/node_modules/lodash/fill.js +45 -0
  690. package/WeatherAPI/node_modules/lodash/filter.js +52 -0
  691. package/WeatherAPI/node_modules/lodash/find.js +42 -0
  692. package/WeatherAPI/node_modules/lodash/findIndex.js +55 -0
  693. package/WeatherAPI/node_modules/lodash/findKey.js +44 -0
  694. package/WeatherAPI/node_modules/lodash/findLast.js +25 -0
  695. package/WeatherAPI/node_modules/lodash/findLastIndex.js +59 -0
  696. package/WeatherAPI/node_modules/lodash/findLastKey.js +44 -0
  697. package/WeatherAPI/node_modules/lodash/first.js +1 -0
  698. package/WeatherAPI/node_modules/lodash/flatMap.js +29 -0
  699. package/WeatherAPI/node_modules/lodash/flatMapDeep.js +31 -0
  700. package/WeatherAPI/node_modules/lodash/flatMapDepth.js +31 -0
  701. package/WeatherAPI/node_modules/lodash/flatten.js +22 -0
  702. package/WeatherAPI/node_modules/lodash/flattenDeep.js +25 -0
  703. package/WeatherAPI/node_modules/lodash/flattenDepth.js +33 -0
  704. package/WeatherAPI/node_modules/lodash/flip.js +28 -0
  705. package/WeatherAPI/node_modules/lodash/floor.js +26 -0
  706. package/WeatherAPI/node_modules/lodash/flow.js +27 -0
  707. package/WeatherAPI/node_modules/lodash/flowRight.js +26 -0
  708. package/WeatherAPI/node_modules/lodash/forEach.js +41 -0
  709. package/WeatherAPI/node_modules/lodash/forEachRight.js +31 -0
  710. package/WeatherAPI/node_modules/lodash/forIn.js +39 -0
  711. package/WeatherAPI/node_modules/lodash/forInRight.js +37 -0
  712. package/WeatherAPI/node_modules/lodash/forOwn.js +36 -0
  713. package/WeatherAPI/node_modules/lodash/forOwnRight.js +34 -0
  714. package/WeatherAPI/node_modules/lodash/fp/F.js +1 -0
  715. package/WeatherAPI/node_modules/lodash/fp/T.js +1 -0
  716. package/WeatherAPI/node_modules/lodash/fp/__.js +1 -0
  717. package/WeatherAPI/node_modules/lodash/fp/_baseConvert.js +569 -0
  718. package/WeatherAPI/node_modules/lodash/fp/_convertBrowser.js +18 -0
  719. package/WeatherAPI/node_modules/lodash/fp/_falseOptions.js +7 -0
  720. package/WeatherAPI/node_modules/lodash/fp/_mapping.js +358 -0
  721. package/WeatherAPI/node_modules/lodash/fp/_util.js +16 -0
  722. package/WeatherAPI/node_modules/lodash/fp/add.js +5 -0
  723. package/WeatherAPI/node_modules/lodash/fp/after.js +5 -0
  724. package/WeatherAPI/node_modules/lodash/fp/all.js +1 -0
  725. package/WeatherAPI/node_modules/lodash/fp/allPass.js +1 -0
  726. package/WeatherAPI/node_modules/lodash/fp/always.js +1 -0
  727. package/WeatherAPI/node_modules/lodash/fp/any.js +1 -0
  728. package/WeatherAPI/node_modules/lodash/fp/anyPass.js +1 -0
  729. package/WeatherAPI/node_modules/lodash/fp/apply.js +1 -0
  730. package/WeatherAPI/node_modules/lodash/fp/array.js +2 -0
  731. package/WeatherAPI/node_modules/lodash/fp/ary.js +5 -0
  732. package/WeatherAPI/node_modules/lodash/fp/assign.js +5 -0
  733. package/WeatherAPI/node_modules/lodash/fp/assignAll.js +5 -0
  734. package/WeatherAPI/node_modules/lodash/fp/assignAllWith.js +5 -0
  735. package/WeatherAPI/node_modules/lodash/fp/assignIn.js +5 -0
  736. package/WeatherAPI/node_modules/lodash/fp/assignInAll.js +5 -0
  737. package/WeatherAPI/node_modules/lodash/fp/assignInAllWith.js +5 -0
  738. package/WeatherAPI/node_modules/lodash/fp/assignInWith.js +5 -0
  739. package/WeatherAPI/node_modules/lodash/fp/assignWith.js +5 -0
  740. package/WeatherAPI/node_modules/lodash/fp/assoc.js +1 -0
  741. package/WeatherAPI/node_modules/lodash/fp/assocPath.js +1 -0
  742. package/WeatherAPI/node_modules/lodash/fp/at.js +5 -0
  743. package/WeatherAPI/node_modules/lodash/fp/attempt.js +5 -0
  744. package/WeatherAPI/node_modules/lodash/fp/before.js +5 -0
  745. package/WeatherAPI/node_modules/lodash/fp/bind.js +5 -0
  746. package/WeatherAPI/node_modules/lodash/fp/bindAll.js +5 -0
  747. package/WeatherAPI/node_modules/lodash/fp/bindKey.js +5 -0
  748. package/WeatherAPI/node_modules/lodash/fp/camelCase.js +5 -0
  749. package/WeatherAPI/node_modules/lodash/fp/capitalize.js +5 -0
  750. package/WeatherAPI/node_modules/lodash/fp/castArray.js +5 -0
  751. package/WeatherAPI/node_modules/lodash/fp/ceil.js +5 -0
  752. package/WeatherAPI/node_modules/lodash/fp/chain.js +5 -0
  753. package/WeatherAPI/node_modules/lodash/fp/chunk.js +5 -0
  754. package/WeatherAPI/node_modules/lodash/fp/clamp.js +5 -0
  755. package/WeatherAPI/node_modules/lodash/fp/clone.js +5 -0
  756. package/WeatherAPI/node_modules/lodash/fp/cloneDeep.js +5 -0
  757. package/WeatherAPI/node_modules/lodash/fp/cloneDeepWith.js +5 -0
  758. package/WeatherAPI/node_modules/lodash/fp/cloneWith.js +5 -0
  759. package/WeatherAPI/node_modules/lodash/fp/collection.js +2 -0
  760. package/WeatherAPI/node_modules/lodash/fp/commit.js +5 -0
  761. package/WeatherAPI/node_modules/lodash/fp/compact.js +5 -0
  762. package/WeatherAPI/node_modules/lodash/fp/complement.js +1 -0
  763. package/WeatherAPI/node_modules/lodash/fp/compose.js +1 -0
  764. package/WeatherAPI/node_modules/lodash/fp/concat.js +5 -0
  765. package/WeatherAPI/node_modules/lodash/fp/cond.js +5 -0
  766. package/WeatherAPI/node_modules/lodash/fp/conforms.js +1 -0
  767. package/WeatherAPI/node_modules/lodash/fp/conformsTo.js +5 -0
  768. package/WeatherAPI/node_modules/lodash/fp/constant.js +5 -0
  769. package/WeatherAPI/node_modules/lodash/fp/contains.js +1 -0
  770. package/WeatherAPI/node_modules/lodash/fp/convert.js +18 -0
  771. package/WeatherAPI/node_modules/lodash/fp/countBy.js +5 -0
  772. package/WeatherAPI/node_modules/lodash/fp/create.js +5 -0
  773. package/WeatherAPI/node_modules/lodash/fp/curry.js +5 -0
  774. package/WeatherAPI/node_modules/lodash/fp/curryN.js +5 -0
  775. package/WeatherAPI/node_modules/lodash/fp/curryRight.js +5 -0
  776. package/WeatherAPI/node_modules/lodash/fp/curryRightN.js +5 -0
  777. package/WeatherAPI/node_modules/lodash/fp/date.js +2 -0
  778. package/WeatherAPI/node_modules/lodash/fp/debounce.js +5 -0
  779. package/WeatherAPI/node_modules/lodash/fp/deburr.js +5 -0
  780. package/WeatherAPI/node_modules/lodash/fp/defaultTo.js +5 -0
  781. package/WeatherAPI/node_modules/lodash/fp/defaults.js +5 -0
  782. package/WeatherAPI/node_modules/lodash/fp/defaultsAll.js +5 -0
  783. package/WeatherAPI/node_modules/lodash/fp/defaultsDeep.js +5 -0
  784. package/WeatherAPI/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
  785. package/WeatherAPI/node_modules/lodash/fp/defer.js +5 -0
  786. package/WeatherAPI/node_modules/lodash/fp/delay.js +5 -0
  787. package/WeatherAPI/node_modules/lodash/fp/difference.js +5 -0
  788. package/WeatherAPI/node_modules/lodash/fp/differenceBy.js +5 -0
  789. package/WeatherAPI/node_modules/lodash/fp/differenceWith.js +5 -0
  790. package/WeatherAPI/node_modules/lodash/fp/dissoc.js +1 -0
  791. package/WeatherAPI/node_modules/lodash/fp/dissocPath.js +1 -0
  792. package/WeatherAPI/node_modules/lodash/fp/divide.js +5 -0
  793. package/WeatherAPI/node_modules/lodash/fp/drop.js +5 -0
  794. package/WeatherAPI/node_modules/lodash/fp/dropLast.js +1 -0
  795. package/WeatherAPI/node_modules/lodash/fp/dropLastWhile.js +1 -0
  796. package/WeatherAPI/node_modules/lodash/fp/dropRight.js +5 -0
  797. package/WeatherAPI/node_modules/lodash/fp/dropRightWhile.js +5 -0
  798. package/WeatherAPI/node_modules/lodash/fp/dropWhile.js +5 -0
  799. package/WeatherAPI/node_modules/lodash/fp/each.js +1 -0
  800. package/WeatherAPI/node_modules/lodash/fp/eachRight.js +1 -0
  801. package/WeatherAPI/node_modules/lodash/fp/endsWith.js +5 -0
  802. package/WeatherAPI/node_modules/lodash/fp/entries.js +1 -0
  803. package/WeatherAPI/node_modules/lodash/fp/entriesIn.js +1 -0
  804. package/WeatherAPI/node_modules/lodash/fp/eq.js +5 -0
  805. package/WeatherAPI/node_modules/lodash/fp/equals.js +1 -0
  806. package/WeatherAPI/node_modules/lodash/fp/escape.js +5 -0
  807. package/WeatherAPI/node_modules/lodash/fp/escapeRegExp.js +5 -0
  808. package/WeatherAPI/node_modules/lodash/fp/every.js +5 -0
  809. package/WeatherAPI/node_modules/lodash/fp/extend.js +1 -0
  810. package/WeatherAPI/node_modules/lodash/fp/extendAll.js +1 -0
  811. package/WeatherAPI/node_modules/lodash/fp/extendAllWith.js +1 -0
  812. package/WeatherAPI/node_modules/lodash/fp/extendWith.js +1 -0
  813. package/WeatherAPI/node_modules/lodash/fp/fill.js +5 -0
  814. package/WeatherAPI/node_modules/lodash/fp/filter.js +5 -0
  815. package/WeatherAPI/node_modules/lodash/fp/find.js +5 -0
  816. package/WeatherAPI/node_modules/lodash/fp/findFrom.js +5 -0
  817. package/WeatherAPI/node_modules/lodash/fp/findIndex.js +5 -0
  818. package/WeatherAPI/node_modules/lodash/fp/findIndexFrom.js +5 -0
  819. package/WeatherAPI/node_modules/lodash/fp/findKey.js +5 -0
  820. package/WeatherAPI/node_modules/lodash/fp/findLast.js +5 -0
  821. package/WeatherAPI/node_modules/lodash/fp/findLastFrom.js +5 -0
  822. package/WeatherAPI/node_modules/lodash/fp/findLastIndex.js +5 -0
  823. package/WeatherAPI/node_modules/lodash/fp/findLastIndexFrom.js +5 -0
  824. package/WeatherAPI/node_modules/lodash/fp/findLastKey.js +5 -0
  825. package/WeatherAPI/node_modules/lodash/fp/first.js +1 -0
  826. package/WeatherAPI/node_modules/lodash/fp/flatMap.js +5 -0
  827. package/WeatherAPI/node_modules/lodash/fp/flatMapDeep.js +5 -0
  828. package/WeatherAPI/node_modules/lodash/fp/flatMapDepth.js +5 -0
  829. package/WeatherAPI/node_modules/lodash/fp/flatten.js +5 -0
  830. package/WeatherAPI/node_modules/lodash/fp/flattenDeep.js +5 -0
  831. package/WeatherAPI/node_modules/lodash/fp/flattenDepth.js +5 -0
  832. package/WeatherAPI/node_modules/lodash/fp/flip.js +5 -0
  833. package/WeatherAPI/node_modules/lodash/fp/floor.js +5 -0
  834. package/WeatherAPI/node_modules/lodash/fp/flow.js +5 -0
  835. package/WeatherAPI/node_modules/lodash/fp/flowRight.js +5 -0
  836. package/WeatherAPI/node_modules/lodash/fp/forEach.js +5 -0
  837. package/WeatherAPI/node_modules/lodash/fp/forEachRight.js +5 -0
  838. package/WeatherAPI/node_modules/lodash/fp/forIn.js +5 -0
  839. package/WeatherAPI/node_modules/lodash/fp/forInRight.js +5 -0
  840. package/WeatherAPI/node_modules/lodash/fp/forOwn.js +5 -0
  841. package/WeatherAPI/node_modules/lodash/fp/forOwnRight.js +5 -0
  842. package/WeatherAPI/node_modules/lodash/fp/fromPairs.js +5 -0
  843. package/WeatherAPI/node_modules/lodash/fp/function.js +2 -0
  844. package/WeatherAPI/node_modules/lodash/fp/functions.js +5 -0
  845. package/WeatherAPI/node_modules/lodash/fp/functionsIn.js +5 -0
  846. package/WeatherAPI/node_modules/lodash/fp/get.js +5 -0
  847. package/WeatherAPI/node_modules/lodash/fp/getOr.js +5 -0
  848. package/WeatherAPI/node_modules/lodash/fp/groupBy.js +5 -0
  849. package/WeatherAPI/node_modules/lodash/fp/gt.js +5 -0
  850. package/WeatherAPI/node_modules/lodash/fp/gte.js +5 -0
  851. package/WeatherAPI/node_modules/lodash/fp/has.js +5 -0
  852. package/WeatherAPI/node_modules/lodash/fp/hasIn.js +5 -0
  853. package/WeatherAPI/node_modules/lodash/fp/head.js +5 -0
  854. package/WeatherAPI/node_modules/lodash/fp/identical.js +1 -0
  855. package/WeatherAPI/node_modules/lodash/fp/identity.js +5 -0
  856. package/WeatherAPI/node_modules/lodash/fp/inRange.js +5 -0
  857. package/WeatherAPI/node_modules/lodash/fp/includes.js +5 -0
  858. package/WeatherAPI/node_modules/lodash/fp/includesFrom.js +5 -0
  859. package/WeatherAPI/node_modules/lodash/fp/indexBy.js +1 -0
  860. package/WeatherAPI/node_modules/lodash/fp/indexOf.js +5 -0
  861. package/WeatherAPI/node_modules/lodash/fp/indexOfFrom.js +5 -0
  862. package/WeatherAPI/node_modules/lodash/fp/init.js +1 -0
  863. package/WeatherAPI/node_modules/lodash/fp/initial.js +5 -0
  864. package/WeatherAPI/node_modules/lodash/fp/intersection.js +5 -0
  865. package/WeatherAPI/node_modules/lodash/fp/intersectionBy.js +5 -0
  866. package/WeatherAPI/node_modules/lodash/fp/intersectionWith.js +5 -0
  867. package/WeatherAPI/node_modules/lodash/fp/invert.js +5 -0
  868. package/WeatherAPI/node_modules/lodash/fp/invertBy.js +5 -0
  869. package/WeatherAPI/node_modules/lodash/fp/invertObj.js +1 -0
  870. package/WeatherAPI/node_modules/lodash/fp/invoke.js +5 -0
  871. package/WeatherAPI/node_modules/lodash/fp/invokeArgs.js +5 -0
  872. package/WeatherAPI/node_modules/lodash/fp/invokeArgsMap.js +5 -0
  873. package/WeatherAPI/node_modules/lodash/fp/invokeMap.js +5 -0
  874. package/WeatherAPI/node_modules/lodash/fp/isArguments.js +5 -0
  875. package/WeatherAPI/node_modules/lodash/fp/isArray.js +5 -0
  876. package/WeatherAPI/node_modules/lodash/fp/isArrayBuffer.js +5 -0
  877. package/WeatherAPI/node_modules/lodash/fp/isArrayLike.js +5 -0
  878. package/WeatherAPI/node_modules/lodash/fp/isArrayLikeObject.js +5 -0
  879. package/WeatherAPI/node_modules/lodash/fp/isBoolean.js +5 -0
  880. package/WeatherAPI/node_modules/lodash/fp/isBuffer.js +5 -0
  881. package/WeatherAPI/node_modules/lodash/fp/isDate.js +5 -0
  882. package/WeatherAPI/node_modules/lodash/fp/isElement.js +5 -0
  883. package/WeatherAPI/node_modules/lodash/fp/isEmpty.js +5 -0
  884. package/WeatherAPI/node_modules/lodash/fp/isEqual.js +5 -0
  885. package/WeatherAPI/node_modules/lodash/fp/isEqualWith.js +5 -0
  886. package/WeatherAPI/node_modules/lodash/fp/isError.js +5 -0
  887. package/WeatherAPI/node_modules/lodash/fp/isFinite.js +5 -0
  888. package/WeatherAPI/node_modules/lodash/fp/isFunction.js +5 -0
  889. package/WeatherAPI/node_modules/lodash/fp/isInteger.js +5 -0
  890. package/WeatherAPI/node_modules/lodash/fp/isLength.js +5 -0
  891. package/WeatherAPI/node_modules/lodash/fp/isMap.js +5 -0
  892. package/WeatherAPI/node_modules/lodash/fp/isMatch.js +5 -0
  893. package/WeatherAPI/node_modules/lodash/fp/isMatchWith.js +5 -0
  894. package/WeatherAPI/node_modules/lodash/fp/isNaN.js +5 -0
  895. package/WeatherAPI/node_modules/lodash/fp/isNative.js +5 -0
  896. package/WeatherAPI/node_modules/lodash/fp/isNil.js +5 -0
  897. package/WeatherAPI/node_modules/lodash/fp/isNull.js +5 -0
  898. package/WeatherAPI/node_modules/lodash/fp/isNumber.js +5 -0
  899. package/WeatherAPI/node_modules/lodash/fp/isObject.js +5 -0
  900. package/WeatherAPI/node_modules/lodash/fp/isObjectLike.js +5 -0
  901. package/WeatherAPI/node_modules/lodash/fp/isPlainObject.js +5 -0
  902. package/WeatherAPI/node_modules/lodash/fp/isRegExp.js +5 -0
  903. package/WeatherAPI/node_modules/lodash/fp/isSafeInteger.js +5 -0
  904. package/WeatherAPI/node_modules/lodash/fp/isSet.js +5 -0
  905. package/WeatherAPI/node_modules/lodash/fp/isString.js +5 -0
  906. package/WeatherAPI/node_modules/lodash/fp/isSymbol.js +5 -0
  907. package/WeatherAPI/node_modules/lodash/fp/isTypedArray.js +5 -0
  908. package/WeatherAPI/node_modules/lodash/fp/isUndefined.js +5 -0
  909. package/WeatherAPI/node_modules/lodash/fp/isWeakMap.js +5 -0
  910. package/WeatherAPI/node_modules/lodash/fp/isWeakSet.js +5 -0
  911. package/WeatherAPI/node_modules/lodash/fp/iteratee.js +5 -0
  912. package/WeatherAPI/node_modules/lodash/fp/join.js +5 -0
  913. package/WeatherAPI/node_modules/lodash/fp/juxt.js +1 -0
  914. package/WeatherAPI/node_modules/lodash/fp/kebabCase.js +5 -0
  915. package/WeatherAPI/node_modules/lodash/fp/keyBy.js +5 -0
  916. package/WeatherAPI/node_modules/lodash/fp/keys.js +5 -0
  917. package/WeatherAPI/node_modules/lodash/fp/keysIn.js +5 -0
  918. package/WeatherAPI/node_modules/lodash/fp/lang.js +2 -0
  919. package/WeatherAPI/node_modules/lodash/fp/last.js +5 -0
  920. package/WeatherAPI/node_modules/lodash/fp/lastIndexOf.js +5 -0
  921. package/WeatherAPI/node_modules/lodash/fp/lastIndexOfFrom.js +5 -0
  922. package/WeatherAPI/node_modules/lodash/fp/lowerCase.js +5 -0
  923. package/WeatherAPI/node_modules/lodash/fp/lowerFirst.js +5 -0
  924. package/WeatherAPI/node_modules/lodash/fp/lt.js +5 -0
  925. package/WeatherAPI/node_modules/lodash/fp/lte.js +5 -0
  926. package/WeatherAPI/node_modules/lodash/fp/map.js +5 -0
  927. package/WeatherAPI/node_modules/lodash/fp/mapKeys.js +5 -0
  928. package/WeatherAPI/node_modules/lodash/fp/mapValues.js +5 -0
  929. package/WeatherAPI/node_modules/lodash/fp/matches.js +1 -0
  930. package/WeatherAPI/node_modules/lodash/fp/matchesProperty.js +5 -0
  931. package/WeatherAPI/node_modules/lodash/fp/math.js +2 -0
  932. package/WeatherAPI/node_modules/lodash/fp/max.js +5 -0
  933. package/WeatherAPI/node_modules/lodash/fp/maxBy.js +5 -0
  934. package/WeatherAPI/node_modules/lodash/fp/mean.js +5 -0
  935. package/WeatherAPI/node_modules/lodash/fp/meanBy.js +5 -0
  936. package/WeatherAPI/node_modules/lodash/fp/memoize.js +5 -0
  937. package/WeatherAPI/node_modules/lodash/fp/merge.js +5 -0
  938. package/WeatherAPI/node_modules/lodash/fp/mergeAll.js +5 -0
  939. package/WeatherAPI/node_modules/lodash/fp/mergeAllWith.js +5 -0
  940. package/WeatherAPI/node_modules/lodash/fp/mergeWith.js +5 -0
  941. package/WeatherAPI/node_modules/lodash/fp/method.js +5 -0
  942. package/WeatherAPI/node_modules/lodash/fp/methodOf.js +5 -0
  943. package/WeatherAPI/node_modules/lodash/fp/min.js +5 -0
  944. package/WeatherAPI/node_modules/lodash/fp/minBy.js +5 -0
  945. package/WeatherAPI/node_modules/lodash/fp/mixin.js +5 -0
  946. package/WeatherAPI/node_modules/lodash/fp/multiply.js +5 -0
  947. package/WeatherAPI/node_modules/lodash/fp/nAry.js +1 -0
  948. package/WeatherAPI/node_modules/lodash/fp/negate.js +5 -0
  949. package/WeatherAPI/node_modules/lodash/fp/next.js +5 -0
  950. package/WeatherAPI/node_modules/lodash/fp/noop.js +5 -0
  951. package/WeatherAPI/node_modules/lodash/fp/now.js +5 -0
  952. package/WeatherAPI/node_modules/lodash/fp/nth.js +5 -0
  953. package/WeatherAPI/node_modules/lodash/fp/nthArg.js +5 -0
  954. package/WeatherAPI/node_modules/lodash/fp/number.js +2 -0
  955. package/WeatherAPI/node_modules/lodash/fp/object.js +2 -0
  956. package/WeatherAPI/node_modules/lodash/fp/omit.js +5 -0
  957. package/WeatherAPI/node_modules/lodash/fp/omitAll.js +1 -0
  958. package/WeatherAPI/node_modules/lodash/fp/omitBy.js +5 -0
  959. package/WeatherAPI/node_modules/lodash/fp/once.js +5 -0
  960. package/WeatherAPI/node_modules/lodash/fp/orderBy.js +5 -0
  961. package/WeatherAPI/node_modules/lodash/fp/over.js +5 -0
  962. package/WeatherAPI/node_modules/lodash/fp/overArgs.js +5 -0
  963. package/WeatherAPI/node_modules/lodash/fp/overEvery.js +5 -0
  964. package/WeatherAPI/node_modules/lodash/fp/overSome.js +5 -0
  965. package/WeatherAPI/node_modules/lodash/fp/pad.js +5 -0
  966. package/WeatherAPI/node_modules/lodash/fp/padChars.js +5 -0
  967. package/WeatherAPI/node_modules/lodash/fp/padCharsEnd.js +5 -0
  968. package/WeatherAPI/node_modules/lodash/fp/padCharsStart.js +5 -0
  969. package/WeatherAPI/node_modules/lodash/fp/padEnd.js +5 -0
  970. package/WeatherAPI/node_modules/lodash/fp/padStart.js +5 -0
  971. package/WeatherAPI/node_modules/lodash/fp/parseInt.js +5 -0
  972. package/WeatherAPI/node_modules/lodash/fp/partial.js +5 -0
  973. package/WeatherAPI/node_modules/lodash/fp/partialRight.js +5 -0
  974. package/WeatherAPI/node_modules/lodash/fp/partition.js +5 -0
  975. package/WeatherAPI/node_modules/lodash/fp/path.js +1 -0
  976. package/WeatherAPI/node_modules/lodash/fp/pathEq.js +1 -0
  977. package/WeatherAPI/node_modules/lodash/fp/pathOr.js +1 -0
  978. package/WeatherAPI/node_modules/lodash/fp/paths.js +1 -0
  979. package/WeatherAPI/node_modules/lodash/fp/pick.js +5 -0
  980. package/WeatherAPI/node_modules/lodash/fp/pickAll.js +1 -0
  981. package/WeatherAPI/node_modules/lodash/fp/pickBy.js +5 -0
  982. package/WeatherAPI/node_modules/lodash/fp/pipe.js +1 -0
  983. package/WeatherAPI/node_modules/lodash/fp/placeholder.js +6 -0
  984. package/WeatherAPI/node_modules/lodash/fp/plant.js +5 -0
  985. package/WeatherAPI/node_modules/lodash/fp/pluck.js +1 -0
  986. package/WeatherAPI/node_modules/lodash/fp/prop.js +1 -0
  987. package/WeatherAPI/node_modules/lodash/fp/propEq.js +1 -0
  988. package/WeatherAPI/node_modules/lodash/fp/propOr.js +1 -0
  989. package/WeatherAPI/node_modules/lodash/fp/property.js +1 -0
  990. package/WeatherAPI/node_modules/lodash/fp/propertyOf.js +5 -0
  991. package/WeatherAPI/node_modules/lodash/fp/props.js +1 -0
  992. package/WeatherAPI/node_modules/lodash/fp/pull.js +5 -0
  993. package/WeatherAPI/node_modules/lodash/fp/pullAll.js +5 -0
  994. package/WeatherAPI/node_modules/lodash/fp/pullAllBy.js +5 -0
  995. package/WeatherAPI/node_modules/lodash/fp/pullAllWith.js +5 -0
  996. package/WeatherAPI/node_modules/lodash/fp/pullAt.js +5 -0
  997. package/WeatherAPI/node_modules/lodash/fp/random.js +5 -0
  998. package/WeatherAPI/node_modules/lodash/fp/range.js +5 -0
  999. package/WeatherAPI/node_modules/lodash/fp/rangeRight.js +5 -0
  1000. package/WeatherAPI/node_modules/lodash/fp/rangeStep.js +5 -0
  1001. package/WeatherAPI/node_modules/lodash/fp/rangeStepRight.js +5 -0
  1002. package/WeatherAPI/node_modules/lodash/fp/rearg.js +5 -0
  1003. package/WeatherAPI/node_modules/lodash/fp/reduce.js +5 -0
  1004. package/WeatherAPI/node_modules/lodash/fp/reduceRight.js +5 -0
  1005. package/WeatherAPI/node_modules/lodash/fp/reject.js +5 -0
  1006. package/WeatherAPI/node_modules/lodash/fp/remove.js +5 -0
  1007. package/WeatherAPI/node_modules/lodash/fp/repeat.js +5 -0
  1008. package/WeatherAPI/node_modules/lodash/fp/replace.js +5 -0
  1009. package/WeatherAPI/node_modules/lodash/fp/rest.js +5 -0
  1010. package/WeatherAPI/node_modules/lodash/fp/restFrom.js +5 -0
  1011. package/WeatherAPI/node_modules/lodash/fp/result.js +5 -0
  1012. package/WeatherAPI/node_modules/lodash/fp/reverse.js +5 -0
  1013. package/WeatherAPI/node_modules/lodash/fp/round.js +5 -0
  1014. package/WeatherAPI/node_modules/lodash/fp/sample.js +5 -0
  1015. package/WeatherAPI/node_modules/lodash/fp/sampleSize.js +5 -0
  1016. package/WeatherAPI/node_modules/lodash/fp/seq.js +2 -0
  1017. package/WeatherAPI/node_modules/lodash/fp/set.js +5 -0
  1018. package/WeatherAPI/node_modules/lodash/fp/setWith.js +5 -0
  1019. package/WeatherAPI/node_modules/lodash/fp/shuffle.js +5 -0
  1020. package/WeatherAPI/node_modules/lodash/fp/size.js +5 -0
  1021. package/WeatherAPI/node_modules/lodash/fp/slice.js +5 -0
  1022. package/WeatherAPI/node_modules/lodash/fp/snakeCase.js +5 -0
  1023. package/WeatherAPI/node_modules/lodash/fp/some.js +5 -0
  1024. package/WeatherAPI/node_modules/lodash/fp/sortBy.js +5 -0
  1025. package/WeatherAPI/node_modules/lodash/fp/sortedIndex.js +5 -0
  1026. package/WeatherAPI/node_modules/lodash/fp/sortedIndexBy.js +5 -0
  1027. package/WeatherAPI/node_modules/lodash/fp/sortedIndexOf.js +5 -0
  1028. package/WeatherAPI/node_modules/lodash/fp/sortedLastIndex.js +5 -0
  1029. package/WeatherAPI/node_modules/lodash/fp/sortedLastIndexBy.js +5 -0
  1030. package/WeatherAPI/node_modules/lodash/fp/sortedLastIndexOf.js +5 -0
  1031. package/WeatherAPI/node_modules/lodash/fp/sortedUniq.js +5 -0
  1032. package/WeatherAPI/node_modules/lodash/fp/sortedUniqBy.js +5 -0
  1033. package/WeatherAPI/node_modules/lodash/fp/split.js +5 -0
  1034. package/WeatherAPI/node_modules/lodash/fp/spread.js +5 -0
  1035. package/WeatherAPI/node_modules/lodash/fp/spreadFrom.js +5 -0
  1036. package/WeatherAPI/node_modules/lodash/fp/startCase.js +5 -0
  1037. package/WeatherAPI/node_modules/lodash/fp/startsWith.js +5 -0
  1038. package/WeatherAPI/node_modules/lodash/fp/string.js +2 -0
  1039. package/WeatherAPI/node_modules/lodash/fp/stubArray.js +5 -0
  1040. package/WeatherAPI/node_modules/lodash/fp/stubFalse.js +5 -0
  1041. package/WeatherAPI/node_modules/lodash/fp/stubObject.js +5 -0
  1042. package/WeatherAPI/node_modules/lodash/fp/stubString.js +5 -0
  1043. package/WeatherAPI/node_modules/lodash/fp/stubTrue.js +5 -0
  1044. package/WeatherAPI/node_modules/lodash/fp/subtract.js +5 -0
  1045. package/WeatherAPI/node_modules/lodash/fp/sum.js +5 -0
  1046. package/WeatherAPI/node_modules/lodash/fp/sumBy.js +5 -0
  1047. package/WeatherAPI/node_modules/lodash/fp/symmetricDifference.js +1 -0
  1048. package/WeatherAPI/node_modules/lodash/fp/symmetricDifferenceBy.js +1 -0
  1049. package/WeatherAPI/node_modules/lodash/fp/symmetricDifferenceWith.js +1 -0
  1050. package/WeatherAPI/node_modules/lodash/fp/tail.js +5 -0
  1051. package/WeatherAPI/node_modules/lodash/fp/take.js +5 -0
  1052. package/WeatherAPI/node_modules/lodash/fp/takeLast.js +1 -0
  1053. package/WeatherAPI/node_modules/lodash/fp/takeLastWhile.js +1 -0
  1054. package/WeatherAPI/node_modules/lodash/fp/takeRight.js +5 -0
  1055. package/WeatherAPI/node_modules/lodash/fp/takeRightWhile.js +5 -0
  1056. package/WeatherAPI/node_modules/lodash/fp/takeWhile.js +5 -0
  1057. package/WeatherAPI/node_modules/lodash/fp/tap.js +5 -0
  1058. package/WeatherAPI/node_modules/lodash/fp/template.js +5 -0
  1059. package/WeatherAPI/node_modules/lodash/fp/templateSettings.js +5 -0
  1060. package/WeatherAPI/node_modules/lodash/fp/throttle.js +5 -0
  1061. package/WeatherAPI/node_modules/lodash/fp/thru.js +5 -0
  1062. package/WeatherAPI/node_modules/lodash/fp/times.js +5 -0
  1063. package/WeatherAPI/node_modules/lodash/fp/toArray.js +5 -0
  1064. package/WeatherAPI/node_modules/lodash/fp/toFinite.js +5 -0
  1065. package/WeatherAPI/node_modules/lodash/fp/toInteger.js +5 -0
  1066. package/WeatherAPI/node_modules/lodash/fp/toIterator.js +5 -0
  1067. package/WeatherAPI/node_modules/lodash/fp/toJSON.js +5 -0
  1068. package/WeatherAPI/node_modules/lodash/fp/toLength.js +5 -0
  1069. package/WeatherAPI/node_modules/lodash/fp/toLower.js +5 -0
  1070. package/WeatherAPI/node_modules/lodash/fp/toNumber.js +5 -0
  1071. package/WeatherAPI/node_modules/lodash/fp/toPairs.js +5 -0
  1072. package/WeatherAPI/node_modules/lodash/fp/toPairsIn.js +5 -0
  1073. package/WeatherAPI/node_modules/lodash/fp/toPath.js +5 -0
  1074. package/WeatherAPI/node_modules/lodash/fp/toPlainObject.js +5 -0
  1075. package/WeatherAPI/node_modules/lodash/fp/toSafeInteger.js +5 -0
  1076. package/WeatherAPI/node_modules/lodash/fp/toString.js +5 -0
  1077. package/WeatherAPI/node_modules/lodash/fp/toUpper.js +5 -0
  1078. package/WeatherAPI/node_modules/lodash/fp/transform.js +5 -0
  1079. package/WeatherAPI/node_modules/lodash/fp/trim.js +5 -0
  1080. package/WeatherAPI/node_modules/lodash/fp/trimChars.js +5 -0
  1081. package/WeatherAPI/node_modules/lodash/fp/trimCharsEnd.js +5 -0
  1082. package/WeatherAPI/node_modules/lodash/fp/trimCharsStart.js +5 -0
  1083. package/WeatherAPI/node_modules/lodash/fp/trimEnd.js +5 -0
  1084. package/WeatherAPI/node_modules/lodash/fp/trimStart.js +5 -0
  1085. package/WeatherAPI/node_modules/lodash/fp/truncate.js +5 -0
  1086. package/WeatherAPI/node_modules/lodash/fp/unapply.js +1 -0
  1087. package/WeatherAPI/node_modules/lodash/fp/unary.js +5 -0
  1088. package/WeatherAPI/node_modules/lodash/fp/unescape.js +5 -0
  1089. package/WeatherAPI/node_modules/lodash/fp/union.js +5 -0
  1090. package/WeatherAPI/node_modules/lodash/fp/unionBy.js +5 -0
  1091. package/WeatherAPI/node_modules/lodash/fp/unionWith.js +5 -0
  1092. package/WeatherAPI/node_modules/lodash/fp/uniq.js +5 -0
  1093. package/WeatherAPI/node_modules/lodash/fp/uniqBy.js +5 -0
  1094. package/WeatherAPI/node_modules/lodash/fp/uniqWith.js +5 -0
  1095. package/WeatherAPI/node_modules/lodash/fp/uniqueId.js +5 -0
  1096. package/WeatherAPI/node_modules/lodash/fp/unnest.js +1 -0
  1097. package/WeatherAPI/node_modules/lodash/fp/unset.js +5 -0
  1098. package/WeatherAPI/node_modules/lodash/fp/unzip.js +5 -0
  1099. package/WeatherAPI/node_modules/lodash/fp/unzipWith.js +5 -0
  1100. package/WeatherAPI/node_modules/lodash/fp/update.js +5 -0
  1101. package/WeatherAPI/node_modules/lodash/fp/updateWith.js +5 -0
  1102. package/WeatherAPI/node_modules/lodash/fp/upperCase.js +5 -0
  1103. package/WeatherAPI/node_modules/lodash/fp/upperFirst.js +5 -0
  1104. package/WeatherAPI/node_modules/lodash/fp/useWith.js +1 -0
  1105. package/WeatherAPI/node_modules/lodash/fp/util.js +2 -0
  1106. package/WeatherAPI/node_modules/lodash/fp/value.js +5 -0
  1107. package/WeatherAPI/node_modules/lodash/fp/valueOf.js +5 -0
  1108. package/WeatherAPI/node_modules/lodash/fp/values.js +5 -0
  1109. package/WeatherAPI/node_modules/lodash/fp/valuesIn.js +5 -0
  1110. package/WeatherAPI/node_modules/lodash/fp/where.js +1 -0
  1111. package/WeatherAPI/node_modules/lodash/fp/whereEq.js +1 -0
  1112. package/WeatherAPI/node_modules/lodash/fp/without.js +5 -0
  1113. package/WeatherAPI/node_modules/lodash/fp/words.js +5 -0
  1114. package/WeatherAPI/node_modules/lodash/fp/wrap.js +5 -0
  1115. package/WeatherAPI/node_modules/lodash/fp/wrapperAt.js +5 -0
  1116. package/WeatherAPI/node_modules/lodash/fp/wrapperChain.js +5 -0
  1117. package/WeatherAPI/node_modules/lodash/fp/wrapperLodash.js +5 -0
  1118. package/WeatherAPI/node_modules/lodash/fp/wrapperReverse.js +5 -0
  1119. package/WeatherAPI/node_modules/lodash/fp/wrapperValue.js +5 -0
  1120. package/WeatherAPI/node_modules/lodash/fp/xor.js +5 -0
  1121. package/WeatherAPI/node_modules/lodash/fp/xorBy.js +5 -0
  1122. package/WeatherAPI/node_modules/lodash/fp/xorWith.js +5 -0
  1123. package/WeatherAPI/node_modules/lodash/fp/zip.js +5 -0
  1124. package/WeatherAPI/node_modules/lodash/fp/zipAll.js +5 -0
  1125. package/WeatherAPI/node_modules/lodash/fp/zipObj.js +1 -0
  1126. package/WeatherAPI/node_modules/lodash/fp/zipObject.js +5 -0
  1127. package/WeatherAPI/node_modules/lodash/fp/zipObjectDeep.js +5 -0
  1128. package/WeatherAPI/node_modules/lodash/fp/zipWith.js +5 -0
  1129. package/WeatherAPI/node_modules/lodash/fp.js +2 -0
  1130. package/WeatherAPI/node_modules/lodash/fromPairs.js +28 -0
  1131. package/WeatherAPI/node_modules/lodash/function.js +25 -0
  1132. package/WeatherAPI/node_modules/lodash/functions.js +31 -0
  1133. package/WeatherAPI/node_modules/lodash/functionsIn.js +31 -0
  1134. package/WeatherAPI/node_modules/lodash/get.js +33 -0
  1135. package/WeatherAPI/node_modules/lodash/groupBy.js +41 -0
  1136. package/WeatherAPI/node_modules/lodash/gt.js +29 -0
  1137. package/WeatherAPI/node_modules/lodash/gte.js +30 -0
  1138. package/WeatherAPI/node_modules/lodash/has.js +35 -0
  1139. package/WeatherAPI/node_modules/lodash/hasIn.js +34 -0
  1140. package/WeatherAPI/node_modules/lodash/head.js +23 -0
  1141. package/WeatherAPI/node_modules/lodash/identity.js +21 -0
  1142. package/WeatherAPI/node_modules/lodash/inRange.js +55 -0
  1143. package/WeatherAPI/node_modules/lodash/includes.js +53 -0
  1144. package/WeatherAPI/node_modules/lodash/index.js +1 -0
  1145. package/WeatherAPI/node_modules/lodash/indexOf.js +42 -0
  1146. package/WeatherAPI/node_modules/lodash/initial.js +22 -0
  1147. package/WeatherAPI/node_modules/lodash/intersection.js +30 -0
  1148. package/WeatherAPI/node_modules/lodash/intersectionBy.js +45 -0
  1149. package/WeatherAPI/node_modules/lodash/intersectionWith.js +41 -0
  1150. package/WeatherAPI/node_modules/lodash/invert.js +42 -0
  1151. package/WeatherAPI/node_modules/lodash/invertBy.js +56 -0
  1152. package/WeatherAPI/node_modules/lodash/invoke.js +24 -0
  1153. package/WeatherAPI/node_modules/lodash/invokeMap.js +41 -0
  1154. package/WeatherAPI/node_modules/lodash/isArguments.js +36 -0
  1155. package/WeatherAPI/node_modules/lodash/isArray.js +26 -0
  1156. package/WeatherAPI/node_modules/lodash/isArrayBuffer.js +27 -0
  1157. package/WeatherAPI/node_modules/lodash/isArrayLike.js +33 -0
  1158. package/WeatherAPI/node_modules/lodash/isArrayLikeObject.js +33 -0
  1159. package/WeatherAPI/node_modules/lodash/isBoolean.js +29 -0
  1160. package/WeatherAPI/node_modules/lodash/isBuffer.js +38 -0
  1161. package/WeatherAPI/node_modules/lodash/isDate.js +27 -0
  1162. package/WeatherAPI/node_modules/lodash/isElement.js +25 -0
  1163. package/WeatherAPI/node_modules/lodash/isEmpty.js +77 -0
  1164. package/WeatherAPI/node_modules/lodash/isEqual.js +35 -0
  1165. package/WeatherAPI/node_modules/lodash/isEqualWith.js +41 -0
  1166. package/WeatherAPI/node_modules/lodash/isError.js +36 -0
  1167. package/WeatherAPI/node_modules/lodash/isFinite.js +36 -0
  1168. package/WeatherAPI/node_modules/lodash/isFunction.js +37 -0
  1169. package/WeatherAPI/node_modules/lodash/isInteger.js +33 -0
  1170. package/WeatherAPI/node_modules/lodash/isLength.js +35 -0
  1171. package/WeatherAPI/node_modules/lodash/isMap.js +27 -0
  1172. package/WeatherAPI/node_modules/lodash/isMatch.js +36 -0
  1173. package/WeatherAPI/node_modules/lodash/isMatchWith.js +41 -0
  1174. package/WeatherAPI/node_modules/lodash/isNaN.js +38 -0
  1175. package/WeatherAPI/node_modules/lodash/isNative.js +40 -0
  1176. package/WeatherAPI/node_modules/lodash/isNil.js +25 -0
  1177. package/WeatherAPI/node_modules/lodash/isNull.js +22 -0
  1178. package/WeatherAPI/node_modules/lodash/isNumber.js +38 -0
  1179. package/WeatherAPI/node_modules/lodash/isObject.js +31 -0
  1180. package/WeatherAPI/node_modules/lodash/isObjectLike.js +29 -0
  1181. package/WeatherAPI/node_modules/lodash/isPlainObject.js +62 -0
  1182. package/WeatherAPI/node_modules/lodash/isRegExp.js +27 -0
  1183. package/WeatherAPI/node_modules/lodash/isSafeInteger.js +37 -0
  1184. package/WeatherAPI/node_modules/lodash/isSet.js +27 -0
  1185. package/WeatherAPI/node_modules/lodash/isString.js +30 -0
  1186. package/WeatherAPI/node_modules/lodash/isSymbol.js +29 -0
  1187. package/WeatherAPI/node_modules/lodash/isTypedArray.js +27 -0
  1188. package/WeatherAPI/node_modules/lodash/isUndefined.js +22 -0
  1189. package/WeatherAPI/node_modules/lodash/isWeakMap.js +28 -0
  1190. package/WeatherAPI/node_modules/lodash/isWeakSet.js +28 -0
  1191. package/WeatherAPI/node_modules/lodash/iteratee.js +53 -0
  1192. package/WeatherAPI/node_modules/lodash/join.js +26 -0
  1193. package/WeatherAPI/node_modules/lodash/kebabCase.js +28 -0
  1194. package/WeatherAPI/node_modules/lodash/keyBy.js +36 -0
  1195. package/WeatherAPI/node_modules/lodash/keys.js +37 -0
  1196. package/WeatherAPI/node_modules/lodash/keysIn.js +32 -0
  1197. package/WeatherAPI/node_modules/lodash/lang.js +58 -0
  1198. package/WeatherAPI/node_modules/lodash/last.js +20 -0
  1199. package/WeatherAPI/node_modules/lodash/lastIndexOf.js +46 -0
  1200. package/WeatherAPI/node_modules/lodash/lodash.js +17248 -0
  1201. package/WeatherAPI/node_modules/lodash/lodash.min.js +140 -0
  1202. package/WeatherAPI/node_modules/lodash/lowerCase.js +27 -0
  1203. package/WeatherAPI/node_modules/lodash/lowerFirst.js +22 -0
  1204. package/WeatherAPI/node_modules/lodash/lt.js +29 -0
  1205. package/WeatherAPI/node_modules/lodash/lte.js +30 -0
  1206. package/WeatherAPI/node_modules/lodash/map.js +53 -0
  1207. package/WeatherAPI/node_modules/lodash/mapKeys.js +36 -0
  1208. package/WeatherAPI/node_modules/lodash/mapValues.js +43 -0
  1209. package/WeatherAPI/node_modules/lodash/matches.js +46 -0
  1210. package/WeatherAPI/node_modules/lodash/matchesProperty.js +44 -0
  1211. package/WeatherAPI/node_modules/lodash/math.js +17 -0
  1212. package/WeatherAPI/node_modules/lodash/max.js +29 -0
  1213. package/WeatherAPI/node_modules/lodash/maxBy.js +34 -0
  1214. package/WeatherAPI/node_modules/lodash/mean.js +22 -0
  1215. package/WeatherAPI/node_modules/lodash/meanBy.js +31 -0
  1216. package/WeatherAPI/node_modules/lodash/memoize.js +73 -0
  1217. package/WeatherAPI/node_modules/lodash/merge.js +39 -0
  1218. package/WeatherAPI/node_modules/lodash/mergeWith.js +39 -0
  1219. package/WeatherAPI/node_modules/lodash/method.js +34 -0
  1220. package/WeatherAPI/node_modules/lodash/methodOf.js +33 -0
  1221. package/WeatherAPI/node_modules/lodash/min.js +29 -0
  1222. package/WeatherAPI/node_modules/lodash/minBy.js +34 -0
  1223. package/WeatherAPI/node_modules/lodash/mixin.js +74 -0
  1224. package/WeatherAPI/node_modules/lodash/multiply.js +22 -0
  1225. package/WeatherAPI/node_modules/lodash/negate.js +40 -0
  1226. package/WeatherAPI/node_modules/lodash/next.js +35 -0
  1227. package/WeatherAPI/node_modules/lodash/noop.js +17 -0
  1228. package/WeatherAPI/node_modules/lodash/now.js +23 -0
  1229. package/WeatherAPI/node_modules/lodash/nth.js +29 -0
  1230. package/WeatherAPI/node_modules/lodash/nthArg.js +32 -0
  1231. package/WeatherAPI/node_modules/lodash/number.js +5 -0
  1232. package/WeatherAPI/node_modules/lodash/object.js +49 -0
  1233. package/WeatherAPI/node_modules/lodash/omit.js +57 -0
  1234. package/WeatherAPI/node_modules/lodash/omitBy.js +29 -0
  1235. package/WeatherAPI/node_modules/lodash/once.js +25 -0
  1236. package/WeatherAPI/node_modules/lodash/orderBy.js +47 -0
  1237. package/WeatherAPI/node_modules/lodash/over.js +24 -0
  1238. package/WeatherAPI/node_modules/lodash/overArgs.js +61 -0
  1239. package/WeatherAPI/node_modules/lodash/overEvery.js +34 -0
  1240. package/WeatherAPI/node_modules/lodash/overSome.js +37 -0
  1241. package/WeatherAPI/node_modules/lodash/package.json +17 -0
  1242. package/WeatherAPI/node_modules/lodash/pad.js +49 -0
  1243. package/WeatherAPI/node_modules/lodash/padEnd.js +39 -0
  1244. package/WeatherAPI/node_modules/lodash/padStart.js +39 -0
  1245. package/WeatherAPI/node_modules/lodash/parseInt.js +43 -0
  1246. package/WeatherAPI/node_modules/lodash/partial.js +50 -0
  1247. package/WeatherAPI/node_modules/lodash/partialRight.js +49 -0
  1248. package/WeatherAPI/node_modules/lodash/partition.js +43 -0
  1249. package/WeatherAPI/node_modules/lodash/pick.js +25 -0
  1250. package/WeatherAPI/node_modules/lodash/pickBy.js +37 -0
  1251. package/WeatherAPI/node_modules/lodash/plant.js +48 -0
  1252. package/WeatherAPI/node_modules/lodash/property.js +32 -0
  1253. package/WeatherAPI/node_modules/lodash/propertyOf.js +30 -0
  1254. package/WeatherAPI/node_modules/lodash/pull.js +29 -0
  1255. package/WeatherAPI/node_modules/lodash/pullAll.js +29 -0
  1256. package/WeatherAPI/node_modules/lodash/pullAllBy.js +33 -0
  1257. package/WeatherAPI/node_modules/lodash/pullAllWith.js +32 -0
  1258. package/WeatherAPI/node_modules/lodash/pullAt.js +43 -0
  1259. package/WeatherAPI/node_modules/lodash/random.js +82 -0
  1260. package/WeatherAPI/node_modules/lodash/range.js +46 -0
  1261. package/WeatherAPI/node_modules/lodash/rangeRight.js +41 -0
  1262. package/WeatherAPI/node_modules/lodash/rearg.js +33 -0
  1263. package/WeatherAPI/node_modules/lodash/reduce.js +51 -0
  1264. package/WeatherAPI/node_modules/lodash/reduceRight.js +36 -0
  1265. package/WeatherAPI/node_modules/lodash/reject.js +46 -0
  1266. package/WeatherAPI/node_modules/lodash/remove.js +53 -0
  1267. package/WeatherAPI/node_modules/lodash/repeat.js +37 -0
  1268. package/WeatherAPI/node_modules/lodash/replace.js +29 -0
  1269. package/WeatherAPI/node_modules/lodash/rest.js +40 -0
  1270. package/WeatherAPI/node_modules/lodash/result.js +56 -0
  1271. package/WeatherAPI/node_modules/lodash/reverse.js +34 -0
  1272. package/WeatherAPI/node_modules/lodash/round.js +26 -0
  1273. package/WeatherAPI/node_modules/lodash/sample.js +24 -0
  1274. package/WeatherAPI/node_modules/lodash/sampleSize.js +37 -0
  1275. package/WeatherAPI/node_modules/lodash/seq.js +16 -0
  1276. package/WeatherAPI/node_modules/lodash/set.js +35 -0
  1277. package/WeatherAPI/node_modules/lodash/setWith.js +32 -0
  1278. package/WeatherAPI/node_modules/lodash/shuffle.js +25 -0
  1279. package/WeatherAPI/node_modules/lodash/size.js +46 -0
  1280. package/WeatherAPI/node_modules/lodash/slice.js +37 -0
  1281. package/WeatherAPI/node_modules/lodash/snakeCase.js +28 -0
  1282. package/WeatherAPI/node_modules/lodash/some.js +51 -0
  1283. package/WeatherAPI/node_modules/lodash/sortBy.js +48 -0
  1284. package/WeatherAPI/node_modules/lodash/sortedIndex.js +24 -0
  1285. package/WeatherAPI/node_modules/lodash/sortedIndexBy.js +33 -0
  1286. package/WeatherAPI/node_modules/lodash/sortedIndexOf.js +31 -0
  1287. package/WeatherAPI/node_modules/lodash/sortedLastIndex.js +25 -0
  1288. package/WeatherAPI/node_modules/lodash/sortedLastIndexBy.js +33 -0
  1289. package/WeatherAPI/node_modules/lodash/sortedLastIndexOf.js +31 -0
  1290. package/WeatherAPI/node_modules/lodash/sortedUniq.js +24 -0
  1291. package/WeatherAPI/node_modules/lodash/sortedUniqBy.js +26 -0
  1292. package/WeatherAPI/node_modules/lodash/split.js +52 -0
  1293. package/WeatherAPI/node_modules/lodash/spread.js +63 -0
  1294. package/WeatherAPI/node_modules/lodash/startCase.js +29 -0
  1295. package/WeatherAPI/node_modules/lodash/startsWith.js +39 -0
  1296. package/WeatherAPI/node_modules/lodash/string.js +33 -0
  1297. package/WeatherAPI/node_modules/lodash/stubArray.js +23 -0
  1298. package/WeatherAPI/node_modules/lodash/stubFalse.js +18 -0
  1299. package/WeatherAPI/node_modules/lodash/stubObject.js +23 -0
  1300. package/WeatherAPI/node_modules/lodash/stubString.js +18 -0
  1301. package/WeatherAPI/node_modules/lodash/stubTrue.js +18 -0
  1302. package/WeatherAPI/node_modules/lodash/subtract.js +22 -0
  1303. package/WeatherAPI/node_modules/lodash/sum.js +24 -0
  1304. package/WeatherAPI/node_modules/lodash/sumBy.js +33 -0
  1305. package/WeatherAPI/node_modules/lodash/tail.js +22 -0
  1306. package/WeatherAPI/node_modules/lodash/take.js +37 -0
  1307. package/WeatherAPI/node_modules/lodash/takeRight.js +39 -0
  1308. package/WeatherAPI/node_modules/lodash/takeRightWhile.js +45 -0
  1309. package/WeatherAPI/node_modules/lodash/takeWhile.js +45 -0
  1310. package/WeatherAPI/node_modules/lodash/tap.js +29 -0
  1311. package/WeatherAPI/node_modules/lodash/template.js +272 -0
  1312. package/WeatherAPI/node_modules/lodash/templateSettings.js +67 -0
  1313. package/WeatherAPI/node_modules/lodash/throttle.js +69 -0
  1314. package/WeatherAPI/node_modules/lodash/thru.js +28 -0
  1315. package/WeatherAPI/node_modules/lodash/times.js +51 -0
  1316. package/WeatherAPI/node_modules/lodash/toArray.js +58 -0
  1317. package/WeatherAPI/node_modules/lodash/toFinite.js +42 -0
  1318. package/WeatherAPI/node_modules/lodash/toInteger.js +36 -0
  1319. package/WeatherAPI/node_modules/lodash/toIterator.js +23 -0
  1320. package/WeatherAPI/node_modules/lodash/toJSON.js +1 -0
  1321. package/WeatherAPI/node_modules/lodash/toLength.js +38 -0
  1322. package/WeatherAPI/node_modules/lodash/toLower.js +28 -0
  1323. package/WeatherAPI/node_modules/lodash/toNumber.js +64 -0
  1324. package/WeatherAPI/node_modules/lodash/toPairs.js +30 -0
  1325. package/WeatherAPI/node_modules/lodash/toPairsIn.js +30 -0
  1326. package/WeatherAPI/node_modules/lodash/toPath.js +33 -0
  1327. package/WeatherAPI/node_modules/lodash/toPlainObject.js +32 -0
  1328. package/WeatherAPI/node_modules/lodash/toSafeInteger.js +37 -0
  1329. package/WeatherAPI/node_modules/lodash/toString.js +28 -0
  1330. package/WeatherAPI/node_modules/lodash/toUpper.js +28 -0
  1331. package/WeatherAPI/node_modules/lodash/transform.js +65 -0
  1332. package/WeatherAPI/node_modules/lodash/trim.js +47 -0
  1333. package/WeatherAPI/node_modules/lodash/trimEnd.js +41 -0
  1334. package/WeatherAPI/node_modules/lodash/trimStart.js +43 -0
  1335. package/WeatherAPI/node_modules/lodash/truncate.js +111 -0
  1336. package/WeatherAPI/node_modules/lodash/unary.js +22 -0
  1337. package/WeatherAPI/node_modules/lodash/unescape.js +34 -0
  1338. package/WeatherAPI/node_modules/lodash/union.js +26 -0
  1339. package/WeatherAPI/node_modules/lodash/unionBy.js +39 -0
  1340. package/WeatherAPI/node_modules/lodash/unionWith.js +34 -0
  1341. package/WeatherAPI/node_modules/lodash/uniq.js +25 -0
  1342. package/WeatherAPI/node_modules/lodash/uniqBy.js +31 -0
  1343. package/WeatherAPI/node_modules/lodash/uniqWith.js +28 -0
  1344. package/WeatherAPI/node_modules/lodash/uniqueId.js +28 -0
  1345. package/WeatherAPI/node_modules/lodash/unset.js +34 -0
  1346. package/WeatherAPI/node_modules/lodash/unzip.js +45 -0
  1347. package/WeatherAPI/node_modules/lodash/unzipWith.js +39 -0
  1348. package/WeatherAPI/node_modules/lodash/update.js +35 -0
  1349. package/WeatherAPI/node_modules/lodash/updateWith.js +33 -0
  1350. package/WeatherAPI/node_modules/lodash/upperCase.js +27 -0
  1351. package/WeatherAPI/node_modules/lodash/upperFirst.js +22 -0
  1352. package/WeatherAPI/node_modules/lodash/util.js +34 -0
  1353. package/WeatherAPI/node_modules/lodash/value.js +1 -0
  1354. package/WeatherAPI/node_modules/lodash/valueOf.js +1 -0
  1355. package/WeatherAPI/node_modules/lodash/values.js +34 -0
  1356. package/WeatherAPI/node_modules/lodash/valuesIn.js +32 -0
  1357. package/WeatherAPI/node_modules/lodash/without.js +31 -0
  1358. package/WeatherAPI/node_modules/lodash/words.js +35 -0
  1359. package/WeatherAPI/node_modules/lodash/wrap.js +30 -0
  1360. package/WeatherAPI/node_modules/lodash/wrapperAt.js +48 -0
  1361. package/WeatherAPI/node_modules/lodash/wrapperChain.js +34 -0
  1362. package/WeatherAPI/node_modules/lodash/wrapperLodash.js +147 -0
  1363. package/WeatherAPI/node_modules/lodash/wrapperReverse.js +44 -0
  1364. package/WeatherAPI/node_modules/lodash/wrapperValue.js +21 -0
  1365. package/WeatherAPI/node_modules/lodash/xor.js +28 -0
  1366. package/WeatherAPI/node_modules/lodash/xorBy.js +39 -0
  1367. package/WeatherAPI/node_modules/lodash/xorWith.js +34 -0
  1368. package/WeatherAPI/node_modules/lodash/zip.js +22 -0
  1369. package/WeatherAPI/node_modules/lodash/zipObject.js +24 -0
  1370. package/WeatherAPI/node_modules/lodash/zipObjectDeep.js +23 -0
  1371. package/WeatherAPI/node_modules/lodash/zipWith.js +32 -0
  1372. package/WeatherAPI/node_modules/math-intrinsics/.eslintrc +16 -0
  1373. package/WeatherAPI/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  1374. package/WeatherAPI/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  1375. package/WeatherAPI/node_modules/math-intrinsics/LICENSE +21 -0
  1376. package/WeatherAPI/node_modules/math-intrinsics/README.md +50 -0
  1377. package/WeatherAPI/node_modules/math-intrinsics/abs.d.ts +1 -0
  1378. package/WeatherAPI/node_modules/math-intrinsics/abs.js +4 -0
  1379. package/WeatherAPI/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  1380. package/WeatherAPI/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  1381. package/WeatherAPI/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  1382. package/WeatherAPI/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  1383. package/WeatherAPI/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  1384. package/WeatherAPI/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  1385. package/WeatherAPI/node_modules/math-intrinsics/floor.d.ts +1 -0
  1386. package/WeatherAPI/node_modules/math-intrinsics/floor.js +4 -0
  1387. package/WeatherAPI/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  1388. package/WeatherAPI/node_modules/math-intrinsics/isFinite.js +12 -0
  1389. package/WeatherAPI/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  1390. package/WeatherAPI/node_modules/math-intrinsics/isInteger.js +16 -0
  1391. package/WeatherAPI/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  1392. package/WeatherAPI/node_modules/math-intrinsics/isNaN.js +6 -0
  1393. package/WeatherAPI/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  1394. package/WeatherAPI/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  1395. package/WeatherAPI/node_modules/math-intrinsics/max.d.ts +1 -0
  1396. package/WeatherAPI/node_modules/math-intrinsics/max.js +4 -0
  1397. package/WeatherAPI/node_modules/math-intrinsics/min.d.ts +1 -0
  1398. package/WeatherAPI/node_modules/math-intrinsics/min.js +4 -0
  1399. package/WeatherAPI/node_modules/math-intrinsics/mod.d.ts +3 -0
  1400. package/WeatherAPI/node_modules/math-intrinsics/mod.js +9 -0
  1401. package/WeatherAPI/node_modules/math-intrinsics/package.json +86 -0
  1402. package/WeatherAPI/node_modules/math-intrinsics/pow.d.ts +1 -0
  1403. package/WeatherAPI/node_modules/math-intrinsics/pow.js +4 -0
  1404. package/WeatherAPI/node_modules/math-intrinsics/round.d.ts +1 -0
  1405. package/WeatherAPI/node_modules/math-intrinsics/round.js +4 -0
  1406. package/WeatherAPI/node_modules/math-intrinsics/sign.d.ts +3 -0
  1407. package/WeatherAPI/node_modules/math-intrinsics/sign.js +11 -0
  1408. package/WeatherAPI/node_modules/math-intrinsics/test/index.js +192 -0
  1409. package/WeatherAPI/node_modules/math-intrinsics/tsconfig.json +3 -0
  1410. package/WeatherAPI/node_modules/mime-db/HISTORY.md +507 -0
  1411. package/WeatherAPI/node_modules/mime-db/LICENSE +23 -0
  1412. package/WeatherAPI/node_modules/mime-db/README.md +100 -0
  1413. package/WeatherAPI/node_modules/mime-db/db.json +8519 -0
  1414. package/WeatherAPI/node_modules/mime-db/index.js +12 -0
  1415. package/WeatherAPI/node_modules/mime-db/package.json +60 -0
  1416. package/WeatherAPI/node_modules/mime-types/HISTORY.md +397 -0
  1417. package/WeatherAPI/node_modules/mime-types/LICENSE +23 -0
  1418. package/WeatherAPI/node_modules/mime-types/README.md +113 -0
  1419. package/WeatherAPI/node_modules/mime-types/index.js +188 -0
  1420. package/WeatherAPI/node_modules/mime-types/package.json +44 -0
  1421. package/WeatherAPI/node_modules/moment/CHANGELOG.md +996 -0
  1422. package/WeatherAPI/node_modules/moment/LICENSE +22 -0
  1423. package/WeatherAPI/node_modules/moment/README.md +55 -0
  1424. package/WeatherAPI/node_modules/moment/dist/locale/af.js +71 -0
  1425. package/WeatherAPI/node_modules/moment/dist/locale/ar-dz.js +156 -0
  1426. package/WeatherAPI/node_modules/moment/dist/locale/ar-kw.js +55 -0
  1427. package/WeatherAPI/node_modules/moment/dist/locale/ar-ly.js +171 -0
  1428. package/WeatherAPI/node_modules/moment/dist/locale/ar-ma.js +56 -0
  1429. package/WeatherAPI/node_modules/moment/dist/locale/ar-ps.js +112 -0
  1430. package/WeatherAPI/node_modules/moment/dist/locale/ar-sa.js +105 -0
  1431. package/WeatherAPI/node_modules/moment/dist/locale/ar-tn.js +55 -0
  1432. package/WeatherAPI/node_modules/moment/dist/locale/ar.js +189 -0
  1433. package/WeatherAPI/node_modules/moment/dist/locale/az.js +102 -0
  1434. package/WeatherAPI/node_modules/moment/dist/locale/be.js +142 -0
  1435. package/WeatherAPI/node_modules/moment/dist/locale/bg.js +87 -0
  1436. package/WeatherAPI/node_modules/moment/dist/locale/bm.js +52 -0
  1437. package/WeatherAPI/node_modules/moment/dist/locale/bn-bd.js +129 -0
  1438. package/WeatherAPI/node_modules/moment/dist/locale/bn.js +119 -0
  1439. package/WeatherAPI/node_modules/moment/dist/locale/bo.js +124 -0
  1440. package/WeatherAPI/node_modules/moment/dist/locale/br.js +168 -0
  1441. package/WeatherAPI/node_modules/moment/dist/locale/bs.js +160 -0
  1442. package/WeatherAPI/node_modules/moment/dist/locale/ca.js +100 -0
  1443. package/WeatherAPI/node_modules/moment/dist/locale/cs.js +181 -0
  1444. package/WeatherAPI/node_modules/moment/dist/locale/cv.js +63 -0
  1445. package/WeatherAPI/node_modules/moment/dist/locale/cy.js +98 -0
  1446. package/WeatherAPI/node_modules/moment/dist/locale/da.js +53 -0
  1447. package/WeatherAPI/node_modules/moment/dist/locale/de-at.js +79 -0
  1448. package/WeatherAPI/node_modules/moment/dist/locale/de-ch.js +78 -0
  1449. package/WeatherAPI/node_modules/moment/dist/locale/de.js +78 -0
  1450. package/WeatherAPI/node_modules/moment/dist/locale/dv.js +90 -0
  1451. package/WeatherAPI/node_modules/moment/dist/locale/el.js +106 -0
  1452. package/WeatherAPI/node_modules/moment/dist/locale/en-au.js +68 -0
  1453. package/WeatherAPI/node_modules/moment/dist/locale/en-ca.js +64 -0
  1454. package/WeatherAPI/node_modules/moment/dist/locale/en-gb.js +68 -0
  1455. package/WeatherAPI/node_modules/moment/dist/locale/en-ie.js +68 -0
  1456. package/WeatherAPI/node_modules/moment/dist/locale/en-il.js +64 -0
  1457. package/WeatherAPI/node_modules/moment/dist/locale/en-in.js +68 -0
  1458. package/WeatherAPI/node_modules/moment/dist/locale/en-nz.js +68 -0
  1459. package/WeatherAPI/node_modules/moment/dist/locale/en-sg.js +68 -0
  1460. package/WeatherAPI/node_modules/moment/dist/locale/eo.js +68 -0
  1461. package/WeatherAPI/node_modules/moment/dist/locale/es-do.js +108 -0
  1462. package/WeatherAPI/node_modules/moment/dist/locale/es-mx.js +110 -0
  1463. package/WeatherAPI/node_modules/moment/dist/locale/es-us.js +110 -0
  1464. package/WeatherAPI/node_modules/moment/dist/locale/es.js +110 -0
  1465. package/WeatherAPI/node_modules/moment/dist/locale/et.js +78 -0
  1466. package/WeatherAPI/node_modules/moment/dist/locale/eu.js +65 -0
  1467. package/WeatherAPI/node_modules/moment/dist/locale/fa.js +113 -0
  1468. package/WeatherAPI/node_modules/moment/dist/locale/fi.js +124 -0
  1469. package/WeatherAPI/node_modules/moment/dist/locale/fil.js +58 -0
  1470. package/WeatherAPI/node_modules/moment/dist/locale/fo.js +57 -0
  1471. package/WeatherAPI/node_modules/moment/dist/locale/fr-ca.js +70 -0
  1472. package/WeatherAPI/node_modules/moment/dist/locale/fr-ch.js +74 -0
  1473. package/WeatherAPI/node_modules/moment/dist/locale/fr.js +108 -0
  1474. package/WeatherAPI/node_modules/moment/dist/locale/fy.js +75 -0
  1475. package/WeatherAPI/node_modules/moment/dist/locale/ga.js +95 -0
  1476. package/WeatherAPI/node_modules/moment/dist/locale/gd.js +95 -0
  1477. package/WeatherAPI/node_modules/moment/dist/locale/gl.js +75 -0
  1478. package/WeatherAPI/node_modules/moment/dist/locale/gom-deva.js +126 -0
  1479. package/WeatherAPI/node_modules/moment/dist/locale/gom-latn.js +124 -0
  1480. package/WeatherAPI/node_modules/moment/dist/locale/gu.js +122 -0
  1481. package/WeatherAPI/node_modules/moment/dist/locale/he.js +94 -0
  1482. package/WeatherAPI/node_modules/moment/dist/locale/hi.js +168 -0
  1483. package/WeatherAPI/node_modules/moment/dist/locale/hr.js +156 -0
  1484. package/WeatherAPI/node_modules/moment/dist/locale/hu.js +118 -0
  1485. package/WeatherAPI/node_modules/moment/dist/locale/hy-am.js +94 -0
  1486. package/WeatherAPI/node_modules/moment/dist/locale/id.js +76 -0
  1487. package/WeatherAPI/node_modules/moment/dist/locale/is.js +140 -0
  1488. package/WeatherAPI/node_modules/moment/dist/locale/it-ch.js +64 -0
  1489. package/WeatherAPI/node_modules/moment/dist/locale/it.js +106 -0
  1490. package/WeatherAPI/node_modules/moment/dist/locale/ja.js +148 -0
  1491. package/WeatherAPI/node_modules/moment/dist/locale/jv.js +76 -0
  1492. package/WeatherAPI/node_modules/moment/dist/locale/ka.js +92 -0
  1493. package/WeatherAPI/node_modules/moment/dist/locale/kk.js +82 -0
  1494. package/WeatherAPI/node_modules/moment/dist/locale/km.js +103 -0
  1495. package/WeatherAPI/node_modules/moment/dist/locale/kn.js +124 -0
  1496. package/WeatherAPI/node_modules/moment/dist/locale/ko.js +75 -0
  1497. package/WeatherAPI/node_modules/moment/dist/locale/ku-kmr.js +121 -0
  1498. package/WeatherAPI/node_modules/moment/dist/locale/ku.js +118 -0
  1499. package/WeatherAPI/node_modules/moment/dist/locale/ky.js +84 -0
  1500. package/WeatherAPI/node_modules/moment/dist/locale/lb.js +137 -0
  1501. package/WeatherAPI/node_modules/moment/dist/locale/lo.js +66 -0
  1502. package/WeatherAPI/node_modules/moment/dist/locale/lt.js +125 -0
  1503. package/WeatherAPI/node_modules/moment/dist/locale/lv.js +94 -0
  1504. package/WeatherAPI/node_modules/moment/dist/locale/me.js +117 -0
  1505. package/WeatherAPI/node_modules/moment/dist/locale/mi.js +60 -0
  1506. package/WeatherAPI/node_modules/moment/dist/locale/mk.js +85 -0
  1507. package/WeatherAPI/node_modules/moment/dist/locale/ml.js +82 -0
  1508. package/WeatherAPI/node_modules/moment/dist/locale/mn.js +100 -0
  1509. package/WeatherAPI/node_modules/moment/dist/locale/mr.js +203 -0
  1510. package/WeatherAPI/node_modules/moment/dist/locale/ms-my.js +76 -0
  1511. package/WeatherAPI/node_modules/moment/dist/locale/ms.js +75 -0
  1512. package/WeatherAPI/node_modules/moment/dist/locale/mt.js +56 -0
  1513. package/WeatherAPI/node_modules/moment/dist/locale/my.js +91 -0
  1514. package/WeatherAPI/node_modules/moment/dist/locale/nb.js +60 -0
  1515. package/WeatherAPI/node_modules/moment/dist/locale/ne.js +121 -0
  1516. package/WeatherAPI/node_modules/moment/dist/locale/nl-be.js +102 -0
  1517. package/WeatherAPI/node_modules/moment/dist/locale/nl.js +104 -0
  1518. package/WeatherAPI/node_modules/moment/dist/locale/nn.js +59 -0
  1519. package/WeatherAPI/node_modules/moment/dist/locale/oc-lnc.js +85 -0
  1520. package/WeatherAPI/node_modules/moment/dist/locale/pa-in.js +122 -0
  1521. package/WeatherAPI/node_modules/moment/dist/locale/pl.js +140 -0
  1522. package/WeatherAPI/node_modules/moment/dist/locale/pt-br.js +58 -0
  1523. package/WeatherAPI/node_modules/moment/dist/locale/pt.js +63 -0
  1524. package/WeatherAPI/node_modules/moment/dist/locale/ro.js +76 -0
  1525. package/WeatherAPI/node_modules/moment/dist/locale/ru.js +213 -0
  1526. package/WeatherAPI/node_modules/moment/dist/locale/sd.js +81 -0
  1527. package/WeatherAPI/node_modules/moment/dist/locale/se.js +57 -0
  1528. package/WeatherAPI/node_modules/moment/dist/locale/si.js +69 -0
  1529. package/WeatherAPI/node_modules/moment/dist/locale/sk.js +145 -0
  1530. package/WeatherAPI/node_modules/moment/dist/locale/sl.js +171 -0
  1531. package/WeatherAPI/node_modules/moment/dist/locale/sq.js +65 -0
  1532. package/WeatherAPI/node_modules/moment/dist/locale/sr-cyrl.js +127 -0
  1533. package/WeatherAPI/node_modules/moment/dist/locale/sr.js +129 -0
  1534. package/WeatherAPI/node_modules/moment/dist/locale/ss.js +84 -0
  1535. package/WeatherAPI/node_modules/moment/dist/locale/sv.js +68 -0
  1536. package/WeatherAPI/node_modules/moment/dist/locale/sw.js +55 -0
  1537. package/WeatherAPI/node_modules/moment/dist/locale/ta.js +131 -0
  1538. package/WeatherAPI/node_modules/moment/dist/locale/te.js +88 -0
  1539. package/WeatherAPI/node_modules/moment/dist/locale/tet.js +68 -0
  1540. package/WeatherAPI/node_modules/moment/dist/locale/tg.js +117 -0
  1541. package/WeatherAPI/node_modules/moment/dist/locale/th.js +65 -0
  1542. package/WeatherAPI/node_modules/moment/dist/locale/tk.js +91 -0
  1543. package/WeatherAPI/node_modules/moment/dist/locale/tl-ph.js +57 -0
  1544. package/WeatherAPI/node_modules/moment/dist/locale/tlh.js +124 -0
  1545. package/WeatherAPI/node_modules/moment/dist/locale/tr.js +106 -0
  1546. package/WeatherAPI/node_modules/moment/dist/locale/tzl.js +89 -0
  1547. package/WeatherAPI/node_modules/moment/dist/locale/tzm-latn.js +54 -0
  1548. package/WeatherAPI/node_modules/moment/dist/locale/tzm.js +54 -0
  1549. package/WeatherAPI/node_modules/moment/dist/locale/ug-cn.js +111 -0
  1550. package/WeatherAPI/node_modules/moment/dist/locale/uk.js +167 -0
  1551. package/WeatherAPI/node_modules/moment/dist/locale/ur.js +82 -0
  1552. package/WeatherAPI/node_modules/moment/dist/locale/uz-latn.js +54 -0
  1553. package/WeatherAPI/node_modules/moment/dist/locale/uz.js +51 -0
  1554. package/WeatherAPI/node_modules/moment/dist/locale/vi.js +80 -0
  1555. package/WeatherAPI/node_modules/moment/dist/locale/x-pseudo.js +73 -0
  1556. package/WeatherAPI/node_modules/moment/dist/locale/yo.js +53 -0
  1557. package/WeatherAPI/node_modules/moment/dist/locale/zh-cn.js +120 -0
  1558. package/WeatherAPI/node_modules/moment/dist/locale/zh-hk.js +101 -0
  1559. package/WeatherAPI/node_modules/moment/dist/locale/zh-mo.js +100 -0
  1560. package/WeatherAPI/node_modules/moment/dist/locale/zh-tw.js +99 -0
  1561. package/WeatherAPI/node_modules/moment/dist/moment.js +5680 -0
  1562. package/WeatherAPI/node_modules/moment/ender.js +1 -0
  1563. package/WeatherAPI/node_modules/moment/locale/af.js +82 -0
  1564. package/WeatherAPI/node_modules/moment/locale/ar-dz.js +167 -0
  1565. package/WeatherAPI/node_modules/moment/locale/ar-kw.js +66 -0
  1566. package/WeatherAPI/node_modules/moment/locale/ar-ly.js +182 -0
  1567. package/WeatherAPI/node_modules/moment/locale/ar-ma.js +67 -0
  1568. package/WeatherAPI/node_modules/moment/locale/ar-ps.js +123 -0
  1569. package/WeatherAPI/node_modules/moment/locale/ar-sa.js +116 -0
  1570. package/WeatherAPI/node_modules/moment/locale/ar-tn.js +66 -0
  1571. package/WeatherAPI/node_modules/moment/locale/ar.js +200 -0
  1572. package/WeatherAPI/node_modules/moment/locale/az.js +113 -0
  1573. package/WeatherAPI/node_modules/moment/locale/be.js +153 -0
  1574. package/WeatherAPI/node_modules/moment/locale/bg.js +98 -0
  1575. package/WeatherAPI/node_modules/moment/locale/bm.js +62 -0
  1576. package/WeatherAPI/node_modules/moment/locale/bn-bd.js +140 -0
  1577. package/WeatherAPI/node_modules/moment/locale/bn.js +130 -0
  1578. package/WeatherAPI/node_modules/moment/locale/bo.js +135 -0
  1579. package/WeatherAPI/node_modules/moment/locale/br.js +179 -0
  1580. package/WeatherAPI/node_modules/moment/locale/bs.js +171 -0
  1581. package/WeatherAPI/node_modules/moment/locale/ca.js +111 -0
  1582. package/WeatherAPI/node_modules/moment/locale/cs.js +192 -0
  1583. package/WeatherAPI/node_modules/moment/locale/cv.js +74 -0
  1584. package/WeatherAPI/node_modules/moment/locale/cy.js +109 -0
  1585. package/WeatherAPI/node_modules/moment/locale/da.js +64 -0
  1586. package/WeatherAPI/node_modules/moment/locale/de-at.js +90 -0
  1587. package/WeatherAPI/node_modules/moment/locale/de-ch.js +87 -0
  1588. package/WeatherAPI/node_modules/moment/locale/de.js +89 -0
  1589. package/WeatherAPI/node_modules/moment/locale/dv.js +101 -0
  1590. package/WeatherAPI/node_modules/moment/locale/el.js +117 -0
  1591. package/WeatherAPI/node_modules/moment/locale/en-au.js +79 -0
  1592. package/WeatherAPI/node_modules/moment/locale/en-ca.js +75 -0
  1593. package/WeatherAPI/node_modules/moment/locale/en-gb.js +79 -0
  1594. package/WeatherAPI/node_modules/moment/locale/en-ie.js +79 -0
  1595. package/WeatherAPI/node_modules/moment/locale/en-il.js +75 -0
  1596. package/WeatherAPI/node_modules/moment/locale/en-in.js +79 -0
  1597. package/WeatherAPI/node_modules/moment/locale/en-nz.js +79 -0
  1598. package/WeatherAPI/node_modules/moment/locale/en-sg.js +79 -0
  1599. package/WeatherAPI/node_modules/moment/locale/eo.js +79 -0
  1600. package/WeatherAPI/node_modules/moment/locale/es-do.js +119 -0
  1601. package/WeatherAPI/node_modules/moment/locale/es-mx.js +121 -0
  1602. package/WeatherAPI/node_modules/moment/locale/es-us.js +121 -0
  1603. package/WeatherAPI/node_modules/moment/locale/es.js +121 -0
  1604. package/WeatherAPI/node_modules/moment/locale/et.js +89 -0
  1605. package/WeatherAPI/node_modules/moment/locale/eu.js +76 -0
  1606. package/WeatherAPI/node_modules/moment/locale/fa.js +124 -0
  1607. package/WeatherAPI/node_modules/moment/locale/fi.js +135 -0
  1608. package/WeatherAPI/node_modules/moment/locale/fil.js +69 -0
  1609. package/WeatherAPI/node_modules/moment/locale/fo.js +68 -0
  1610. package/WeatherAPI/node_modules/moment/locale/fr-ca.js +81 -0
  1611. package/WeatherAPI/node_modules/moment/locale/fr-ch.js +85 -0
  1612. package/WeatherAPI/node_modules/moment/locale/fr.js +119 -0
  1613. package/WeatherAPI/node_modules/moment/locale/fy.js +86 -0
  1614. package/WeatherAPI/node_modules/moment/locale/ga.js +106 -0
  1615. package/WeatherAPI/node_modules/moment/locale/gd.js +106 -0
  1616. package/WeatherAPI/node_modules/moment/locale/gl.js +86 -0
  1617. package/WeatherAPI/node_modules/moment/locale/gom-deva.js +137 -0
  1618. package/WeatherAPI/node_modules/moment/locale/gom-latn.js +135 -0
  1619. package/WeatherAPI/node_modules/moment/locale/gu.js +133 -0
  1620. package/WeatherAPI/node_modules/moment/locale/he.js +105 -0
  1621. package/WeatherAPI/node_modules/moment/locale/hi.js +179 -0
  1622. package/WeatherAPI/node_modules/moment/locale/hr.js +167 -0
  1623. package/WeatherAPI/node_modules/moment/locale/hu.js +129 -0
  1624. package/WeatherAPI/node_modules/moment/locale/hy-am.js +105 -0
  1625. package/WeatherAPI/node_modules/moment/locale/id.js +87 -0
  1626. package/WeatherAPI/node_modules/moment/locale/is.js +151 -0
  1627. package/WeatherAPI/node_modules/moment/locale/it-ch.js +75 -0
  1628. package/WeatherAPI/node_modules/moment/locale/it.js +117 -0
  1629. package/WeatherAPI/node_modules/moment/locale/ja.js +159 -0
  1630. package/WeatherAPI/node_modules/moment/locale/jv.js +87 -0
  1631. package/WeatherAPI/node_modules/moment/locale/ka.js +103 -0
  1632. package/WeatherAPI/node_modules/moment/locale/kk.js +93 -0
  1633. package/WeatherAPI/node_modules/moment/locale/km.js +114 -0
  1634. package/WeatherAPI/node_modules/moment/locale/kn.js +135 -0
  1635. package/WeatherAPI/node_modules/moment/locale/ko.js +86 -0
  1636. package/WeatherAPI/node_modules/moment/locale/ku-kmr.js +125 -0
  1637. package/WeatherAPI/node_modules/moment/locale/ku.js +129 -0
  1638. package/WeatherAPI/node_modules/moment/locale/ky.js +95 -0
  1639. package/WeatherAPI/node_modules/moment/locale/lb.js +148 -0
  1640. package/WeatherAPI/node_modules/moment/locale/lo.js +77 -0
  1641. package/WeatherAPI/node_modules/moment/locale/lt.js +136 -0
  1642. package/WeatherAPI/node_modules/moment/locale/lv.js +105 -0
  1643. package/WeatherAPI/node_modules/moment/locale/me.js +128 -0
  1644. package/WeatherAPI/node_modules/moment/locale/mi.js +71 -0
  1645. package/WeatherAPI/node_modules/moment/locale/mk.js +97 -0
  1646. package/WeatherAPI/node_modules/moment/locale/ml.js +93 -0
  1647. package/WeatherAPI/node_modules/moment/locale/mn.js +111 -0
  1648. package/WeatherAPI/node_modules/moment/locale/mr.js +214 -0
  1649. package/WeatherAPI/node_modules/moment/locale/ms-my.js +87 -0
  1650. package/WeatherAPI/node_modules/moment/locale/ms.js +86 -0
  1651. package/WeatherAPI/node_modules/moment/locale/mt.js +67 -0
  1652. package/WeatherAPI/node_modules/moment/locale/my.js +102 -0
  1653. package/WeatherAPI/node_modules/moment/locale/nb.js +71 -0
  1654. package/WeatherAPI/node_modules/moment/locale/ne.js +132 -0
  1655. package/WeatherAPI/node_modules/moment/locale/nl-be.js +113 -0
  1656. package/WeatherAPI/node_modules/moment/locale/nl.js +115 -0
  1657. package/WeatherAPI/node_modules/moment/locale/nn.js +70 -0
  1658. package/WeatherAPI/node_modules/moment/locale/oc-lnc.js +96 -0
  1659. package/WeatherAPI/node_modules/moment/locale/pa-in.js +133 -0
  1660. package/WeatherAPI/node_modules/moment/locale/pl.js +151 -0
  1661. package/WeatherAPI/node_modules/moment/locale/pt-br.js +69 -0
  1662. package/WeatherAPI/node_modules/moment/locale/pt.js +74 -0
  1663. package/WeatherAPI/node_modules/moment/locale/ro.js +87 -0
  1664. package/WeatherAPI/node_modules/moment/locale/ru.js +224 -0
  1665. package/WeatherAPI/node_modules/moment/locale/sd.js +92 -0
  1666. package/WeatherAPI/node_modules/moment/locale/se.js +68 -0
  1667. package/WeatherAPI/node_modules/moment/locale/si.js +80 -0
  1668. package/WeatherAPI/node_modules/moment/locale/sk.js +156 -0
  1669. package/WeatherAPI/node_modules/moment/locale/sl.js +182 -0
  1670. package/WeatherAPI/node_modules/moment/locale/sq.js +76 -0
  1671. package/WeatherAPI/node_modules/moment/locale/sr-cyrl.js +138 -0
  1672. package/WeatherAPI/node_modules/moment/locale/sr.js +140 -0
  1673. package/WeatherAPI/node_modules/moment/locale/ss.js +95 -0
  1674. package/WeatherAPI/node_modules/moment/locale/sv.js +79 -0
  1675. package/WeatherAPI/node_modules/moment/locale/sw.js +66 -0
  1676. package/WeatherAPI/node_modules/moment/locale/ta.js +142 -0
  1677. package/WeatherAPI/node_modules/moment/locale/te.js +99 -0
  1678. package/WeatherAPI/node_modules/moment/locale/tet.js +79 -0
  1679. package/WeatherAPI/node_modules/moment/locale/tg.js +128 -0
  1680. package/WeatherAPI/node_modules/moment/locale/th.js +76 -0
  1681. package/WeatherAPI/node_modules/moment/locale/tk.js +102 -0
  1682. package/WeatherAPI/node_modules/moment/locale/tl-ph.js +68 -0
  1683. package/WeatherAPI/node_modules/moment/locale/tlh.js +135 -0
  1684. package/WeatherAPI/node_modules/moment/locale/tr.js +117 -0
  1685. package/WeatherAPI/node_modules/moment/locale/tzl.js +100 -0
  1686. package/WeatherAPI/node_modules/moment/locale/tzm-latn.js +65 -0
  1687. package/WeatherAPI/node_modules/moment/locale/tzm.js +65 -0
  1688. package/WeatherAPI/node_modules/moment/locale/ug-cn.js +122 -0
  1689. package/WeatherAPI/node_modules/moment/locale/uk.js +178 -0
  1690. package/WeatherAPI/node_modules/moment/locale/ur.js +93 -0
  1691. package/WeatherAPI/node_modules/moment/locale/uz-latn.js +65 -0
  1692. package/WeatherAPI/node_modules/moment/locale/uz.js +62 -0
  1693. package/WeatherAPI/node_modules/moment/locale/vi.js +91 -0
  1694. package/WeatherAPI/node_modules/moment/locale/x-pseudo.js +84 -0
  1695. package/WeatherAPI/node_modules/moment/locale/yo.js +64 -0
  1696. package/WeatherAPI/node_modules/moment/locale/zh-cn.js +131 -0
  1697. package/WeatherAPI/node_modules/moment/locale/zh-hk.js +112 -0
  1698. package/WeatherAPI/node_modules/moment/locale/zh-mo.js +111 -0
  1699. package/WeatherAPI/node_modules/moment/locale/zh-tw.js +110 -0
  1700. package/WeatherAPI/node_modules/moment/min/locales.js +12800 -0
  1701. package/WeatherAPI/node_modules/moment/min/locales.min.js +2 -0
  1702. package/WeatherAPI/node_modules/moment/min/locales.min.js.map +1 -0
  1703. package/WeatherAPI/node_modules/moment/min/moment-with-locales.js +18472 -0
  1704. package/WeatherAPI/node_modules/moment/min/moment-with-locales.min.js +2 -0
  1705. package/WeatherAPI/node_modules/moment/min/moment-with-locales.min.js.map +1 -0
  1706. package/WeatherAPI/node_modules/moment/min/moment.min.js +2 -0
  1707. package/WeatherAPI/node_modules/moment/min/moment.min.js.map +1 -0
  1708. package/WeatherAPI/node_modules/moment/moment.d.ts +796 -0
  1709. package/WeatherAPI/node_modules/moment/moment.js +5688 -0
  1710. package/WeatherAPI/node_modules/moment/package.js +11 -0
  1711. package/WeatherAPI/node_modules/moment/package.json +116 -0
  1712. package/WeatherAPI/node_modules/moment/src/lib/create/check-overflow.js +57 -0
  1713. package/WeatherAPI/node_modules/moment/src/lib/create/date-from-array.js +35 -0
  1714. package/WeatherAPI/node_modules/moment/src/lib/create/from-anything.js +117 -0
  1715. package/WeatherAPI/node_modules/moment/src/lib/create/from-array.js +187 -0
  1716. package/WeatherAPI/node_modules/moment/src/lib/create/from-object.js +20 -0
  1717. package/WeatherAPI/node_modules/moment/src/lib/create/from-string-and-array.js +67 -0
  1718. package/WeatherAPI/node_modules/moment/src/lib/create/from-string-and-format.js +135 -0
  1719. package/WeatherAPI/node_modules/moment/src/lib/create/from-string.js +258 -0
  1720. package/WeatherAPI/node_modules/moment/src/lib/create/local.js +5 -0
  1721. package/WeatherAPI/node_modules/moment/src/lib/create/parsing-flags.js +28 -0
  1722. package/WeatherAPI/node_modules/moment/src/lib/create/utc.js +5 -0
  1723. package/WeatherAPI/node_modules/moment/src/lib/create/valid.js +51 -0
  1724. package/WeatherAPI/node_modules/moment/src/lib/duration/abs.js +18 -0
  1725. package/WeatherAPI/node_modules/moment/src/lib/duration/add-subtract.js +21 -0
  1726. package/WeatherAPI/node_modules/moment/src/lib/duration/as.js +76 -0
  1727. package/WeatherAPI/node_modules/moment/src/lib/duration/bubble.js +68 -0
  1728. package/WeatherAPI/node_modules/moment/src/lib/duration/clone.js +5 -0
  1729. package/WeatherAPI/node_modules/moment/src/lib/duration/constructor.js +42 -0
  1730. package/WeatherAPI/node_modules/moment/src/lib/duration/create.js +133 -0
  1731. package/WeatherAPI/node_modules/moment/src/lib/duration/duration.js +16 -0
  1732. package/WeatherAPI/node_modules/moment/src/lib/duration/get.js +27 -0
  1733. package/WeatherAPI/node_modules/moment/src/lib/duration/humanize.js +114 -0
  1734. package/WeatherAPI/node_modules/moment/src/lib/duration/iso-string.js +68 -0
  1735. package/WeatherAPI/node_modules/moment/src/lib/duration/prototype.js +78 -0
  1736. package/WeatherAPI/node_modules/moment/src/lib/duration/valid.js +55 -0
  1737. package/WeatherAPI/node_modules/moment/src/lib/format/format.js +104 -0
  1738. package/WeatherAPI/node_modules/moment/src/lib/locale/base-config.js +41 -0
  1739. package/WeatherAPI/node_modules/moment/src/lib/locale/calendar.js +15 -0
  1740. package/WeatherAPI/node_modules/moment/src/lib/locale/constructor.js +5 -0
  1741. package/WeatherAPI/node_modules/moment/src/lib/locale/en.js +39 -0
  1742. package/WeatherAPI/node_modules/moment/src/lib/locale/formats.js +36 -0
  1743. package/WeatherAPI/node_modules/moment/src/lib/locale/invalid.js +5 -0
  1744. package/WeatherAPI/node_modules/moment/src/lib/locale/lists.js +93 -0
  1745. package/WeatherAPI/node_modules/moment/src/lib/locale/locale.js +45 -0
  1746. package/WeatherAPI/node_modules/moment/src/lib/locale/locales.js +249 -0
  1747. package/WeatherAPI/node_modules/moment/src/lib/locale/ordinal.js +8 -0
  1748. package/WeatherAPI/node_modules/moment/src/lib/locale/pre-post-format.js +3 -0
  1749. package/WeatherAPI/node_modules/moment/src/lib/locale/prototype.js +88 -0
  1750. package/WeatherAPI/node_modules/moment/src/lib/locale/relative.js +32 -0
  1751. package/WeatherAPI/node_modules/moment/src/lib/locale/set.js +56 -0
  1752. package/WeatherAPI/node_modules/moment/src/lib/moment/add-subtract.js +61 -0
  1753. package/WeatherAPI/node_modules/moment/src/lib/moment/calendar.js +53 -0
  1754. package/WeatherAPI/node_modules/moment/src/lib/moment/clone.js +5 -0
  1755. package/WeatherAPI/node_modules/moment/src/lib/moment/compare.js +72 -0
  1756. package/WeatherAPI/node_modules/moment/src/lib/moment/constructor.js +80 -0
  1757. package/WeatherAPI/node_modules/moment/src/lib/moment/creation-data.js +9 -0
  1758. package/WeatherAPI/node_modules/moment/src/lib/moment/diff.js +79 -0
  1759. package/WeatherAPI/node_modules/moment/src/lib/moment/format.js +78 -0
  1760. package/WeatherAPI/node_modules/moment/src/lib/moment/from.js +20 -0
  1761. package/WeatherAPI/node_modules/moment/src/lib/moment/get-set.js +117 -0
  1762. package/WeatherAPI/node_modules/moment/src/lib/moment/locale.js +34 -0
  1763. package/WeatherAPI/node_modules/moment/src/lib/moment/min-max.js +62 -0
  1764. package/WeatherAPI/node_modules/moment/src/lib/moment/moment.js +28 -0
  1765. package/WeatherAPI/node_modules/moment/src/lib/moment/now.js +3 -0
  1766. package/WeatherAPI/node_modules/moment/src/lib/moment/prototype.js +197 -0
  1767. package/WeatherAPI/node_modules/moment/src/lib/moment/start-end-of.js +164 -0
  1768. package/WeatherAPI/node_modules/moment/src/lib/moment/to-type.js +42 -0
  1769. package/WeatherAPI/node_modules/moment/src/lib/moment/to.js +20 -0
  1770. package/WeatherAPI/node_modules/moment/src/lib/moment/valid.js +15 -0
  1771. package/WeatherAPI/node_modules/moment/src/lib/parse/regex.js +84 -0
  1772. package/WeatherAPI/node_modules/moment/src/lib/parse/token.js +36 -0
  1773. package/WeatherAPI/node_modules/moment/src/lib/units/aliases.js +75 -0
  1774. package/WeatherAPI/node_modules/moment/src/lib/units/constants.js +9 -0
  1775. package/WeatherAPI/node_modules/moment/src/lib/units/day-of-month.js +35 -0
  1776. package/WeatherAPI/node_modules/moment/src/lib/units/day-of-week.js +432 -0
  1777. package/WeatherAPI/node_modules/moment/src/lib/units/day-of-year.js +28 -0
  1778. package/WeatherAPI/node_modules/moment/src/lib/units/era.js +293 -0
  1779. package/WeatherAPI/node_modules/moment/src/lib/units/hour.js +152 -0
  1780. package/WeatherAPI/node_modules/moment/src/lib/units/millisecond.js +66 -0
  1781. package/WeatherAPI/node_modules/moment/src/lib/units/minute.js +24 -0
  1782. package/WeatherAPI/node_modules/moment/src/lib/units/month.js +340 -0
  1783. package/WeatherAPI/node_modules/moment/src/lib/units/offset.js +249 -0
  1784. package/WeatherAPI/node_modules/moment/src/lib/units/priorities.js +34 -0
  1785. package/WeatherAPI/node_modules/moment/src/lib/units/quarter.js +24 -0
  1786. package/WeatherAPI/node_modules/moment/src/lib/units/second.js +24 -0
  1787. package/WeatherAPI/node_modules/moment/src/lib/units/timestamp.js +20 -0
  1788. package/WeatherAPI/node_modules/moment/src/lib/units/timezone.js +16 -0
  1789. package/WeatherAPI/node_modules/moment/src/lib/units/units.js +20 -0
  1790. package/WeatherAPI/node_modules/moment/src/lib/units/week-calendar-utils.js +66 -0
  1791. package/WeatherAPI/node_modules/moment/src/lib/units/week-year.js +128 -0
  1792. package/WeatherAPI/node_modules/moment/src/lib/units/week.js +62 -0
  1793. package/WeatherAPI/node_modules/moment/src/lib/units/year.js +75 -0
  1794. package/WeatherAPI/node_modules/moment/src/lib/utils/abs-ceil.js +7 -0
  1795. package/WeatherAPI/node_modules/moment/src/lib/utils/abs-floor.js +8 -0
  1796. package/WeatherAPI/node_modules/moment/src/lib/utils/abs-round.js +7 -0
  1797. package/WeatherAPI/node_modules/moment/src/lib/utils/compare-arrays.js +18 -0
  1798. package/WeatherAPI/node_modules/moment/src/lib/utils/defaults.js +10 -0
  1799. package/WeatherAPI/node_modules/moment/src/lib/utils/deprecate.js +69 -0
  1800. package/WeatherAPI/node_modules/moment/src/lib/utils/extend.js +19 -0
  1801. package/WeatherAPI/node_modules/moment/src/lib/utils/has-own-prop.js +3 -0
  1802. package/WeatherAPI/node_modules/moment/src/lib/utils/hooks.js +13 -0
  1803. package/WeatherAPI/node_modules/moment/src/lib/utils/index-of.js +18 -0
  1804. package/WeatherAPI/node_modules/moment/src/lib/utils/is-array.js +6 -0
  1805. package/WeatherAPI/node_modules/moment/src/lib/utils/is-calendar-spec.js +25 -0
  1806. package/WeatherAPI/node_modules/moment/src/lib/utils/is-date.js +6 -0
  1807. package/WeatherAPI/node_modules/moment/src/lib/utils/is-function.js +6 -0
  1808. package/WeatherAPI/node_modules/moment/src/lib/utils/is-leap-year.js +3 -0
  1809. package/WeatherAPI/node_modules/moment/src/lib/utils/is-moment-input.js +75 -0
  1810. package/WeatherAPI/node_modules/moment/src/lib/utils/is-number.js +6 -0
  1811. package/WeatherAPI/node_modules/moment/src/lib/utils/is-object-empty.js +15 -0
  1812. package/WeatherAPI/node_modules/moment/src/lib/utils/is-object.js +8 -0
  1813. package/WeatherAPI/node_modules/moment/src/lib/utils/is-string.js +3 -0
  1814. package/WeatherAPI/node_modules/moment/src/lib/utils/is-undefined.js +3 -0
  1815. package/WeatherAPI/node_modules/moment/src/lib/utils/keys.js +20 -0
  1816. package/WeatherAPI/node_modules/moment/src/lib/utils/map.js +9 -0
  1817. package/WeatherAPI/node_modules/moment/src/lib/utils/mod.js +3 -0
  1818. package/WeatherAPI/node_modules/moment/src/lib/utils/some.js +20 -0
  1819. package/WeatherAPI/node_modules/moment/src/lib/utils/to-int.js +12 -0
  1820. package/WeatherAPI/node_modules/moment/src/lib/utils/zero-fill.js +10 -0
  1821. package/WeatherAPI/node_modules/moment/src/locale/af.js +71 -0
  1822. package/WeatherAPI/node_modules/moment/src/locale/ar-dz.js +156 -0
  1823. package/WeatherAPI/node_modules/moment/src/locale/ar-kw.js +55 -0
  1824. package/WeatherAPI/node_modules/moment/src/locale/ar-ly.js +171 -0
  1825. package/WeatherAPI/node_modules/moment/src/locale/ar-ma.js +56 -0
  1826. package/WeatherAPI/node_modules/moment/src/locale/ar-ps.js +112 -0
  1827. package/WeatherAPI/node_modules/moment/src/locale/ar-sa.js +105 -0
  1828. package/WeatherAPI/node_modules/moment/src/locale/ar-tn.js +55 -0
  1829. package/WeatherAPI/node_modules/moment/src/locale/ar.js +189 -0
  1830. package/WeatherAPI/node_modules/moment/src/locale/az.js +102 -0
  1831. package/WeatherAPI/node_modules/moment/src/locale/be.js +142 -0
  1832. package/WeatherAPI/node_modules/moment/src/locale/bg.js +87 -0
  1833. package/WeatherAPI/node_modules/moment/src/locale/bm.js +52 -0
  1834. package/WeatherAPI/node_modules/moment/src/locale/bn-bd.js +129 -0
  1835. package/WeatherAPI/node_modules/moment/src/locale/bn.js +119 -0
  1836. package/WeatherAPI/node_modules/moment/src/locale/bo.js +124 -0
  1837. package/WeatherAPI/node_modules/moment/src/locale/br.js +168 -0
  1838. package/WeatherAPI/node_modules/moment/src/locale/bs.js +160 -0
  1839. package/WeatherAPI/node_modules/moment/src/locale/ca.js +100 -0
  1840. package/WeatherAPI/node_modules/moment/src/locale/cs.js +181 -0
  1841. package/WeatherAPI/node_modules/moment/src/locale/cv.js +63 -0
  1842. package/WeatherAPI/node_modules/moment/src/locale/cy.js +98 -0
  1843. package/WeatherAPI/node_modules/moment/src/locale/da.js +53 -0
  1844. package/WeatherAPI/node_modules/moment/src/locale/de-at.js +79 -0
  1845. package/WeatherAPI/node_modules/moment/src/locale/de-ch.js +78 -0
  1846. package/WeatherAPI/node_modules/moment/src/locale/de.js +78 -0
  1847. package/WeatherAPI/node_modules/moment/src/locale/dv.js +90 -0
  1848. package/WeatherAPI/node_modules/moment/src/locale/el.js +106 -0
  1849. package/WeatherAPI/node_modules/moment/src/locale/en-au.js +68 -0
  1850. package/WeatherAPI/node_modules/moment/src/locale/en-ca.js +64 -0
  1851. package/WeatherAPI/node_modules/moment/src/locale/en-gb.js +68 -0
  1852. package/WeatherAPI/node_modules/moment/src/locale/en-ie.js +68 -0
  1853. package/WeatherAPI/node_modules/moment/src/locale/en-il.js +64 -0
  1854. package/WeatherAPI/node_modules/moment/src/locale/en-in.js +68 -0
  1855. package/WeatherAPI/node_modules/moment/src/locale/en-nz.js +68 -0
  1856. package/WeatherAPI/node_modules/moment/src/locale/en-sg.js +68 -0
  1857. package/WeatherAPI/node_modules/moment/src/locale/eo.js +68 -0
  1858. package/WeatherAPI/node_modules/moment/src/locale/es-do.js +108 -0
  1859. package/WeatherAPI/node_modules/moment/src/locale/es-mx.js +110 -0
  1860. package/WeatherAPI/node_modules/moment/src/locale/es-us.js +110 -0
  1861. package/WeatherAPI/node_modules/moment/src/locale/es.js +110 -0
  1862. package/WeatherAPI/node_modules/moment/src/locale/et.js +78 -0
  1863. package/WeatherAPI/node_modules/moment/src/locale/eu.js +65 -0
  1864. package/WeatherAPI/node_modules/moment/src/locale/fa.js +113 -0
  1865. package/WeatherAPI/node_modules/moment/src/locale/fi.js +124 -0
  1866. package/WeatherAPI/node_modules/moment/src/locale/fil.js +58 -0
  1867. package/WeatherAPI/node_modules/moment/src/locale/fo.js +57 -0
  1868. package/WeatherAPI/node_modules/moment/src/locale/fr-ca.js +70 -0
  1869. package/WeatherAPI/node_modules/moment/src/locale/fr-ch.js +74 -0
  1870. package/WeatherAPI/node_modules/moment/src/locale/fr.js +108 -0
  1871. package/WeatherAPI/node_modules/moment/src/locale/fy.js +75 -0
  1872. package/WeatherAPI/node_modules/moment/src/locale/ga.js +95 -0
  1873. package/WeatherAPI/node_modules/moment/src/locale/gd.js +95 -0
  1874. package/WeatherAPI/node_modules/moment/src/locale/gl.js +75 -0
  1875. package/WeatherAPI/node_modules/moment/src/locale/gom-deva.js +126 -0
  1876. package/WeatherAPI/node_modules/moment/src/locale/gom-latn.js +124 -0
  1877. package/WeatherAPI/node_modules/moment/src/locale/gu.js +122 -0
  1878. package/WeatherAPI/node_modules/moment/src/locale/he.js +94 -0
  1879. package/WeatherAPI/node_modules/moment/src/locale/hi.js +168 -0
  1880. package/WeatherAPI/node_modules/moment/src/locale/hr.js +156 -0
  1881. package/WeatherAPI/node_modules/moment/src/locale/hu.js +118 -0
  1882. package/WeatherAPI/node_modules/moment/src/locale/hy-am.js +94 -0
  1883. package/WeatherAPI/node_modules/moment/src/locale/id.js +76 -0
  1884. package/WeatherAPI/node_modules/moment/src/locale/is.js +140 -0
  1885. package/WeatherAPI/node_modules/moment/src/locale/it-ch.js +64 -0
  1886. package/WeatherAPI/node_modules/moment/src/locale/it.js +106 -0
  1887. package/WeatherAPI/node_modules/moment/src/locale/ja.js +148 -0
  1888. package/WeatherAPI/node_modules/moment/src/locale/jv.js +76 -0
  1889. package/WeatherAPI/node_modules/moment/src/locale/ka.js +92 -0
  1890. package/WeatherAPI/node_modules/moment/src/locale/kk.js +82 -0
  1891. package/WeatherAPI/node_modules/moment/src/locale/km.js +103 -0
  1892. package/WeatherAPI/node_modules/moment/src/locale/kn.js +124 -0
  1893. package/WeatherAPI/node_modules/moment/src/locale/ko.js +75 -0
  1894. package/WeatherAPI/node_modules/moment/src/locale/ku-kmr.js +121 -0
  1895. package/WeatherAPI/node_modules/moment/src/locale/ku.js +118 -0
  1896. package/WeatherAPI/node_modules/moment/src/locale/ky.js +84 -0
  1897. package/WeatherAPI/node_modules/moment/src/locale/lb.js +137 -0
  1898. package/WeatherAPI/node_modules/moment/src/locale/lo.js +66 -0
  1899. package/WeatherAPI/node_modules/moment/src/locale/lt.js +125 -0
  1900. package/WeatherAPI/node_modules/moment/src/locale/lv.js +94 -0
  1901. package/WeatherAPI/node_modules/moment/src/locale/me.js +117 -0
  1902. package/WeatherAPI/node_modules/moment/src/locale/mi.js +60 -0
  1903. package/WeatherAPI/node_modules/moment/src/locale/mk.js +85 -0
  1904. package/WeatherAPI/node_modules/moment/src/locale/ml.js +82 -0
  1905. package/WeatherAPI/node_modules/moment/src/locale/mn.js +100 -0
  1906. package/WeatherAPI/node_modules/moment/src/locale/mr.js +203 -0
  1907. package/WeatherAPI/node_modules/moment/src/locale/ms-my.js +76 -0
  1908. package/WeatherAPI/node_modules/moment/src/locale/ms.js +75 -0
  1909. package/WeatherAPI/node_modules/moment/src/locale/mt.js +56 -0
  1910. package/WeatherAPI/node_modules/moment/src/locale/my.js +91 -0
  1911. package/WeatherAPI/node_modules/moment/src/locale/nb.js +60 -0
  1912. package/WeatherAPI/node_modules/moment/src/locale/ne.js +121 -0
  1913. package/WeatherAPI/node_modules/moment/src/locale/nl-be.js +102 -0
  1914. package/WeatherAPI/node_modules/moment/src/locale/nl.js +104 -0
  1915. package/WeatherAPI/node_modules/moment/src/locale/nn.js +59 -0
  1916. package/WeatherAPI/node_modules/moment/src/locale/oc-lnc.js +85 -0
  1917. package/WeatherAPI/node_modules/moment/src/locale/pa-in.js +122 -0
  1918. package/WeatherAPI/node_modules/moment/src/locale/pl.js +140 -0
  1919. package/WeatherAPI/node_modules/moment/src/locale/pt-br.js +58 -0
  1920. package/WeatherAPI/node_modules/moment/src/locale/pt.js +63 -0
  1921. package/WeatherAPI/node_modules/moment/src/locale/ro.js +76 -0
  1922. package/WeatherAPI/node_modules/moment/src/locale/ru.js +213 -0
  1923. package/WeatherAPI/node_modules/moment/src/locale/sd.js +81 -0
  1924. package/WeatherAPI/node_modules/moment/src/locale/se.js +57 -0
  1925. package/WeatherAPI/node_modules/moment/src/locale/si.js +69 -0
  1926. package/WeatherAPI/node_modules/moment/src/locale/sk.js +145 -0
  1927. package/WeatherAPI/node_modules/moment/src/locale/sl.js +171 -0
  1928. package/WeatherAPI/node_modules/moment/src/locale/sq.js +65 -0
  1929. package/WeatherAPI/node_modules/moment/src/locale/sr-cyrl.js +127 -0
  1930. package/WeatherAPI/node_modules/moment/src/locale/sr.js +129 -0
  1931. package/WeatherAPI/node_modules/moment/src/locale/ss.js +84 -0
  1932. package/WeatherAPI/node_modules/moment/src/locale/sv.js +68 -0
  1933. package/WeatherAPI/node_modules/moment/src/locale/sw.js +55 -0
  1934. package/WeatherAPI/node_modules/moment/src/locale/ta.js +131 -0
  1935. package/WeatherAPI/node_modules/moment/src/locale/te.js +88 -0
  1936. package/WeatherAPI/node_modules/moment/src/locale/tet.js +68 -0
  1937. package/WeatherAPI/node_modules/moment/src/locale/tg.js +117 -0
  1938. package/WeatherAPI/node_modules/moment/src/locale/th.js +65 -0
  1939. package/WeatherAPI/node_modules/moment/src/locale/tk.js +91 -0
  1940. package/WeatherAPI/node_modules/moment/src/locale/tl-ph.js +57 -0
  1941. package/WeatherAPI/node_modules/moment/src/locale/tlh.js +124 -0
  1942. package/WeatherAPI/node_modules/moment/src/locale/tr.js +106 -0
  1943. package/WeatherAPI/node_modules/moment/src/locale/tzl.js +89 -0
  1944. package/WeatherAPI/node_modules/moment/src/locale/tzm-latn.js +54 -0
  1945. package/WeatherAPI/node_modules/moment/src/locale/tzm.js +54 -0
  1946. package/WeatherAPI/node_modules/moment/src/locale/ug-cn.js +111 -0
  1947. package/WeatherAPI/node_modules/moment/src/locale/uk.js +167 -0
  1948. package/WeatherAPI/node_modules/moment/src/locale/ur.js +82 -0
  1949. package/WeatherAPI/node_modules/moment/src/locale/uz-latn.js +54 -0
  1950. package/WeatherAPI/node_modules/moment/src/locale/uz.js +51 -0
  1951. package/WeatherAPI/node_modules/moment/src/locale/vi.js +80 -0
  1952. package/WeatherAPI/node_modules/moment/src/locale/x-pseudo.js +73 -0
  1953. package/WeatherAPI/node_modules/moment/src/locale/yo.js +53 -0
  1954. package/WeatherAPI/node_modules/moment/src/locale/zh-cn.js +120 -0
  1955. package/WeatherAPI/node_modules/moment/src/locale/zh-hk.js +101 -0
  1956. package/WeatherAPI/node_modules/moment/src/locale/zh-mo.js +100 -0
  1957. package/WeatherAPI/node_modules/moment/src/locale/zh-tw.js +99 -0
  1958. package/WeatherAPI/node_modules/moment/src/moment.js +93 -0
  1959. package/WeatherAPI/node_modules/moment/ts3.1-typings/moment.d.ts +785 -0
  1960. package/WeatherAPI/node_modules/proxy-from-env/LICENSE +20 -0
  1961. package/WeatherAPI/node_modules/proxy-from-env/README.md +163 -0
  1962. package/WeatherAPI/node_modules/proxy-from-env/index.cjs +105 -0
  1963. package/WeatherAPI/node_modules/proxy-from-env/index.js +103 -0
  1964. package/WeatherAPI/node_modules/proxy-from-env/package.json +43 -0
  1965. package/WeatherAPI/package-lock.json +317 -0
  1966. package/WeatherAPI/package.json +13 -0
  1967. package/bin/cbs-block.js +294 -15
  1968. package/package.json +6 -3
  1969. package/preview_web.html +185 -0
  1970. package/superblock.cbsblock +18 -0
  1971. package/templates/library.json +91 -0
  1972. package/weather_api.cbsblock +56 -0
  1973. package/weather_api.md +19 -0
@@ -0,0 +1,4454 @@
1
+ /*! Axios v1.14.0 Copyright (c) 2026 Matt Zabriskie and contributors */
2
+ (function (global, factory) {
3
+ typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
4
+ typeof define === 'function' && define.amd ? define(factory) :
5
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.axios = factory());
6
+ })(this, (function () { 'use strict';
7
+
8
+ function _OverloadYield(e, d) {
9
+ this.v = e, this.k = d;
10
+ }
11
+ function _arrayLikeToArray(r, a) {
12
+ (null == a || a > r.length) && (a = r.length);
13
+ for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
14
+ return n;
15
+ }
16
+ function _arrayWithHoles(r) {
17
+ if (Array.isArray(r)) return r;
18
+ }
19
+ function _arrayWithoutHoles(r) {
20
+ if (Array.isArray(r)) return _arrayLikeToArray(r);
21
+ }
22
+ function _assertThisInitialized(e) {
23
+ if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
24
+ return e;
25
+ }
26
+ function _asyncGeneratorDelegate(t) {
27
+ var e = {},
28
+ n = false;
29
+ function pump(e, r) {
30
+ return n = true, r = new Promise(function (n) {
31
+ n(t[e](r));
32
+ }), {
33
+ done: false,
34
+ value: new _OverloadYield(r, 1)
35
+ };
36
+ }
37
+ return e["undefined" != typeof Symbol && Symbol.iterator || "@@iterator"] = function () {
38
+ return this;
39
+ }, e.next = function (t) {
40
+ return n ? (n = false, t) : pump("next", t);
41
+ }, "function" == typeof t.throw && (e.throw = function (t) {
42
+ if (n) throw n = false, t;
43
+ return pump("throw", t);
44
+ }), "function" == typeof t.return && (e.return = function (t) {
45
+ return n ? (n = false, t) : pump("return", t);
46
+ }), e;
47
+ }
48
+ function _asyncIterator(r) {
49
+ var n,
50
+ t,
51
+ o,
52
+ e = 2;
53
+ for ("undefined" != typeof Symbol && (t = Symbol.asyncIterator, o = Symbol.iterator); e--;) {
54
+ if (t && null != (n = r[t])) return n.call(r);
55
+ if (o && null != (n = r[o])) return new AsyncFromSyncIterator(n.call(r));
56
+ t = "@@asyncIterator", o = "@@iterator";
57
+ }
58
+ throw new TypeError("Object is not async iterable");
59
+ }
60
+ function AsyncFromSyncIterator(r) {
61
+ function AsyncFromSyncIteratorContinuation(r) {
62
+ if (Object(r) !== r) return Promise.reject(new TypeError(r + " is not an object."));
63
+ var n = r.done;
64
+ return Promise.resolve(r.value).then(function (r) {
65
+ return {
66
+ value: r,
67
+ done: n
68
+ };
69
+ });
70
+ }
71
+ return AsyncFromSyncIterator = function (r) {
72
+ this.s = r, this.n = r.next;
73
+ }, AsyncFromSyncIterator.prototype = {
74
+ s: null,
75
+ n: null,
76
+ next: function () {
77
+ return AsyncFromSyncIteratorContinuation(this.n.apply(this.s, arguments));
78
+ },
79
+ return: function (r) {
80
+ var n = this.s.return;
81
+ return void 0 === n ? Promise.resolve({
82
+ value: r,
83
+ done: true
84
+ }) : AsyncFromSyncIteratorContinuation(n.apply(this.s, arguments));
85
+ },
86
+ throw: function (r) {
87
+ var n = this.s.return;
88
+ return void 0 === n ? Promise.reject(r) : AsyncFromSyncIteratorContinuation(n.apply(this.s, arguments));
89
+ }
90
+ }, new AsyncFromSyncIterator(r);
91
+ }
92
+ function asyncGeneratorStep(n, t, e, r, o, a, c) {
93
+ try {
94
+ var i = n[a](c),
95
+ u = i.value;
96
+ } catch (n) {
97
+ return void e(n);
98
+ }
99
+ i.done ? t(u) : Promise.resolve(u).then(r, o);
100
+ }
101
+ function _asyncToGenerator(n) {
102
+ return function () {
103
+ var t = this,
104
+ e = arguments;
105
+ return new Promise(function (r, o) {
106
+ var a = n.apply(t, e);
107
+ function _next(n) {
108
+ asyncGeneratorStep(a, r, o, _next, _throw, "next", n);
109
+ }
110
+ function _throw(n) {
111
+ asyncGeneratorStep(a, r, o, _next, _throw, "throw", n);
112
+ }
113
+ _next(void 0);
114
+ });
115
+ };
116
+ }
117
+ function _awaitAsyncGenerator(e) {
118
+ return new _OverloadYield(e, 0);
119
+ }
120
+ function _callSuper(t, o, e) {
121
+ return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e));
122
+ }
123
+ function _classCallCheck(a, n) {
124
+ if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
125
+ }
126
+ function _construct(t, e, r) {
127
+ if (_isNativeReflectConstruct()) return Reflect.construct.apply(null, arguments);
128
+ var o = [null];
129
+ o.push.apply(o, e);
130
+ var p = new (t.bind.apply(t, o))();
131
+ return r && _setPrototypeOf(p, r.prototype), p;
132
+ }
133
+ function _defineProperties(e, r) {
134
+ for (var t = 0; t < r.length; t++) {
135
+ var o = r[t];
136
+ o.enumerable = o.enumerable || false, o.configurable = true, "value" in o && (o.writable = true), Object.defineProperty(e, _toPropertyKey(o.key), o);
137
+ }
138
+ }
139
+ function _createClass(e, r, t) {
140
+ return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", {
141
+ writable: false
142
+ }), e;
143
+ }
144
+ function _createForOfIteratorHelper(r, e) {
145
+ var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
146
+ if (!t) {
147
+ if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e) {
148
+ t && (r = t);
149
+ var n = 0,
150
+ F = function () {};
151
+ return {
152
+ s: F,
153
+ n: function () {
154
+ return n >= r.length ? {
155
+ done: true
156
+ } : {
157
+ done: false,
158
+ value: r[n++]
159
+ };
160
+ },
161
+ e: function (r) {
162
+ throw r;
163
+ },
164
+ f: F
165
+ };
166
+ }
167
+ throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
168
+ }
169
+ var o,
170
+ a = true,
171
+ u = false;
172
+ return {
173
+ s: function () {
174
+ t = t.call(r);
175
+ },
176
+ n: function () {
177
+ var r = t.next();
178
+ return a = r.done, r;
179
+ },
180
+ e: function (r) {
181
+ u = true, o = r;
182
+ },
183
+ f: function () {
184
+ try {
185
+ a || null == t.return || t.return();
186
+ } finally {
187
+ if (u) throw o;
188
+ }
189
+ }
190
+ };
191
+ }
192
+ function _defineProperty(e, r, t) {
193
+ return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
194
+ value: t,
195
+ enumerable: true,
196
+ configurable: true,
197
+ writable: true
198
+ }) : e[r] = t, e;
199
+ }
200
+ function _getPrototypeOf(t) {
201
+ return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) {
202
+ return t.__proto__ || Object.getPrototypeOf(t);
203
+ }, _getPrototypeOf(t);
204
+ }
205
+ function _inherits(t, e) {
206
+ if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function");
207
+ t.prototype = Object.create(e && e.prototype, {
208
+ constructor: {
209
+ value: t,
210
+ writable: true,
211
+ configurable: true
212
+ }
213
+ }), Object.defineProperty(t, "prototype", {
214
+ writable: false
215
+ }), e && _setPrototypeOf(t, e);
216
+ }
217
+ function _isNativeFunction(t) {
218
+ try {
219
+ return -1 !== Function.toString.call(t).indexOf("[native code]");
220
+ } catch (n) {
221
+ return "function" == typeof t;
222
+ }
223
+ }
224
+ function _isNativeReflectConstruct() {
225
+ try {
226
+ var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
227
+ } catch (t) {}
228
+ return (_isNativeReflectConstruct = function () {
229
+ return !!t;
230
+ })();
231
+ }
232
+ function _iterableToArray(r) {
233
+ if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r);
234
+ }
235
+ function _iterableToArrayLimit(r, l) {
236
+ var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
237
+ if (null != t) {
238
+ var e,
239
+ n,
240
+ i,
241
+ u,
242
+ a = [],
243
+ f = true,
244
+ o = false;
245
+ try {
246
+ if (i = (t = t.call(r)).next, 0 === l) {
247
+ if (Object(t) !== t) return;
248
+ f = !1;
249
+ } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0);
250
+ } catch (r) {
251
+ o = true, n = r;
252
+ } finally {
253
+ try {
254
+ if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return;
255
+ } finally {
256
+ if (o) throw n;
257
+ }
258
+ }
259
+ return a;
260
+ }
261
+ }
262
+ function _nonIterableRest() {
263
+ throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
264
+ }
265
+ function _nonIterableSpread() {
266
+ throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
267
+ }
268
+ function ownKeys(e, r) {
269
+ var t = Object.keys(e);
270
+ if (Object.getOwnPropertySymbols) {
271
+ var o = Object.getOwnPropertySymbols(e);
272
+ r && (o = o.filter(function (r) {
273
+ return Object.getOwnPropertyDescriptor(e, r).enumerable;
274
+ })), t.push.apply(t, o);
275
+ }
276
+ return t;
277
+ }
278
+ function _objectSpread2(e) {
279
+ for (var r = 1; r < arguments.length; r++) {
280
+ var t = null != arguments[r] ? arguments[r] : {};
281
+ r % 2 ? ownKeys(Object(t), true).forEach(function (r) {
282
+ _defineProperty(e, r, t[r]);
283
+ }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) {
284
+ Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r));
285
+ });
286
+ }
287
+ return e;
288
+ }
289
+ function _possibleConstructorReturn(t, e) {
290
+ if (e && ("object" == typeof e || "function" == typeof e)) return e;
291
+ if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined");
292
+ return _assertThisInitialized(t);
293
+ }
294
+ function _regenerator() {
295
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
296
+ var e,
297
+ t,
298
+ r = "function" == typeof Symbol ? Symbol : {},
299
+ n = r.iterator || "@@iterator",
300
+ o = r.toStringTag || "@@toStringTag";
301
+ function i(r, n, o, i) {
302
+ var c = n && n.prototype instanceof Generator ? n : Generator,
303
+ u = Object.create(c.prototype);
304
+ return _regeneratorDefine(u, "_invoke", function (r, n, o) {
305
+ var i,
306
+ c,
307
+ u,
308
+ f = 0,
309
+ p = o || [],
310
+ y = false,
311
+ G = {
312
+ p: 0,
313
+ n: 0,
314
+ v: e,
315
+ a: d,
316
+ f: d.bind(e, 4),
317
+ d: function (t, r) {
318
+ return i = t, c = 0, u = e, G.n = r, a;
319
+ }
320
+ };
321
+ function d(r, n) {
322
+ for (c = r, u = n, t = 0; !y && f && !o && t < p.length; t++) {
323
+ var o,
324
+ i = p[t],
325
+ d = G.p,
326
+ l = i[2];
327
+ r > 3 ? (o = l === n) && (u = i[(c = i[4]) ? 5 : (c = 3, 3)], i[4] = i[5] = e) : i[0] <= d && ((o = r < 2 && d < i[1]) ? (c = 0, G.v = n, G.n = i[1]) : d < l && (o = r < 3 || i[0] > n || n > l) && (i[4] = r, i[5] = n, G.n = l, c = 0));
328
+ }
329
+ if (o || r > 1) return a;
330
+ throw y = true, n;
331
+ }
332
+ return function (o, p, l) {
333
+ if (f > 1) throw TypeError("Generator is already running");
334
+ for (y && 1 === p && d(p, l), c = p, u = l; (t = c < 2 ? e : u) || !y;) {
335
+ i || (c ? c < 3 ? (c > 1 && (G.n = -1), d(c, u)) : G.n = u : G.v = u);
336
+ try {
337
+ if (f = 2, i) {
338
+ if (c || (o = "next"), t = i[o]) {
339
+ if (!(t = t.call(i, u))) throw TypeError("iterator result is not an object");
340
+ if (!t.done) return t;
341
+ u = t.value, c < 2 && (c = 0);
342
+ } else 1 === c && (t = i.return) && t.call(i), c < 2 && (u = TypeError("The iterator does not provide a '" + o + "' method"), c = 1);
343
+ i = e;
344
+ } else if ((t = (y = G.n < 0) ? u : r.call(n, G)) !== a) break;
345
+ } catch (t) {
346
+ i = e, c = 1, u = t;
347
+ } finally {
348
+ f = 1;
349
+ }
350
+ }
351
+ return {
352
+ value: t,
353
+ done: y
354
+ };
355
+ };
356
+ }(r, o, i), true), u;
357
+ }
358
+ var a = {};
359
+ function Generator() {}
360
+ function GeneratorFunction() {}
361
+ function GeneratorFunctionPrototype() {}
362
+ t = Object.getPrototypeOf;
363
+ var c = [][n] ? t(t([][n]())) : (_regeneratorDefine(t = {}, n, function () {
364
+ return this;
365
+ }), t),
366
+ u = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(c);
367
+ function f(e) {
368
+ return Object.setPrototypeOf ? Object.setPrototypeOf(e, GeneratorFunctionPrototype) : (e.__proto__ = GeneratorFunctionPrototype, _regeneratorDefine(e, o, "GeneratorFunction")), e.prototype = Object.create(u), e;
369
+ }
370
+ return GeneratorFunction.prototype = GeneratorFunctionPrototype, _regeneratorDefine(u, "constructor", GeneratorFunctionPrototype), _regeneratorDefine(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = "GeneratorFunction", _regeneratorDefine(GeneratorFunctionPrototype, o, "GeneratorFunction"), _regeneratorDefine(u), _regeneratorDefine(u, o, "Generator"), _regeneratorDefine(u, n, function () {
371
+ return this;
372
+ }), _regeneratorDefine(u, "toString", function () {
373
+ return "[object Generator]";
374
+ }), (_regenerator = function () {
375
+ return {
376
+ w: i,
377
+ m: f
378
+ };
379
+ })();
380
+ }
381
+ function _regeneratorDefine(e, r, n, t) {
382
+ var i = Object.defineProperty;
383
+ try {
384
+ i({}, "", {});
385
+ } catch (e) {
386
+ i = 0;
387
+ }
388
+ _regeneratorDefine = function (e, r, n, t) {
389
+ function o(r, n) {
390
+ _regeneratorDefine(e, r, function (e) {
391
+ return this._invoke(r, n, e);
392
+ });
393
+ }
394
+ r ? i ? i(e, r, {
395
+ value: n,
396
+ enumerable: !t,
397
+ configurable: !t,
398
+ writable: !t
399
+ }) : e[r] = n : (o("next", 0), o("throw", 1), o("return", 2));
400
+ }, _regeneratorDefine(e, r, n, t);
401
+ }
402
+ function _regeneratorValues(e) {
403
+ if (null != e) {
404
+ var t = e["function" == typeof Symbol && Symbol.iterator || "@@iterator"],
405
+ r = 0;
406
+ if (t) return t.call(e);
407
+ if ("function" == typeof e.next) return e;
408
+ if (!isNaN(e.length)) return {
409
+ next: function () {
410
+ return e && r >= e.length && (e = void 0), {
411
+ value: e && e[r++],
412
+ done: !e
413
+ };
414
+ }
415
+ };
416
+ }
417
+ throw new TypeError(typeof e + " is not iterable");
418
+ }
419
+ function _setPrototypeOf(t, e) {
420
+ return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) {
421
+ return t.__proto__ = e, t;
422
+ }, _setPrototypeOf(t, e);
423
+ }
424
+ function _slicedToArray(r, e) {
425
+ return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest();
426
+ }
427
+ function _toConsumableArray(r) {
428
+ return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread();
429
+ }
430
+ function _toPrimitive(t, r) {
431
+ if ("object" != typeof t || !t) return t;
432
+ var e = t[Symbol.toPrimitive];
433
+ if (void 0 !== e) {
434
+ var i = e.call(t, r);
435
+ if ("object" != typeof i) return i;
436
+ throw new TypeError("@@toPrimitive must return a primitive value.");
437
+ }
438
+ return ("string" === r ? String : Number)(t);
439
+ }
440
+ function _toPropertyKey(t) {
441
+ var i = _toPrimitive(t, "string");
442
+ return "symbol" == typeof i ? i : i + "";
443
+ }
444
+ function _typeof(o) {
445
+ "@babel/helpers - typeof";
446
+
447
+ return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
448
+ return typeof o;
449
+ } : function (o) {
450
+ return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
451
+ }, _typeof(o);
452
+ }
453
+ function _unsupportedIterableToArray(r, a) {
454
+ if (r) {
455
+ if ("string" == typeof r) return _arrayLikeToArray(r, a);
456
+ var t = {}.toString.call(r).slice(8, -1);
457
+ return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0;
458
+ }
459
+ }
460
+ function _wrapAsyncGenerator(e) {
461
+ return function () {
462
+ return new AsyncGenerator(e.apply(this, arguments));
463
+ };
464
+ }
465
+ function AsyncGenerator(e) {
466
+ var r, t;
467
+ function resume(r, t) {
468
+ try {
469
+ var n = e[r](t),
470
+ o = n.value,
471
+ u = o instanceof _OverloadYield;
472
+ Promise.resolve(u ? o.v : o).then(function (t) {
473
+ if (u) {
474
+ var i = "return" === r ? "return" : "next";
475
+ if (!o.k || t.done) return resume(i, t);
476
+ t = e[i](t).value;
477
+ }
478
+ settle(n.done ? "return" : "normal", t);
479
+ }, function (e) {
480
+ resume("throw", e);
481
+ });
482
+ } catch (e) {
483
+ settle("throw", e);
484
+ }
485
+ }
486
+ function settle(e, n) {
487
+ switch (e) {
488
+ case "return":
489
+ r.resolve({
490
+ value: n,
491
+ done: true
492
+ });
493
+ break;
494
+ case "throw":
495
+ r.reject(n);
496
+ break;
497
+ default:
498
+ r.resolve({
499
+ value: n,
500
+ done: false
501
+ });
502
+ }
503
+ (r = r.next) ? resume(r.key, r.arg) : t = null;
504
+ }
505
+ this._invoke = function (e, n) {
506
+ return new Promise(function (o, u) {
507
+ var i = {
508
+ key: e,
509
+ arg: n,
510
+ resolve: o,
511
+ reject: u,
512
+ next: null
513
+ };
514
+ t ? t = t.next = i : (r = t = i, resume(e, n));
515
+ });
516
+ }, "function" != typeof e.return && (this.return = void 0);
517
+ }
518
+ AsyncGenerator.prototype["function" == typeof Symbol && Symbol.asyncIterator || "@@asyncIterator"] = function () {
519
+ return this;
520
+ }, AsyncGenerator.prototype.next = function (e) {
521
+ return this._invoke("next", e);
522
+ }, AsyncGenerator.prototype.throw = function (e) {
523
+ return this._invoke("throw", e);
524
+ }, AsyncGenerator.prototype.return = function (e) {
525
+ return this._invoke("return", e);
526
+ };
527
+ function _wrapNativeSuper(t) {
528
+ var r = "function" == typeof Map ? new Map() : void 0;
529
+ return _wrapNativeSuper = function (t) {
530
+ if (null === t || !_isNativeFunction(t)) return t;
531
+ if ("function" != typeof t) throw new TypeError("Super expression must either be null or a function");
532
+ if (void 0 !== r) {
533
+ if (r.has(t)) return r.get(t);
534
+ r.set(t, Wrapper);
535
+ }
536
+ function Wrapper() {
537
+ return _construct(t, arguments, _getPrototypeOf(this).constructor);
538
+ }
539
+ return Wrapper.prototype = Object.create(t.prototype, {
540
+ constructor: {
541
+ value: Wrapper,
542
+ enumerable: false,
543
+ writable: true,
544
+ configurable: true
545
+ }
546
+ }), _setPrototypeOf(Wrapper, t);
547
+ }, _wrapNativeSuper(t);
548
+ }
549
+
550
+ /**
551
+ * Create a bound version of a function with a specified `this` context
552
+ *
553
+ * @param {Function} fn - The function to bind
554
+ * @param {*} thisArg - The value to be passed as the `this` parameter
555
+ * @returns {Function} A new function that will call the original function with the specified `this` context
556
+ */
557
+ function bind(fn, thisArg) {
558
+ return function wrap() {
559
+ return fn.apply(thisArg, arguments);
560
+ };
561
+ }
562
+
563
+ // utils is a library of generic helper functions non-specific to axios
564
+
565
+ var toString = Object.prototype.toString;
566
+ var getPrototypeOf = Object.getPrototypeOf;
567
+ var iterator = Symbol.iterator,
568
+ toStringTag = Symbol.toStringTag;
569
+ var kindOf = function (cache) {
570
+ return function (thing) {
571
+ var str = toString.call(thing);
572
+ return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());
573
+ };
574
+ }(Object.create(null));
575
+ var kindOfTest = function kindOfTest(type) {
576
+ type = type.toLowerCase();
577
+ return function (thing) {
578
+ return kindOf(thing) === type;
579
+ };
580
+ };
581
+ var typeOfTest = function typeOfTest(type) {
582
+ return function (thing) {
583
+ return _typeof(thing) === type;
584
+ };
585
+ };
586
+
587
+ /**
588
+ * Determine if a value is a non-null object
589
+ *
590
+ * @param {Object} val The value to test
591
+ *
592
+ * @returns {boolean} True if value is an Array, otherwise false
593
+ */
594
+ var isArray = Array.isArray;
595
+
596
+ /**
597
+ * Determine if a value is undefined
598
+ *
599
+ * @param {*} val The value to test
600
+ *
601
+ * @returns {boolean} True if the value is undefined, otherwise false
602
+ */
603
+ var isUndefined = typeOfTest('undefined');
604
+
605
+ /**
606
+ * Determine if a value is a Buffer
607
+ *
608
+ * @param {*} val The value to test
609
+ *
610
+ * @returns {boolean} True if value is a Buffer, otherwise false
611
+ */
612
+ function isBuffer(val) {
613
+ return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor) && isFunction$1(val.constructor.isBuffer) && val.constructor.isBuffer(val);
614
+ }
615
+
616
+ /**
617
+ * Determine if a value is an ArrayBuffer
618
+ *
619
+ * @param {*} val The value to test
620
+ *
621
+ * @returns {boolean} True if value is an ArrayBuffer, otherwise false
622
+ */
623
+ var isArrayBuffer = kindOfTest('ArrayBuffer');
624
+
625
+ /**
626
+ * Determine if a value is a view on an ArrayBuffer
627
+ *
628
+ * @param {*} val The value to test
629
+ *
630
+ * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false
631
+ */
632
+ function isArrayBufferView(val) {
633
+ var result;
634
+ if (typeof ArrayBuffer !== 'undefined' && ArrayBuffer.isView) {
635
+ result = ArrayBuffer.isView(val);
636
+ } else {
637
+ result = val && val.buffer && isArrayBuffer(val.buffer);
638
+ }
639
+ return result;
640
+ }
641
+
642
+ /**
643
+ * Determine if a value is a String
644
+ *
645
+ * @param {*} val The value to test
646
+ *
647
+ * @returns {boolean} True if value is a String, otherwise false
648
+ */
649
+ var isString = typeOfTest('string');
650
+
651
+ /**
652
+ * Determine if a value is a Function
653
+ *
654
+ * @param {*} val The value to test
655
+ * @returns {boolean} True if value is a Function, otherwise false
656
+ */
657
+ var isFunction$1 = typeOfTest('function');
658
+
659
+ /**
660
+ * Determine if a value is a Number
661
+ *
662
+ * @param {*} val The value to test
663
+ *
664
+ * @returns {boolean} True if value is a Number, otherwise false
665
+ */
666
+ var isNumber = typeOfTest('number');
667
+
668
+ /**
669
+ * Determine if a value is an Object
670
+ *
671
+ * @param {*} thing The value to test
672
+ *
673
+ * @returns {boolean} True if value is an Object, otherwise false
674
+ */
675
+ var isObject = function isObject(thing) {
676
+ return thing !== null && _typeof(thing) === 'object';
677
+ };
678
+
679
+ /**
680
+ * Determine if a value is a Boolean
681
+ *
682
+ * @param {*} thing The value to test
683
+ * @returns {boolean} True if value is a Boolean, otherwise false
684
+ */
685
+ var isBoolean = function isBoolean(thing) {
686
+ return thing === true || thing === false;
687
+ };
688
+
689
+ /**
690
+ * Determine if a value is a plain Object
691
+ *
692
+ * @param {*} val The value to test
693
+ *
694
+ * @returns {boolean} True if value is a plain Object, otherwise false
695
+ */
696
+ var isPlainObject = function isPlainObject(val) {
697
+ if (kindOf(val) !== 'object') {
698
+ return false;
699
+ }
700
+ var prototype = getPrototypeOf(val);
701
+ return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(toStringTag in val) && !(iterator in val);
702
+ };
703
+
704
+ /**
705
+ * Determine if a value is an empty object (safely handles Buffers)
706
+ *
707
+ * @param {*} val The value to test
708
+ *
709
+ * @returns {boolean} True if value is an empty object, otherwise false
710
+ */
711
+ var isEmptyObject = function isEmptyObject(val) {
712
+ // Early return for non-objects or Buffers to prevent RangeError
713
+ if (!isObject(val) || isBuffer(val)) {
714
+ return false;
715
+ }
716
+ try {
717
+ return Object.keys(val).length === 0 && Object.getPrototypeOf(val) === Object.prototype;
718
+ } catch (e) {
719
+ // Fallback for any other objects that might cause RangeError with Object.keys()
720
+ return false;
721
+ }
722
+ };
723
+
724
+ /**
725
+ * Determine if a value is a Date
726
+ *
727
+ * @param {*} val The value to test
728
+ *
729
+ * @returns {boolean} True if value is a Date, otherwise false
730
+ */
731
+ var isDate = kindOfTest('Date');
732
+
733
+ /**
734
+ * Determine if a value is a File
735
+ *
736
+ * @param {*} val The value to test
737
+ *
738
+ * @returns {boolean} True if value is a File, otherwise false
739
+ */
740
+ var isFile = kindOfTest('File');
741
+
742
+ /**
743
+ * Determine if a value is a React Native Blob
744
+ * React Native "blob": an object with a `uri` attribute. Optionally, it can
745
+ * also have a `name` and `type` attribute to specify filename and content type
746
+ *
747
+ * @see https://github.com/facebook/react-native/blob/26684cf3adf4094eb6c405d345a75bf8c7c0bf88/Libraries/Network/FormData.js#L68-L71
748
+ *
749
+ * @param {*} value The value to test
750
+ *
751
+ * @returns {boolean} True if value is a React Native Blob, otherwise false
752
+ */
753
+ var isReactNativeBlob = function isReactNativeBlob(value) {
754
+ return !!(value && typeof value.uri !== 'undefined');
755
+ };
756
+
757
+ /**
758
+ * Determine if environment is React Native
759
+ * ReactNative `FormData` has a non-standard `getParts()` method
760
+ *
761
+ * @param {*} formData The formData to test
762
+ *
763
+ * @returns {boolean} True if environment is React Native, otherwise false
764
+ */
765
+ var isReactNative = function isReactNative(formData) {
766
+ return formData && typeof formData.getParts !== 'undefined';
767
+ };
768
+
769
+ /**
770
+ * Determine if a value is a Blob
771
+ *
772
+ * @param {*} val The value to test
773
+ *
774
+ * @returns {boolean} True if value is a Blob, otherwise false
775
+ */
776
+ var isBlob = kindOfTest('Blob');
777
+
778
+ /**
779
+ * Determine if a value is a FileList
780
+ *
781
+ * @param {*} val The value to test
782
+ *
783
+ * @returns {boolean} True if value is a File, otherwise false
784
+ */
785
+ var isFileList = kindOfTest('FileList');
786
+
787
+ /**
788
+ * Determine if a value is a Stream
789
+ *
790
+ * @param {*} val The value to test
791
+ *
792
+ * @returns {boolean} True if value is a Stream, otherwise false
793
+ */
794
+ var isStream = function isStream(val) {
795
+ return isObject(val) && isFunction$1(val.pipe);
796
+ };
797
+
798
+ /**
799
+ * Determine if a value is a FormData
800
+ *
801
+ * @param {*} thing The value to test
802
+ *
803
+ * @returns {boolean} True if value is an FormData, otherwise false
804
+ */
805
+ function getGlobal() {
806
+ if (typeof globalThis !== 'undefined') return globalThis;
807
+ if (typeof self !== 'undefined') return self;
808
+ if (typeof window !== 'undefined') return window;
809
+ if (typeof global !== 'undefined') return global;
810
+ return {};
811
+ }
812
+ var G = getGlobal();
813
+ var FormDataCtor = typeof G.FormData !== 'undefined' ? G.FormData : undefined;
814
+ var isFormData = function isFormData(thing) {
815
+ var kind;
816
+ return thing && (FormDataCtor && thing instanceof FormDataCtor || isFunction$1(thing.append) && ((kind = kindOf(thing)) === 'formdata' ||
817
+ // detect form-data instance
818
+ kind === 'object' && isFunction$1(thing.toString) && thing.toString() === '[object FormData]'));
819
+ };
820
+
821
+ /**
822
+ * Determine if a value is a URLSearchParams object
823
+ *
824
+ * @param {*} val The value to test
825
+ *
826
+ * @returns {boolean} True if value is a URLSearchParams object, otherwise false
827
+ */
828
+ var isURLSearchParams = kindOfTest('URLSearchParams');
829
+ var _map = ['ReadableStream', 'Request', 'Response', 'Headers'].map(kindOfTest),
830
+ _map2 = _slicedToArray(_map, 4),
831
+ isReadableStream = _map2[0],
832
+ isRequest = _map2[1],
833
+ isResponse = _map2[2],
834
+ isHeaders = _map2[3];
835
+
836
+ /**
837
+ * Trim excess whitespace off the beginning and end of a string
838
+ *
839
+ * @param {String} str The String to trim
840
+ *
841
+ * @returns {String} The String freed of excess whitespace
842
+ */
843
+ var trim = function trim(str) {
844
+ return str.trim ? str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '');
845
+ };
846
+ /**
847
+ * Iterate over an Array or an Object invoking a function for each item.
848
+ *
849
+ * If `obj` is an Array callback will be called passing
850
+ * the value, index, and complete array for each item.
851
+ *
852
+ * If 'obj' is an Object callback will be called passing
853
+ * the value, key, and complete object for each property.
854
+ *
855
+ * @param {Object|Array<unknown>} obj The object to iterate
856
+ * @param {Function} fn The callback to invoke for each item
857
+ *
858
+ * @param {Object} [options]
859
+ * @param {Boolean} [options.allOwnKeys = false]
860
+ * @returns {any}
861
+ */
862
+ function forEach(obj, fn) {
863
+ var _ref = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {},
864
+ _ref$allOwnKeys = _ref.allOwnKeys,
865
+ allOwnKeys = _ref$allOwnKeys === void 0 ? false : _ref$allOwnKeys;
866
+ // Don't bother if no value provided
867
+ if (obj === null || typeof obj === 'undefined') {
868
+ return;
869
+ }
870
+ var i;
871
+ var l;
872
+
873
+ // Force an array if not already something iterable
874
+ if (_typeof(obj) !== 'object') {
875
+ /*eslint no-param-reassign:0*/
876
+ obj = [obj];
877
+ }
878
+ if (isArray(obj)) {
879
+ // Iterate over array values
880
+ for (i = 0, l = obj.length; i < l; i++) {
881
+ fn.call(null, obj[i], i, obj);
882
+ }
883
+ } else {
884
+ // Buffer check
885
+ if (isBuffer(obj)) {
886
+ return;
887
+ }
888
+
889
+ // Iterate over object keys
890
+ var keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);
891
+ var len = keys.length;
892
+ var key;
893
+ for (i = 0; i < len; i++) {
894
+ key = keys[i];
895
+ fn.call(null, obj[key], key, obj);
896
+ }
897
+ }
898
+ }
899
+
900
+ /**
901
+ * Finds a key in an object, case-insensitive, returning the actual key name.
902
+ * Returns null if the object is a Buffer or if no match is found.
903
+ *
904
+ * @param {Object} obj - The object to search.
905
+ * @param {string} key - The key to find (case-insensitive).
906
+ * @returns {?string} The actual key name if found, otherwise null.
907
+ */
908
+ function findKey(obj, key) {
909
+ if (isBuffer(obj)) {
910
+ return null;
911
+ }
912
+ key = key.toLowerCase();
913
+ var keys = Object.keys(obj);
914
+ var i = keys.length;
915
+ var _key;
916
+ while (i-- > 0) {
917
+ _key = keys[i];
918
+ if (key === _key.toLowerCase()) {
919
+ return _key;
920
+ }
921
+ }
922
+ return null;
923
+ }
924
+ var _global = function () {
925
+ /*eslint no-undef:0*/
926
+ if (typeof globalThis !== 'undefined') return globalThis;
927
+ return typeof self !== 'undefined' ? self : typeof window !== 'undefined' ? window : global;
928
+ }();
929
+ var isContextDefined = function isContextDefined(context) {
930
+ return !isUndefined(context) && context !== _global;
931
+ };
932
+
933
+ /**
934
+ * Accepts varargs expecting each argument to be an object, then
935
+ * immutably merges the properties of each object and returns result.
936
+ *
937
+ * When multiple objects contain the same key the later object in
938
+ * the arguments list will take precedence.
939
+ *
940
+ * Example:
941
+ *
942
+ * ```js
943
+ * const result = merge({foo: 123}, {foo: 456});
944
+ * console.log(result.foo); // outputs 456
945
+ * ```
946
+ *
947
+ * @param {Object} obj1 Object to merge
948
+ *
949
+ * @returns {Object} Result of all merge properties
950
+ */
951
+ function merge(/* obj1, obj2, obj3, ... */
952
+ ) {
953
+ var _ref2 = isContextDefined(this) && this || {},
954
+ caseless = _ref2.caseless,
955
+ skipUndefined = _ref2.skipUndefined;
956
+ var result = {};
957
+ var assignValue = function assignValue(val, key) {
958
+ // Skip dangerous property names to prevent prototype pollution
959
+ if (key === '__proto__' || key === 'constructor' || key === 'prototype') {
960
+ return;
961
+ }
962
+ var targetKey = caseless && findKey(result, key) || key;
963
+ if (isPlainObject(result[targetKey]) && isPlainObject(val)) {
964
+ result[targetKey] = merge(result[targetKey], val);
965
+ } else if (isPlainObject(val)) {
966
+ result[targetKey] = merge({}, val);
967
+ } else if (isArray(val)) {
968
+ result[targetKey] = val.slice();
969
+ } else if (!skipUndefined || !isUndefined(val)) {
970
+ result[targetKey] = val;
971
+ }
972
+ };
973
+ for (var i = 0, l = arguments.length; i < l; i++) {
974
+ arguments[i] && forEach(arguments[i], assignValue);
975
+ }
976
+ return result;
977
+ }
978
+
979
+ /**
980
+ * Extends object a by mutably adding to it the properties of object b.
981
+ *
982
+ * @param {Object} a The object to be extended
983
+ * @param {Object} b The object to copy properties from
984
+ * @param {Object} thisArg The object to bind function to
985
+ *
986
+ * @param {Object} [options]
987
+ * @param {Boolean} [options.allOwnKeys]
988
+ * @returns {Object} The resulting value of object a
989
+ */
990
+ var extend = function extend(a, b, thisArg) {
991
+ var _ref3 = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {},
992
+ allOwnKeys = _ref3.allOwnKeys;
993
+ forEach(b, function (val, key) {
994
+ if (thisArg && isFunction$1(val)) {
995
+ Object.defineProperty(a, key, {
996
+ value: bind(val, thisArg),
997
+ writable: true,
998
+ enumerable: true,
999
+ configurable: true
1000
+ });
1001
+ } else {
1002
+ Object.defineProperty(a, key, {
1003
+ value: val,
1004
+ writable: true,
1005
+ enumerable: true,
1006
+ configurable: true
1007
+ });
1008
+ }
1009
+ }, {
1010
+ allOwnKeys: allOwnKeys
1011
+ });
1012
+ return a;
1013
+ };
1014
+
1015
+ /**
1016
+ * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)
1017
+ *
1018
+ * @param {string} content with BOM
1019
+ *
1020
+ * @returns {string} content value without BOM
1021
+ */
1022
+ var stripBOM = function stripBOM(content) {
1023
+ if (content.charCodeAt(0) === 0xfeff) {
1024
+ content = content.slice(1);
1025
+ }
1026
+ return content;
1027
+ };
1028
+
1029
+ /**
1030
+ * Inherit the prototype methods from one constructor into another
1031
+ * @param {function} constructor
1032
+ * @param {function} superConstructor
1033
+ * @param {object} [props]
1034
+ * @param {object} [descriptors]
1035
+ *
1036
+ * @returns {void}
1037
+ */
1038
+ var inherits = function inherits(constructor, superConstructor, props, descriptors) {
1039
+ constructor.prototype = Object.create(superConstructor.prototype, descriptors);
1040
+ Object.defineProperty(constructor.prototype, 'constructor', {
1041
+ value: constructor,
1042
+ writable: true,
1043
+ enumerable: false,
1044
+ configurable: true
1045
+ });
1046
+ Object.defineProperty(constructor, 'super', {
1047
+ value: superConstructor.prototype
1048
+ });
1049
+ props && Object.assign(constructor.prototype, props);
1050
+ };
1051
+
1052
+ /**
1053
+ * Resolve object with deep prototype chain to a flat object
1054
+ * @param {Object} sourceObj source object
1055
+ * @param {Object} [destObj]
1056
+ * @param {Function|Boolean} [filter]
1057
+ * @param {Function} [propFilter]
1058
+ *
1059
+ * @returns {Object}
1060
+ */
1061
+ var toFlatObject = function toFlatObject(sourceObj, destObj, filter, propFilter) {
1062
+ var props;
1063
+ var i;
1064
+ var prop;
1065
+ var merged = {};
1066
+ destObj = destObj || {};
1067
+ // eslint-disable-next-line no-eq-null,eqeqeq
1068
+ if (sourceObj == null) return destObj;
1069
+ do {
1070
+ props = Object.getOwnPropertyNames(sourceObj);
1071
+ i = props.length;
1072
+ while (i-- > 0) {
1073
+ prop = props[i];
1074
+ if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) {
1075
+ destObj[prop] = sourceObj[prop];
1076
+ merged[prop] = true;
1077
+ }
1078
+ }
1079
+ sourceObj = filter !== false && getPrototypeOf(sourceObj);
1080
+ } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);
1081
+ return destObj;
1082
+ };
1083
+
1084
+ /**
1085
+ * Determines whether a string ends with the characters of a specified string
1086
+ *
1087
+ * @param {String} str
1088
+ * @param {String} searchString
1089
+ * @param {Number} [position= 0]
1090
+ *
1091
+ * @returns {boolean}
1092
+ */
1093
+ var endsWith = function endsWith(str, searchString, position) {
1094
+ str = String(str);
1095
+ if (position === undefined || position > str.length) {
1096
+ position = str.length;
1097
+ }
1098
+ position -= searchString.length;
1099
+ var lastIndex = str.indexOf(searchString, position);
1100
+ return lastIndex !== -1 && lastIndex === position;
1101
+ };
1102
+
1103
+ /**
1104
+ * Returns new array from array like object or null if failed
1105
+ *
1106
+ * @param {*} [thing]
1107
+ *
1108
+ * @returns {?Array}
1109
+ */
1110
+ var toArray = function toArray(thing) {
1111
+ if (!thing) return null;
1112
+ if (isArray(thing)) return thing;
1113
+ var i = thing.length;
1114
+ if (!isNumber(i)) return null;
1115
+ var arr = new Array(i);
1116
+ while (i-- > 0) {
1117
+ arr[i] = thing[i];
1118
+ }
1119
+ return arr;
1120
+ };
1121
+
1122
+ /**
1123
+ * Checking if the Uint8Array exists and if it does, it returns a function that checks if the
1124
+ * thing passed in is an instance of Uint8Array
1125
+ *
1126
+ * @param {TypedArray}
1127
+ *
1128
+ * @returns {Array}
1129
+ */
1130
+ // eslint-disable-next-line func-names
1131
+ var isTypedArray = function (TypedArray) {
1132
+ // eslint-disable-next-line func-names
1133
+ return function (thing) {
1134
+ return TypedArray && thing instanceof TypedArray;
1135
+ };
1136
+ }(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array));
1137
+
1138
+ /**
1139
+ * For each entry in the object, call the function with the key and value.
1140
+ *
1141
+ * @param {Object<any, any>} obj - The object to iterate over.
1142
+ * @param {Function} fn - The function to call for each entry.
1143
+ *
1144
+ * @returns {void}
1145
+ */
1146
+ var forEachEntry = function forEachEntry(obj, fn) {
1147
+ var generator = obj && obj[iterator];
1148
+ var _iterator = generator.call(obj);
1149
+ var result;
1150
+ while ((result = _iterator.next()) && !result.done) {
1151
+ var pair = result.value;
1152
+ fn.call(obj, pair[0], pair[1]);
1153
+ }
1154
+ };
1155
+
1156
+ /**
1157
+ * It takes a regular expression and a string, and returns an array of all the matches
1158
+ *
1159
+ * @param {string} regExp - The regular expression to match against.
1160
+ * @param {string} str - The string to search.
1161
+ *
1162
+ * @returns {Array<boolean>}
1163
+ */
1164
+ var matchAll = function matchAll(regExp, str) {
1165
+ var matches;
1166
+ var arr = [];
1167
+ while ((matches = regExp.exec(str)) !== null) {
1168
+ arr.push(matches);
1169
+ }
1170
+ return arr;
1171
+ };
1172
+
1173
+ /* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */
1174
+ var isHTMLForm = kindOfTest('HTMLFormElement');
1175
+ var toCamelCase = function toCamelCase(str) {
1176
+ return str.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g, function replacer(m, p1, p2) {
1177
+ return p1.toUpperCase() + p2;
1178
+ });
1179
+ };
1180
+
1181
+ /* Creating a function that will check if an object has a property. */
1182
+ var hasOwnProperty = function (_ref4) {
1183
+ var hasOwnProperty = _ref4.hasOwnProperty;
1184
+ return function (obj, prop) {
1185
+ return hasOwnProperty.call(obj, prop);
1186
+ };
1187
+ }(Object.prototype);
1188
+
1189
+ /**
1190
+ * Determine if a value is a RegExp object
1191
+ *
1192
+ * @param {*} val The value to test
1193
+ *
1194
+ * @returns {boolean} True if value is a RegExp object, otherwise false
1195
+ */
1196
+ var isRegExp = kindOfTest('RegExp');
1197
+ var reduceDescriptors = function reduceDescriptors(obj, reducer) {
1198
+ var descriptors = Object.getOwnPropertyDescriptors(obj);
1199
+ var reducedDescriptors = {};
1200
+ forEach(descriptors, function (descriptor, name) {
1201
+ var ret;
1202
+ if ((ret = reducer(descriptor, name, obj)) !== false) {
1203
+ reducedDescriptors[name] = ret || descriptor;
1204
+ }
1205
+ });
1206
+ Object.defineProperties(obj, reducedDescriptors);
1207
+ };
1208
+
1209
+ /**
1210
+ * Makes all methods read-only
1211
+ * @param {Object} obj
1212
+ */
1213
+
1214
+ var freezeMethods = function freezeMethods(obj) {
1215
+ reduceDescriptors(obj, function (descriptor, name) {
1216
+ // skip restricted props in strict mode
1217
+ if (isFunction$1(obj) && ['arguments', 'caller', 'callee'].indexOf(name) !== -1) {
1218
+ return false;
1219
+ }
1220
+ var value = obj[name];
1221
+ if (!isFunction$1(value)) return;
1222
+ descriptor.enumerable = false;
1223
+ if ('writable' in descriptor) {
1224
+ descriptor.writable = false;
1225
+ return;
1226
+ }
1227
+ if (!descriptor.set) {
1228
+ descriptor.set = function () {
1229
+ throw Error("Can not rewrite read-only method '" + name + "'");
1230
+ };
1231
+ }
1232
+ });
1233
+ };
1234
+
1235
+ /**
1236
+ * Converts an array or a delimited string into an object set with values as keys and true as values.
1237
+ * Useful for fast membership checks.
1238
+ *
1239
+ * @param {Array|string} arrayOrString - The array or string to convert.
1240
+ * @param {string} delimiter - The delimiter to use if input is a string.
1241
+ * @returns {Object} An object with keys from the array or string, values set to true.
1242
+ */
1243
+ var toObjectSet = function toObjectSet(arrayOrString, delimiter) {
1244
+ var obj = {};
1245
+ var define = function define(arr) {
1246
+ arr.forEach(function (value) {
1247
+ obj[value] = true;
1248
+ });
1249
+ };
1250
+ isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));
1251
+ return obj;
1252
+ };
1253
+ var noop = function noop() {};
1254
+ var toFiniteNumber = function toFiniteNumber(value, defaultValue) {
1255
+ return value != null && Number.isFinite(value = +value) ? value : defaultValue;
1256
+ };
1257
+
1258
+ /**
1259
+ * If the thing is a FormData object, return true, otherwise return false.
1260
+ *
1261
+ * @param {unknown} thing - The thing to check.
1262
+ *
1263
+ * @returns {boolean}
1264
+ */
1265
+ function isSpecCompliantForm(thing) {
1266
+ return !!(thing && isFunction$1(thing.append) && thing[toStringTag] === 'FormData' && thing[iterator]);
1267
+ }
1268
+
1269
+ /**
1270
+ * Recursively converts an object to a JSON-compatible object, handling circular references and Buffers.
1271
+ *
1272
+ * @param {Object} obj - The object to convert.
1273
+ * @returns {Object} The JSON-compatible object.
1274
+ */
1275
+ var toJSONObject = function toJSONObject(obj) {
1276
+ var stack = new Array(10);
1277
+ var _visit = function visit(source, i) {
1278
+ if (isObject(source)) {
1279
+ if (stack.indexOf(source) >= 0) {
1280
+ return;
1281
+ }
1282
+
1283
+ //Buffer check
1284
+ if (isBuffer(source)) {
1285
+ return source;
1286
+ }
1287
+ if (!('toJSON' in source)) {
1288
+ stack[i] = source;
1289
+ var target = isArray(source) ? [] : {};
1290
+ forEach(source, function (value, key) {
1291
+ var reducedValue = _visit(value, i + 1);
1292
+ !isUndefined(reducedValue) && (target[key] = reducedValue);
1293
+ });
1294
+ stack[i] = undefined;
1295
+ return target;
1296
+ }
1297
+ }
1298
+ return source;
1299
+ };
1300
+ return _visit(obj, 0);
1301
+ };
1302
+
1303
+ /**
1304
+ * Determines if a value is an async function.
1305
+ *
1306
+ * @param {*} thing - The value to test.
1307
+ * @returns {boolean} True if value is an async function, otherwise false.
1308
+ */
1309
+ var isAsyncFn = kindOfTest('AsyncFunction');
1310
+
1311
+ /**
1312
+ * Determines if a value is thenable (has then and catch methods).
1313
+ *
1314
+ * @param {*} thing - The value to test.
1315
+ * @returns {boolean} True if value is thenable, otherwise false.
1316
+ */
1317
+ var isThenable = function isThenable(thing) {
1318
+ return thing && (isObject(thing) || isFunction$1(thing)) && isFunction$1(thing.then) && isFunction$1(thing["catch"]);
1319
+ };
1320
+
1321
+ // original code
1322
+ // https://github.com/DigitalBrainJS/AxiosPromise/blob/16deab13710ec09779922131f3fa5954320f83ab/lib/utils.js#L11-L34
1323
+
1324
+ /**
1325
+ * Provides a cross-platform setImmediate implementation.
1326
+ * Uses native setImmediate if available, otherwise falls back to postMessage or setTimeout.
1327
+ *
1328
+ * @param {boolean} setImmediateSupported - Whether setImmediate is supported.
1329
+ * @param {boolean} postMessageSupported - Whether postMessage is supported.
1330
+ * @returns {Function} A function to schedule a callback asynchronously.
1331
+ */
1332
+ var _setImmediate = function (setImmediateSupported, postMessageSupported) {
1333
+ if (setImmediateSupported) {
1334
+ return setImmediate;
1335
+ }
1336
+ return postMessageSupported ? function (token, callbacks) {
1337
+ _global.addEventListener('message', function (_ref5) {
1338
+ var source = _ref5.source,
1339
+ data = _ref5.data;
1340
+ if (source === _global && data === token) {
1341
+ callbacks.length && callbacks.shift()();
1342
+ }
1343
+ }, false);
1344
+ return function (cb) {
1345
+ callbacks.push(cb);
1346
+ _global.postMessage(token, '*');
1347
+ };
1348
+ }("axios@".concat(Math.random()), []) : function (cb) {
1349
+ return setTimeout(cb);
1350
+ };
1351
+ }(typeof setImmediate === 'function', isFunction$1(_global.postMessage));
1352
+
1353
+ /**
1354
+ * Schedules a microtask or asynchronous callback as soon as possible.
1355
+ * Uses queueMicrotask if available, otherwise falls back to process.nextTick or _setImmediate.
1356
+ *
1357
+ * @type {Function}
1358
+ */
1359
+ var asap = typeof queueMicrotask !== 'undefined' ? queueMicrotask.bind(_global) : typeof process !== 'undefined' && process.nextTick || _setImmediate;
1360
+
1361
+ // *********************
1362
+
1363
+ var isIterable = function isIterable(thing) {
1364
+ return thing != null && isFunction$1(thing[iterator]);
1365
+ };
1366
+ var utils$1 = {
1367
+ isArray: isArray,
1368
+ isArrayBuffer: isArrayBuffer,
1369
+ isBuffer: isBuffer,
1370
+ isFormData: isFormData,
1371
+ isArrayBufferView: isArrayBufferView,
1372
+ isString: isString,
1373
+ isNumber: isNumber,
1374
+ isBoolean: isBoolean,
1375
+ isObject: isObject,
1376
+ isPlainObject: isPlainObject,
1377
+ isEmptyObject: isEmptyObject,
1378
+ isReadableStream: isReadableStream,
1379
+ isRequest: isRequest,
1380
+ isResponse: isResponse,
1381
+ isHeaders: isHeaders,
1382
+ isUndefined: isUndefined,
1383
+ isDate: isDate,
1384
+ isFile: isFile,
1385
+ isReactNativeBlob: isReactNativeBlob,
1386
+ isReactNative: isReactNative,
1387
+ isBlob: isBlob,
1388
+ isRegExp: isRegExp,
1389
+ isFunction: isFunction$1,
1390
+ isStream: isStream,
1391
+ isURLSearchParams: isURLSearchParams,
1392
+ isTypedArray: isTypedArray,
1393
+ isFileList: isFileList,
1394
+ forEach: forEach,
1395
+ merge: merge,
1396
+ extend: extend,
1397
+ trim: trim,
1398
+ stripBOM: stripBOM,
1399
+ inherits: inherits,
1400
+ toFlatObject: toFlatObject,
1401
+ kindOf: kindOf,
1402
+ kindOfTest: kindOfTest,
1403
+ endsWith: endsWith,
1404
+ toArray: toArray,
1405
+ forEachEntry: forEachEntry,
1406
+ matchAll: matchAll,
1407
+ isHTMLForm: isHTMLForm,
1408
+ hasOwnProperty: hasOwnProperty,
1409
+ hasOwnProp: hasOwnProperty,
1410
+ // an alias to avoid ESLint no-prototype-builtins detection
1411
+ reduceDescriptors: reduceDescriptors,
1412
+ freezeMethods: freezeMethods,
1413
+ toObjectSet: toObjectSet,
1414
+ toCamelCase: toCamelCase,
1415
+ noop: noop,
1416
+ toFiniteNumber: toFiniteNumber,
1417
+ findKey: findKey,
1418
+ global: _global,
1419
+ isContextDefined: isContextDefined,
1420
+ isSpecCompliantForm: isSpecCompliantForm,
1421
+ toJSONObject: toJSONObject,
1422
+ isAsyncFn: isAsyncFn,
1423
+ isThenable: isThenable,
1424
+ setImmediate: _setImmediate,
1425
+ asap: asap,
1426
+ isIterable: isIterable
1427
+ };
1428
+
1429
+ var AxiosError = /*#__PURE__*/function (_Error) {
1430
+ /**
1431
+ * Create an Error with the specified message, config, error code, request and response.
1432
+ *
1433
+ * @param {string} message The error message.
1434
+ * @param {string} [code] The error code (for example, 'ECONNABORTED').
1435
+ * @param {Object} [config] The config.
1436
+ * @param {Object} [request] The request.
1437
+ * @param {Object} [response] The response.
1438
+ *
1439
+ * @returns {Error} The created error.
1440
+ */
1441
+ function AxiosError(message, code, config, request, response) {
1442
+ var _this;
1443
+ _classCallCheck(this, AxiosError);
1444
+ _this = _callSuper(this, AxiosError, [message]);
1445
+
1446
+ // Make message enumerable to maintain backward compatibility
1447
+ // The native Error constructor sets message as non-enumerable,
1448
+ // but axios < v1.13.3 had it as enumerable
1449
+ Object.defineProperty(_this, 'message', {
1450
+ value: message,
1451
+ enumerable: true,
1452
+ writable: true,
1453
+ configurable: true
1454
+ });
1455
+ _this.name = 'AxiosError';
1456
+ _this.isAxiosError = true;
1457
+ code && (_this.code = code);
1458
+ config && (_this.config = config);
1459
+ request && (_this.request = request);
1460
+ if (response) {
1461
+ _this.response = response;
1462
+ _this.status = response.status;
1463
+ }
1464
+ return _this;
1465
+ }
1466
+ _inherits(AxiosError, _Error);
1467
+ return _createClass(AxiosError, [{
1468
+ key: "toJSON",
1469
+ value: function toJSON() {
1470
+ return {
1471
+ // Standard
1472
+ message: this.message,
1473
+ name: this.name,
1474
+ // Microsoft
1475
+ description: this.description,
1476
+ number: this.number,
1477
+ // Mozilla
1478
+ fileName: this.fileName,
1479
+ lineNumber: this.lineNumber,
1480
+ columnNumber: this.columnNumber,
1481
+ stack: this.stack,
1482
+ // Axios
1483
+ config: utils$1.toJSONObject(this.config),
1484
+ code: this.code,
1485
+ status: this.status
1486
+ };
1487
+ }
1488
+ }], [{
1489
+ key: "from",
1490
+ value: function from(error, code, config, request, response, customProps) {
1491
+ var axiosError = new AxiosError(error.message, code || error.code, config, request, response);
1492
+ axiosError.cause = error;
1493
+ axiosError.name = error.name;
1494
+
1495
+ // Preserve status from the original error if not already set from response
1496
+ if (error.status != null && axiosError.status == null) {
1497
+ axiosError.status = error.status;
1498
+ }
1499
+ customProps && Object.assign(axiosError, customProps);
1500
+ return axiosError;
1501
+ }
1502
+ }]);
1503
+ }(/*#__PURE__*/_wrapNativeSuper(Error)); // This can be changed to static properties as soon as the parser options in .eslint.cjs are updated.
1504
+ AxiosError.ERR_BAD_OPTION_VALUE = 'ERR_BAD_OPTION_VALUE';
1505
+ AxiosError.ERR_BAD_OPTION = 'ERR_BAD_OPTION';
1506
+ AxiosError.ECONNABORTED = 'ECONNABORTED';
1507
+ AxiosError.ETIMEDOUT = 'ETIMEDOUT';
1508
+ AxiosError.ERR_NETWORK = 'ERR_NETWORK';
1509
+ AxiosError.ERR_FR_TOO_MANY_REDIRECTS = 'ERR_FR_TOO_MANY_REDIRECTS';
1510
+ AxiosError.ERR_DEPRECATED = 'ERR_DEPRECATED';
1511
+ AxiosError.ERR_BAD_RESPONSE = 'ERR_BAD_RESPONSE';
1512
+ AxiosError.ERR_BAD_REQUEST = 'ERR_BAD_REQUEST';
1513
+ AxiosError.ERR_CANCELED = 'ERR_CANCELED';
1514
+ AxiosError.ERR_NOT_SUPPORT = 'ERR_NOT_SUPPORT';
1515
+ AxiosError.ERR_INVALID_URL = 'ERR_INVALID_URL';
1516
+
1517
+ // eslint-disable-next-line strict
1518
+ var httpAdapter = null;
1519
+
1520
+ /**
1521
+ * Determines if the given thing is a array or js object.
1522
+ *
1523
+ * @param {string} thing - The object or array to be visited.
1524
+ *
1525
+ * @returns {boolean}
1526
+ */
1527
+ function isVisitable(thing) {
1528
+ return utils$1.isPlainObject(thing) || utils$1.isArray(thing);
1529
+ }
1530
+
1531
+ /**
1532
+ * It removes the brackets from the end of a string
1533
+ *
1534
+ * @param {string} key - The key of the parameter.
1535
+ *
1536
+ * @returns {string} the key without the brackets.
1537
+ */
1538
+ function removeBrackets(key) {
1539
+ return utils$1.endsWith(key, '[]') ? key.slice(0, -2) : key;
1540
+ }
1541
+
1542
+ /**
1543
+ * It takes a path, a key, and a boolean, and returns a string
1544
+ *
1545
+ * @param {string} path - The path to the current key.
1546
+ * @param {string} key - The key of the current object being iterated over.
1547
+ * @param {string} dots - If true, the key will be rendered with dots instead of brackets.
1548
+ *
1549
+ * @returns {string} The path to the current key.
1550
+ */
1551
+ function renderKey(path, key, dots) {
1552
+ if (!path) return key;
1553
+ return path.concat(key).map(function each(token, i) {
1554
+ // eslint-disable-next-line no-param-reassign
1555
+ token = removeBrackets(token);
1556
+ return !dots && i ? '[' + token + ']' : token;
1557
+ }).join(dots ? '.' : '');
1558
+ }
1559
+
1560
+ /**
1561
+ * If the array is an array and none of its elements are visitable, then it's a flat array.
1562
+ *
1563
+ * @param {Array<any>} arr - The array to check
1564
+ *
1565
+ * @returns {boolean}
1566
+ */
1567
+ function isFlatArray(arr) {
1568
+ return utils$1.isArray(arr) && !arr.some(isVisitable);
1569
+ }
1570
+ var predicates = utils$1.toFlatObject(utils$1, {}, null, function filter(prop) {
1571
+ return /^is[A-Z]/.test(prop);
1572
+ });
1573
+
1574
+ /**
1575
+ * Convert a data object to FormData
1576
+ *
1577
+ * @param {Object} obj
1578
+ * @param {?Object} [formData]
1579
+ * @param {?Object} [options]
1580
+ * @param {Function} [options.visitor]
1581
+ * @param {Boolean} [options.metaTokens = true]
1582
+ * @param {Boolean} [options.dots = false]
1583
+ * @param {?Boolean} [options.indexes = false]
1584
+ *
1585
+ * @returns {Object}
1586
+ **/
1587
+
1588
+ /**
1589
+ * It converts an object into a FormData object
1590
+ *
1591
+ * @param {Object<any, any>} obj - The object to convert to form data.
1592
+ * @param {string} formData - The FormData object to append to.
1593
+ * @param {Object<string, any>} options
1594
+ *
1595
+ * @returns
1596
+ */
1597
+ function toFormData(obj, formData, options) {
1598
+ if (!utils$1.isObject(obj)) {
1599
+ throw new TypeError('target must be an object');
1600
+ }
1601
+
1602
+ // eslint-disable-next-line no-param-reassign
1603
+ formData = formData || new (FormData)();
1604
+
1605
+ // eslint-disable-next-line no-param-reassign
1606
+ options = utils$1.toFlatObject(options, {
1607
+ metaTokens: true,
1608
+ dots: false,
1609
+ indexes: false
1610
+ }, false, function defined(option, source) {
1611
+ // eslint-disable-next-line no-eq-null,eqeqeq
1612
+ return !utils$1.isUndefined(source[option]);
1613
+ });
1614
+ var metaTokens = options.metaTokens;
1615
+ // eslint-disable-next-line no-use-before-define
1616
+ var visitor = options.visitor || defaultVisitor;
1617
+ var dots = options.dots;
1618
+ var indexes = options.indexes;
1619
+ var _Blob = options.Blob || typeof Blob !== 'undefined' && Blob;
1620
+ var useBlob = _Blob && utils$1.isSpecCompliantForm(formData);
1621
+ if (!utils$1.isFunction(visitor)) {
1622
+ throw new TypeError('visitor must be a function');
1623
+ }
1624
+ function convertValue(value) {
1625
+ if (value === null) return '';
1626
+ if (utils$1.isDate(value)) {
1627
+ return value.toISOString();
1628
+ }
1629
+ if (utils$1.isBoolean(value)) {
1630
+ return value.toString();
1631
+ }
1632
+ if (!useBlob && utils$1.isBlob(value)) {
1633
+ throw new AxiosError('Blob is not supported. Use a Buffer instead.');
1634
+ }
1635
+ if (utils$1.isArrayBuffer(value) || utils$1.isTypedArray(value)) {
1636
+ return useBlob && typeof Blob === 'function' ? new Blob([value]) : Buffer.from(value);
1637
+ }
1638
+ return value;
1639
+ }
1640
+
1641
+ /**
1642
+ * Default visitor.
1643
+ *
1644
+ * @param {*} value
1645
+ * @param {String|Number} key
1646
+ * @param {Array<String|Number>} path
1647
+ * @this {FormData}
1648
+ *
1649
+ * @returns {boolean} return true to visit the each prop of the value recursively
1650
+ */
1651
+ function defaultVisitor(value, key, path) {
1652
+ var arr = value;
1653
+ if (utils$1.isReactNative(formData) && utils$1.isReactNativeBlob(value)) {
1654
+ formData.append(renderKey(path, key, dots), convertValue(value));
1655
+ return false;
1656
+ }
1657
+ if (value && !path && _typeof(value) === 'object') {
1658
+ if (utils$1.endsWith(key, '{}')) {
1659
+ // eslint-disable-next-line no-param-reassign
1660
+ key = metaTokens ? key : key.slice(0, -2);
1661
+ // eslint-disable-next-line no-param-reassign
1662
+ value = JSON.stringify(value);
1663
+ } else if (utils$1.isArray(value) && isFlatArray(value) || (utils$1.isFileList(value) || utils$1.endsWith(key, '[]')) && (arr = utils$1.toArray(value))) {
1664
+ // eslint-disable-next-line no-param-reassign
1665
+ key = removeBrackets(key);
1666
+ arr.forEach(function each(el, index) {
1667
+ !(utils$1.isUndefined(el) || el === null) && formData.append(
1668
+ // eslint-disable-next-line no-nested-ternary
1669
+ indexes === true ? renderKey([key], index, dots) : indexes === null ? key : key + '[]', convertValue(el));
1670
+ });
1671
+ return false;
1672
+ }
1673
+ }
1674
+ if (isVisitable(value)) {
1675
+ return true;
1676
+ }
1677
+ formData.append(renderKey(path, key, dots), convertValue(value));
1678
+ return false;
1679
+ }
1680
+ var stack = [];
1681
+ var exposedHelpers = Object.assign(predicates, {
1682
+ defaultVisitor: defaultVisitor,
1683
+ convertValue: convertValue,
1684
+ isVisitable: isVisitable
1685
+ });
1686
+ function build(value, path) {
1687
+ if (utils$1.isUndefined(value)) return;
1688
+ if (stack.indexOf(value) !== -1) {
1689
+ throw Error('Circular reference detected in ' + path.join('.'));
1690
+ }
1691
+ stack.push(value);
1692
+ utils$1.forEach(value, function each(el, key) {
1693
+ var result = !(utils$1.isUndefined(el) || el === null) && visitor.call(formData, el, utils$1.isString(key) ? key.trim() : key, path, exposedHelpers);
1694
+ if (result === true) {
1695
+ build(el, path ? path.concat(key) : [key]);
1696
+ }
1697
+ });
1698
+ stack.pop();
1699
+ }
1700
+ if (!utils$1.isObject(obj)) {
1701
+ throw new TypeError('data must be an object');
1702
+ }
1703
+ build(obj);
1704
+ return formData;
1705
+ }
1706
+
1707
+ /**
1708
+ * It encodes a string by replacing all characters that are not in the unreserved set with
1709
+ * their percent-encoded equivalents
1710
+ *
1711
+ * @param {string} str - The string to encode.
1712
+ *
1713
+ * @returns {string} The encoded string.
1714
+ */
1715
+ function encode$1(str) {
1716
+ var charMap = {
1717
+ '!': '%21',
1718
+ "'": '%27',
1719
+ '(': '%28',
1720
+ ')': '%29',
1721
+ '~': '%7E',
1722
+ '%20': '+',
1723
+ '%00': '\x00'
1724
+ };
1725
+ return encodeURIComponent(str).replace(/[!'()~]|%20|%00/g, function replacer(match) {
1726
+ return charMap[match];
1727
+ });
1728
+ }
1729
+
1730
+ /**
1731
+ * It takes a params object and converts it to a FormData object
1732
+ *
1733
+ * @param {Object<string, any>} params - The parameters to be converted to a FormData object.
1734
+ * @param {Object<string, any>} options - The options object passed to the Axios constructor.
1735
+ *
1736
+ * @returns {void}
1737
+ */
1738
+ function AxiosURLSearchParams(params, options) {
1739
+ this._pairs = [];
1740
+ params && toFormData(params, this, options);
1741
+ }
1742
+ var prototype = AxiosURLSearchParams.prototype;
1743
+ prototype.append = function append(name, value) {
1744
+ this._pairs.push([name, value]);
1745
+ };
1746
+ prototype.toString = function toString(encoder) {
1747
+ var _encode = encoder ? function (value) {
1748
+ return encoder.call(this, value, encode$1);
1749
+ } : encode$1;
1750
+ return this._pairs.map(function each(pair) {
1751
+ return _encode(pair[0]) + '=' + _encode(pair[1]);
1752
+ }, '').join('&');
1753
+ };
1754
+
1755
+ /**
1756
+ * It replaces URL-encoded forms of `:`, `$`, `,`, and spaces with
1757
+ * their plain counterparts (`:`, `$`, `,`, `+`).
1758
+ *
1759
+ * @param {string} val The value to be encoded.
1760
+ *
1761
+ * @returns {string} The encoded value.
1762
+ */
1763
+ function encode(val) {
1764
+ return encodeURIComponent(val).replace(/%3A/gi, ':').replace(/%24/g, '$').replace(/%2C/gi, ',').replace(/%20/g, '+');
1765
+ }
1766
+
1767
+ /**
1768
+ * Build a URL by appending params to the end
1769
+ *
1770
+ * @param {string} url The base of the url (e.g., http://www.google.com)
1771
+ * @param {object} [params] The params to be appended
1772
+ * @param {?(object|Function)} options
1773
+ *
1774
+ * @returns {string} The formatted url
1775
+ */
1776
+ function buildURL(url, params, options) {
1777
+ if (!params) {
1778
+ return url;
1779
+ }
1780
+ var _encode = options && options.encode || encode;
1781
+ var _options = utils$1.isFunction(options) ? {
1782
+ serialize: options
1783
+ } : options;
1784
+ var serializeFn = _options && _options.serialize;
1785
+ var serializedParams;
1786
+ if (serializeFn) {
1787
+ serializedParams = serializeFn(params, _options);
1788
+ } else {
1789
+ serializedParams = utils$1.isURLSearchParams(params) ? params.toString() : new AxiosURLSearchParams(params, _options).toString(_encode);
1790
+ }
1791
+ if (serializedParams) {
1792
+ var hashmarkIndex = url.indexOf('#');
1793
+ if (hashmarkIndex !== -1) {
1794
+ url = url.slice(0, hashmarkIndex);
1795
+ }
1796
+ url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;
1797
+ }
1798
+ return url;
1799
+ }
1800
+
1801
+ var InterceptorManager = /*#__PURE__*/function () {
1802
+ function InterceptorManager() {
1803
+ _classCallCheck(this, InterceptorManager);
1804
+ this.handlers = [];
1805
+ }
1806
+
1807
+ /**
1808
+ * Add a new interceptor to the stack
1809
+ *
1810
+ * @param {Function} fulfilled The function to handle `then` for a `Promise`
1811
+ * @param {Function} rejected The function to handle `reject` for a `Promise`
1812
+ * @param {Object} options The options for the interceptor, synchronous and runWhen
1813
+ *
1814
+ * @return {Number} An ID used to remove interceptor later
1815
+ */
1816
+ return _createClass(InterceptorManager, [{
1817
+ key: "use",
1818
+ value: function use(fulfilled, rejected, options) {
1819
+ this.handlers.push({
1820
+ fulfilled: fulfilled,
1821
+ rejected: rejected,
1822
+ synchronous: options ? options.synchronous : false,
1823
+ runWhen: options ? options.runWhen : null
1824
+ });
1825
+ return this.handlers.length - 1;
1826
+ }
1827
+
1828
+ /**
1829
+ * Remove an interceptor from the stack
1830
+ *
1831
+ * @param {Number} id The ID that was returned by `use`
1832
+ *
1833
+ * @returns {void}
1834
+ */
1835
+ }, {
1836
+ key: "eject",
1837
+ value: function eject(id) {
1838
+ if (this.handlers[id]) {
1839
+ this.handlers[id] = null;
1840
+ }
1841
+ }
1842
+
1843
+ /**
1844
+ * Clear all interceptors from the stack
1845
+ *
1846
+ * @returns {void}
1847
+ */
1848
+ }, {
1849
+ key: "clear",
1850
+ value: function clear() {
1851
+ if (this.handlers) {
1852
+ this.handlers = [];
1853
+ }
1854
+ }
1855
+
1856
+ /**
1857
+ * Iterate over all the registered interceptors
1858
+ *
1859
+ * This method is particularly useful for skipping over any
1860
+ * interceptors that may have become `null` calling `eject`.
1861
+ *
1862
+ * @param {Function} fn The function to call for each interceptor
1863
+ *
1864
+ * @returns {void}
1865
+ */
1866
+ }, {
1867
+ key: "forEach",
1868
+ value: function forEach(fn) {
1869
+ utils$1.forEach(this.handlers, function forEachHandler(h) {
1870
+ if (h !== null) {
1871
+ fn(h);
1872
+ }
1873
+ });
1874
+ }
1875
+ }]);
1876
+ }();
1877
+
1878
+ var transitionalDefaults = {
1879
+ silentJSONParsing: true,
1880
+ forcedJSONParsing: true,
1881
+ clarifyTimeoutError: false,
1882
+ legacyInterceptorReqResOrdering: true
1883
+ };
1884
+
1885
+ var URLSearchParams$1 = typeof URLSearchParams !== 'undefined' ? URLSearchParams : AxiosURLSearchParams;
1886
+
1887
+ var FormData$1 = typeof FormData !== 'undefined' ? FormData : null;
1888
+
1889
+ var Blob$1 = typeof Blob !== 'undefined' ? Blob : null;
1890
+
1891
+ var platform$1 = {
1892
+ isBrowser: true,
1893
+ classes: {
1894
+ URLSearchParams: URLSearchParams$1,
1895
+ FormData: FormData$1,
1896
+ Blob: Blob$1
1897
+ },
1898
+ protocols: ['http', 'https', 'file', 'blob', 'url', 'data']
1899
+ };
1900
+
1901
+ var hasBrowserEnv = typeof window !== 'undefined' && typeof document !== 'undefined';
1902
+ var _navigator = (typeof navigator === "undefined" ? "undefined" : _typeof(navigator)) === 'object' && navigator || undefined;
1903
+
1904
+ /**
1905
+ * Determine if we're running in a standard browser environment
1906
+ *
1907
+ * This allows axios to run in a web worker, and react-native.
1908
+ * Both environments support XMLHttpRequest, but not fully standard globals.
1909
+ *
1910
+ * web workers:
1911
+ * typeof window -> undefined
1912
+ * typeof document -> undefined
1913
+ *
1914
+ * react-native:
1915
+ * navigator.product -> 'ReactNative'
1916
+ * nativescript
1917
+ * navigator.product -> 'NativeScript' or 'NS'
1918
+ *
1919
+ * @returns {boolean}
1920
+ */
1921
+ var hasStandardBrowserEnv = hasBrowserEnv && (!_navigator || ['ReactNative', 'NativeScript', 'NS'].indexOf(_navigator.product) < 0);
1922
+
1923
+ /**
1924
+ * Determine if we're running in a standard browser webWorker environment
1925
+ *
1926
+ * Although the `isStandardBrowserEnv` method indicates that
1927
+ * `allows axios to run in a web worker`, the WebWorker will still be
1928
+ * filtered out due to its judgment standard
1929
+ * `typeof window !== 'undefined' && typeof document !== 'undefined'`.
1930
+ * This leads to a problem when axios post `FormData` in webWorker
1931
+ */
1932
+ var hasStandardBrowserWebWorkerEnv = function () {
1933
+ return typeof WorkerGlobalScope !== 'undefined' &&
1934
+ // eslint-disable-next-line no-undef
1935
+ self instanceof WorkerGlobalScope && typeof self.importScripts === 'function';
1936
+ }();
1937
+ var origin = hasBrowserEnv && window.location.href || 'http://localhost';
1938
+
1939
+ var utils = /*#__PURE__*/Object.freeze({
1940
+ __proto__: null,
1941
+ hasBrowserEnv: hasBrowserEnv,
1942
+ hasStandardBrowserEnv: hasStandardBrowserEnv,
1943
+ hasStandardBrowserWebWorkerEnv: hasStandardBrowserWebWorkerEnv,
1944
+ navigator: _navigator,
1945
+ origin: origin
1946
+ });
1947
+
1948
+ var platform = _objectSpread2(_objectSpread2({}, utils), platform$1);
1949
+
1950
+ function toURLEncodedForm(data, options) {
1951
+ return toFormData(data, new platform.classes.URLSearchParams(), _objectSpread2({
1952
+ visitor: function visitor(value, key, path, helpers) {
1953
+ if (platform.isNode && utils$1.isBuffer(value)) {
1954
+ this.append(key, value.toString('base64'));
1955
+ return false;
1956
+ }
1957
+ return helpers.defaultVisitor.apply(this, arguments);
1958
+ }
1959
+ }, options));
1960
+ }
1961
+
1962
+ /**
1963
+ * It takes a string like `foo[x][y][z]` and returns an array like `['foo', 'x', 'y', 'z']
1964
+ *
1965
+ * @param {string} name - The name of the property to get.
1966
+ *
1967
+ * @returns An array of strings.
1968
+ */
1969
+ function parsePropPath(name) {
1970
+ // foo[x][y][z]
1971
+ // foo.x.y.z
1972
+ // foo-x-y-z
1973
+ // foo x y z
1974
+ return utils$1.matchAll(/\w+|\[(\w*)]/g, name).map(function (match) {
1975
+ return match[0] === '[]' ? '' : match[1] || match[0];
1976
+ });
1977
+ }
1978
+
1979
+ /**
1980
+ * Convert an array to an object.
1981
+ *
1982
+ * @param {Array<any>} arr - The array to convert to an object.
1983
+ *
1984
+ * @returns An object with the same keys and values as the array.
1985
+ */
1986
+ function arrayToObject(arr) {
1987
+ var obj = {};
1988
+ var keys = Object.keys(arr);
1989
+ var i;
1990
+ var len = keys.length;
1991
+ var key;
1992
+ for (i = 0; i < len; i++) {
1993
+ key = keys[i];
1994
+ obj[key] = arr[key];
1995
+ }
1996
+ return obj;
1997
+ }
1998
+
1999
+ /**
2000
+ * It takes a FormData object and returns a JavaScript object
2001
+ *
2002
+ * @param {string} formData The FormData object to convert to JSON.
2003
+ *
2004
+ * @returns {Object<string, any> | null} The converted object.
2005
+ */
2006
+ function formDataToJSON(formData) {
2007
+ function buildPath(path, value, target, index) {
2008
+ var name = path[index++];
2009
+ if (name === '__proto__') return true;
2010
+ var isNumericKey = Number.isFinite(+name);
2011
+ var isLast = index >= path.length;
2012
+ name = !name && utils$1.isArray(target) ? target.length : name;
2013
+ if (isLast) {
2014
+ if (utils$1.hasOwnProp(target, name)) {
2015
+ target[name] = [target[name], value];
2016
+ } else {
2017
+ target[name] = value;
2018
+ }
2019
+ return !isNumericKey;
2020
+ }
2021
+ if (!target[name] || !utils$1.isObject(target[name])) {
2022
+ target[name] = [];
2023
+ }
2024
+ var result = buildPath(path, value, target[name], index);
2025
+ if (result && utils$1.isArray(target[name])) {
2026
+ target[name] = arrayToObject(target[name]);
2027
+ }
2028
+ return !isNumericKey;
2029
+ }
2030
+ if (utils$1.isFormData(formData) && utils$1.isFunction(formData.entries)) {
2031
+ var obj = {};
2032
+ utils$1.forEachEntry(formData, function (name, value) {
2033
+ buildPath(parsePropPath(name), value, obj, 0);
2034
+ });
2035
+ return obj;
2036
+ }
2037
+ return null;
2038
+ }
2039
+
2040
+ /**
2041
+ * It takes a string, tries to parse it, and if it fails, it returns the stringified version
2042
+ * of the input
2043
+ *
2044
+ * @param {any} rawValue - The value to be stringified.
2045
+ * @param {Function} parser - A function that parses a string into a JavaScript object.
2046
+ * @param {Function} encoder - A function that takes a value and returns a string.
2047
+ *
2048
+ * @returns {string} A stringified version of the rawValue.
2049
+ */
2050
+ function stringifySafely(rawValue, parser, encoder) {
2051
+ if (utils$1.isString(rawValue)) {
2052
+ try {
2053
+ (parser || JSON.parse)(rawValue);
2054
+ return utils$1.trim(rawValue);
2055
+ } catch (e) {
2056
+ if (e.name !== 'SyntaxError') {
2057
+ throw e;
2058
+ }
2059
+ }
2060
+ }
2061
+ return (encoder || JSON.stringify)(rawValue);
2062
+ }
2063
+ var defaults = {
2064
+ transitional: transitionalDefaults,
2065
+ adapter: ['xhr', 'http', 'fetch'],
2066
+ transformRequest: [function transformRequest(data, headers) {
2067
+ var contentType = headers.getContentType() || '';
2068
+ var hasJSONContentType = contentType.indexOf('application/json') > -1;
2069
+ var isObjectPayload = utils$1.isObject(data);
2070
+ if (isObjectPayload && utils$1.isHTMLForm(data)) {
2071
+ data = new FormData(data);
2072
+ }
2073
+ var isFormData = utils$1.isFormData(data);
2074
+ if (isFormData) {
2075
+ return hasJSONContentType ? JSON.stringify(formDataToJSON(data)) : data;
2076
+ }
2077
+ if (utils$1.isArrayBuffer(data) || utils$1.isBuffer(data) || utils$1.isStream(data) || utils$1.isFile(data) || utils$1.isBlob(data) || utils$1.isReadableStream(data)) {
2078
+ return data;
2079
+ }
2080
+ if (utils$1.isArrayBufferView(data)) {
2081
+ return data.buffer;
2082
+ }
2083
+ if (utils$1.isURLSearchParams(data)) {
2084
+ headers.setContentType('application/x-www-form-urlencoded;charset=utf-8', false);
2085
+ return data.toString();
2086
+ }
2087
+ var isFileList;
2088
+ if (isObjectPayload) {
2089
+ if (contentType.indexOf('application/x-www-form-urlencoded') > -1) {
2090
+ return toURLEncodedForm(data, this.formSerializer).toString();
2091
+ }
2092
+ if ((isFileList = utils$1.isFileList(data)) || contentType.indexOf('multipart/form-data') > -1) {
2093
+ var _FormData = this.env && this.env.FormData;
2094
+ return toFormData(isFileList ? {
2095
+ 'files[]': data
2096
+ } : data, _FormData && new _FormData(), this.formSerializer);
2097
+ }
2098
+ }
2099
+ if (isObjectPayload || hasJSONContentType) {
2100
+ headers.setContentType('application/json', false);
2101
+ return stringifySafely(data);
2102
+ }
2103
+ return data;
2104
+ }],
2105
+ transformResponse: [function transformResponse(data) {
2106
+ var transitional = this.transitional || defaults.transitional;
2107
+ var forcedJSONParsing = transitional && transitional.forcedJSONParsing;
2108
+ var JSONRequested = this.responseType === 'json';
2109
+ if (utils$1.isResponse(data) || utils$1.isReadableStream(data)) {
2110
+ return data;
2111
+ }
2112
+ if (data && utils$1.isString(data) && (forcedJSONParsing && !this.responseType || JSONRequested)) {
2113
+ var silentJSONParsing = transitional && transitional.silentJSONParsing;
2114
+ var strictJSONParsing = !silentJSONParsing && JSONRequested;
2115
+ try {
2116
+ return JSON.parse(data, this.parseReviver);
2117
+ } catch (e) {
2118
+ if (strictJSONParsing) {
2119
+ if (e.name === 'SyntaxError') {
2120
+ throw AxiosError.from(e, AxiosError.ERR_BAD_RESPONSE, this, null, this.response);
2121
+ }
2122
+ throw e;
2123
+ }
2124
+ }
2125
+ }
2126
+ return data;
2127
+ }],
2128
+ /**
2129
+ * A timeout in milliseconds to abort a request. If set to 0 (default) a
2130
+ * timeout is not created.
2131
+ */
2132
+ timeout: 0,
2133
+ xsrfCookieName: 'XSRF-TOKEN',
2134
+ xsrfHeaderName: 'X-XSRF-TOKEN',
2135
+ maxContentLength: -1,
2136
+ maxBodyLength: -1,
2137
+ env: {
2138
+ FormData: platform.classes.FormData,
2139
+ Blob: platform.classes.Blob
2140
+ },
2141
+ validateStatus: function validateStatus(status) {
2142
+ return status >= 200 && status < 300;
2143
+ },
2144
+ headers: {
2145
+ common: {
2146
+ Accept: 'application/json, text/plain, */*',
2147
+ 'Content-Type': undefined
2148
+ }
2149
+ }
2150
+ };
2151
+ utils$1.forEach(['delete', 'get', 'head', 'post', 'put', 'patch'], function (method) {
2152
+ defaults.headers[method] = {};
2153
+ });
2154
+
2155
+ // RawAxiosHeaders whose duplicates are ignored by node
2156
+ // c.f. https://nodejs.org/api/http.html#http_message_headers
2157
+ var ignoreDuplicateOf = utils$1.toObjectSet(['age', 'authorization', 'content-length', 'content-type', 'etag', 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since', 'last-modified', 'location', 'max-forwards', 'proxy-authorization', 'referer', 'retry-after', 'user-agent']);
2158
+
2159
+ /**
2160
+ * Parse headers into an object
2161
+ *
2162
+ * ```
2163
+ * Date: Wed, 27 Aug 2014 08:58:49 GMT
2164
+ * Content-Type: application/json
2165
+ * Connection: keep-alive
2166
+ * Transfer-Encoding: chunked
2167
+ * ```
2168
+ *
2169
+ * @param {String} rawHeaders Headers needing to be parsed
2170
+ *
2171
+ * @returns {Object} Headers parsed into an object
2172
+ */
2173
+ var parseHeaders = (function (rawHeaders) {
2174
+ var parsed = {};
2175
+ var key;
2176
+ var val;
2177
+ var i;
2178
+ rawHeaders && rawHeaders.split('\n').forEach(function parser(line) {
2179
+ i = line.indexOf(':');
2180
+ key = line.substring(0, i).trim().toLowerCase();
2181
+ val = line.substring(i + 1).trim();
2182
+ if (!key || parsed[key] && ignoreDuplicateOf[key]) {
2183
+ return;
2184
+ }
2185
+ if (key === 'set-cookie') {
2186
+ if (parsed[key]) {
2187
+ parsed[key].push(val);
2188
+ } else {
2189
+ parsed[key] = [val];
2190
+ }
2191
+ } else {
2192
+ parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;
2193
+ }
2194
+ });
2195
+ return parsed;
2196
+ });
2197
+
2198
+ var $internals = Symbol('internals');
2199
+ function normalizeHeader(header) {
2200
+ return header && String(header).trim().toLowerCase();
2201
+ }
2202
+ function normalizeValue(value) {
2203
+ if (value === false || value == null) {
2204
+ return value;
2205
+ }
2206
+ return utils$1.isArray(value) ? value.map(normalizeValue) : String(value).replace(/[\r\n]+$/, '');
2207
+ }
2208
+ function parseTokens(str) {
2209
+ var tokens = Object.create(null);
2210
+ var tokensRE = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
2211
+ var match;
2212
+ while (match = tokensRE.exec(str)) {
2213
+ tokens[match[1]] = match[2];
2214
+ }
2215
+ return tokens;
2216
+ }
2217
+ var isValidHeaderName = function isValidHeaderName(str) {
2218
+ return /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim());
2219
+ };
2220
+ function matchHeaderValue(context, value, header, filter, isHeaderNameFilter) {
2221
+ if (utils$1.isFunction(filter)) {
2222
+ return filter.call(this, value, header);
2223
+ }
2224
+ if (isHeaderNameFilter) {
2225
+ value = header;
2226
+ }
2227
+ if (!utils$1.isString(value)) return;
2228
+ if (utils$1.isString(filter)) {
2229
+ return value.indexOf(filter) !== -1;
2230
+ }
2231
+ if (utils$1.isRegExp(filter)) {
2232
+ return filter.test(value);
2233
+ }
2234
+ }
2235
+ function formatHeader(header) {
2236
+ return header.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, function (w, _char, str) {
2237
+ return _char.toUpperCase() + str;
2238
+ });
2239
+ }
2240
+ function buildAccessors(obj, header) {
2241
+ var accessorName = utils$1.toCamelCase(' ' + header);
2242
+ ['get', 'set', 'has'].forEach(function (methodName) {
2243
+ Object.defineProperty(obj, methodName + accessorName, {
2244
+ value: function value(arg1, arg2, arg3) {
2245
+ return this[methodName].call(this, header, arg1, arg2, arg3);
2246
+ },
2247
+ configurable: true
2248
+ });
2249
+ });
2250
+ }
2251
+ var AxiosHeaders = /*#__PURE__*/function () {
2252
+ function AxiosHeaders(headers) {
2253
+ _classCallCheck(this, AxiosHeaders);
2254
+ headers && this.set(headers);
2255
+ }
2256
+ return _createClass(AxiosHeaders, [{
2257
+ key: "set",
2258
+ value: function set(header, valueOrRewrite, rewrite) {
2259
+ var self = this;
2260
+ function setHeader(_value, _header, _rewrite) {
2261
+ var lHeader = normalizeHeader(_header);
2262
+ if (!lHeader) {
2263
+ throw new Error('header name must be a non-empty string');
2264
+ }
2265
+ var key = utils$1.findKey(self, lHeader);
2266
+ if (!key || self[key] === undefined || _rewrite === true || _rewrite === undefined && self[key] !== false) {
2267
+ self[key || _header] = normalizeValue(_value);
2268
+ }
2269
+ }
2270
+ var setHeaders = function setHeaders(headers, _rewrite) {
2271
+ return utils$1.forEach(headers, function (_value, _header) {
2272
+ return setHeader(_value, _header, _rewrite);
2273
+ });
2274
+ };
2275
+ if (utils$1.isPlainObject(header) || header instanceof this.constructor) {
2276
+ setHeaders(header, valueOrRewrite);
2277
+ } else if (utils$1.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {
2278
+ setHeaders(parseHeaders(header), valueOrRewrite);
2279
+ } else if (utils$1.isObject(header) && utils$1.isIterable(header)) {
2280
+ var obj = {},
2281
+ dest,
2282
+ key;
2283
+ var _iterator = _createForOfIteratorHelper(header),
2284
+ _step;
2285
+ try {
2286
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
2287
+ var entry = _step.value;
2288
+ if (!utils$1.isArray(entry)) {
2289
+ throw TypeError('Object iterator must return a key-value pair');
2290
+ }
2291
+ obj[key = entry[0]] = (dest = obj[key]) ? utils$1.isArray(dest) ? [].concat(_toConsumableArray(dest), [entry[1]]) : [dest, entry[1]] : entry[1];
2292
+ }
2293
+ } catch (err) {
2294
+ _iterator.e(err);
2295
+ } finally {
2296
+ _iterator.f();
2297
+ }
2298
+ setHeaders(obj, valueOrRewrite);
2299
+ } else {
2300
+ header != null && setHeader(valueOrRewrite, header, rewrite);
2301
+ }
2302
+ return this;
2303
+ }
2304
+ }, {
2305
+ key: "get",
2306
+ value: function get(header, parser) {
2307
+ header = normalizeHeader(header);
2308
+ if (header) {
2309
+ var key = utils$1.findKey(this, header);
2310
+ if (key) {
2311
+ var value = this[key];
2312
+ if (!parser) {
2313
+ return value;
2314
+ }
2315
+ if (parser === true) {
2316
+ return parseTokens(value);
2317
+ }
2318
+ if (utils$1.isFunction(parser)) {
2319
+ return parser.call(this, value, key);
2320
+ }
2321
+ if (utils$1.isRegExp(parser)) {
2322
+ return parser.exec(value);
2323
+ }
2324
+ throw new TypeError('parser must be boolean|regexp|function');
2325
+ }
2326
+ }
2327
+ }
2328
+ }, {
2329
+ key: "has",
2330
+ value: function has(header, matcher) {
2331
+ header = normalizeHeader(header);
2332
+ if (header) {
2333
+ var key = utils$1.findKey(this, header);
2334
+ return !!(key && this[key] !== undefined && (!matcher || matchHeaderValue(this, this[key], key, matcher)));
2335
+ }
2336
+ return false;
2337
+ }
2338
+ }, {
2339
+ key: "delete",
2340
+ value: function _delete(header, matcher) {
2341
+ var self = this;
2342
+ var deleted = false;
2343
+ function deleteHeader(_header) {
2344
+ _header = normalizeHeader(_header);
2345
+ if (_header) {
2346
+ var key = utils$1.findKey(self, _header);
2347
+ if (key && (!matcher || matchHeaderValue(self, self[key], key, matcher))) {
2348
+ delete self[key];
2349
+ deleted = true;
2350
+ }
2351
+ }
2352
+ }
2353
+ if (utils$1.isArray(header)) {
2354
+ header.forEach(deleteHeader);
2355
+ } else {
2356
+ deleteHeader(header);
2357
+ }
2358
+ return deleted;
2359
+ }
2360
+ }, {
2361
+ key: "clear",
2362
+ value: function clear(matcher) {
2363
+ var keys = Object.keys(this);
2364
+ var i = keys.length;
2365
+ var deleted = false;
2366
+ while (i--) {
2367
+ var key = keys[i];
2368
+ if (!matcher || matchHeaderValue(this, this[key], key, matcher, true)) {
2369
+ delete this[key];
2370
+ deleted = true;
2371
+ }
2372
+ }
2373
+ return deleted;
2374
+ }
2375
+ }, {
2376
+ key: "normalize",
2377
+ value: function normalize(format) {
2378
+ var self = this;
2379
+ var headers = {};
2380
+ utils$1.forEach(this, function (value, header) {
2381
+ var key = utils$1.findKey(headers, header);
2382
+ if (key) {
2383
+ self[key] = normalizeValue(value);
2384
+ delete self[header];
2385
+ return;
2386
+ }
2387
+ var normalized = format ? formatHeader(header) : String(header).trim();
2388
+ if (normalized !== header) {
2389
+ delete self[header];
2390
+ }
2391
+ self[normalized] = normalizeValue(value);
2392
+ headers[normalized] = true;
2393
+ });
2394
+ return this;
2395
+ }
2396
+ }, {
2397
+ key: "concat",
2398
+ value: function concat() {
2399
+ var _this$constructor;
2400
+ for (var _len = arguments.length, targets = new Array(_len), _key = 0; _key < _len; _key++) {
2401
+ targets[_key] = arguments[_key];
2402
+ }
2403
+ return (_this$constructor = this.constructor).concat.apply(_this$constructor, [this].concat(targets));
2404
+ }
2405
+ }, {
2406
+ key: "toJSON",
2407
+ value: function toJSON(asStrings) {
2408
+ var obj = Object.create(null);
2409
+ utils$1.forEach(this, function (value, header) {
2410
+ value != null && value !== false && (obj[header] = asStrings && utils$1.isArray(value) ? value.join(', ') : value);
2411
+ });
2412
+ return obj;
2413
+ }
2414
+ }, {
2415
+ key: Symbol.iterator,
2416
+ value: function value() {
2417
+ return Object.entries(this.toJSON())[Symbol.iterator]();
2418
+ }
2419
+ }, {
2420
+ key: "toString",
2421
+ value: function toString() {
2422
+ return Object.entries(this.toJSON()).map(function (_ref) {
2423
+ var _ref2 = _slicedToArray(_ref, 2),
2424
+ header = _ref2[0],
2425
+ value = _ref2[1];
2426
+ return header + ': ' + value;
2427
+ }).join('\n');
2428
+ }
2429
+ }, {
2430
+ key: "getSetCookie",
2431
+ value: function getSetCookie() {
2432
+ return this.get('set-cookie') || [];
2433
+ }
2434
+ }, {
2435
+ key: Symbol.toStringTag,
2436
+ get: function get() {
2437
+ return 'AxiosHeaders';
2438
+ }
2439
+ }], [{
2440
+ key: "from",
2441
+ value: function from(thing) {
2442
+ return thing instanceof this ? thing : new this(thing);
2443
+ }
2444
+ }, {
2445
+ key: "concat",
2446
+ value: function concat(first) {
2447
+ var computed = new this(first);
2448
+ for (var _len2 = arguments.length, targets = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
2449
+ targets[_key2 - 1] = arguments[_key2];
2450
+ }
2451
+ targets.forEach(function (target) {
2452
+ return computed.set(target);
2453
+ });
2454
+ return computed;
2455
+ }
2456
+ }, {
2457
+ key: "accessor",
2458
+ value: function accessor(header) {
2459
+ var internals = this[$internals] = this[$internals] = {
2460
+ accessors: {}
2461
+ };
2462
+ var accessors = internals.accessors;
2463
+ var prototype = this.prototype;
2464
+ function defineAccessor(_header) {
2465
+ var lHeader = normalizeHeader(_header);
2466
+ if (!accessors[lHeader]) {
2467
+ buildAccessors(prototype, _header);
2468
+ accessors[lHeader] = true;
2469
+ }
2470
+ }
2471
+ utils$1.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);
2472
+ return this;
2473
+ }
2474
+ }]);
2475
+ }();
2476
+ AxiosHeaders.accessor(['Content-Type', 'Content-Length', 'Accept', 'Accept-Encoding', 'User-Agent', 'Authorization']);
2477
+
2478
+ // reserved names hotfix
2479
+ utils$1.reduceDescriptors(AxiosHeaders.prototype, function (_ref3, key) {
2480
+ var value = _ref3.value;
2481
+ var mapped = key[0].toUpperCase() + key.slice(1); // map `set` => `Set`
2482
+ return {
2483
+ get: function get() {
2484
+ return value;
2485
+ },
2486
+ set: function set(headerValue) {
2487
+ this[mapped] = headerValue;
2488
+ }
2489
+ };
2490
+ });
2491
+ utils$1.freezeMethods(AxiosHeaders);
2492
+
2493
+ /**
2494
+ * Transform the data for a request or a response
2495
+ *
2496
+ * @param {Array|Function} fns A single function or Array of functions
2497
+ * @param {?Object} response The response object
2498
+ *
2499
+ * @returns {*} The resulting transformed data
2500
+ */
2501
+ function transformData(fns, response) {
2502
+ var config = this || defaults;
2503
+ var context = response || config;
2504
+ var headers = AxiosHeaders.from(context.headers);
2505
+ var data = context.data;
2506
+ utils$1.forEach(fns, function transform(fn) {
2507
+ data = fn.call(config, data, headers.normalize(), response ? response.status : undefined);
2508
+ });
2509
+ headers.normalize();
2510
+ return data;
2511
+ }
2512
+
2513
+ function isCancel(value) {
2514
+ return !!(value && value.__CANCEL__);
2515
+ }
2516
+
2517
+ var CanceledError = /*#__PURE__*/function (_AxiosError) {
2518
+ /**
2519
+ * A `CanceledError` is an object that is thrown when an operation is canceled.
2520
+ *
2521
+ * @param {string=} message The message.
2522
+ * @param {Object=} config The config.
2523
+ * @param {Object=} request The request.
2524
+ *
2525
+ * @returns {CanceledError} The created error.
2526
+ */
2527
+ function CanceledError(message, config, request) {
2528
+ var _this;
2529
+ _classCallCheck(this, CanceledError);
2530
+ _this = _callSuper(this, CanceledError, [message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request]);
2531
+ _this.name = 'CanceledError';
2532
+ _this.__CANCEL__ = true;
2533
+ return _this;
2534
+ }
2535
+ _inherits(CanceledError, _AxiosError);
2536
+ return _createClass(CanceledError);
2537
+ }(AxiosError);
2538
+
2539
+ /**
2540
+ * Resolve or reject a Promise based on response status.
2541
+ *
2542
+ * @param {Function} resolve A function that resolves the promise.
2543
+ * @param {Function} reject A function that rejects the promise.
2544
+ * @param {object} response The response.
2545
+ *
2546
+ * @returns {object} The response.
2547
+ */
2548
+ function settle(resolve, reject, response) {
2549
+ var validateStatus = response.config.validateStatus;
2550
+ if (!response.status || !validateStatus || validateStatus(response.status)) {
2551
+ resolve(response);
2552
+ } else {
2553
+ reject(new AxiosError('Request failed with status code ' + response.status, [AxiosError.ERR_BAD_REQUEST, AxiosError.ERR_BAD_RESPONSE][Math.floor(response.status / 100) - 4], response.config, response.request, response));
2554
+ }
2555
+ }
2556
+
2557
+ function parseProtocol(url) {
2558
+ var match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
2559
+ return match && match[1] || '';
2560
+ }
2561
+
2562
+ /**
2563
+ * Calculate data maxRate
2564
+ * @param {Number} [samplesCount= 10]
2565
+ * @param {Number} [min= 1000]
2566
+ * @returns {Function}
2567
+ */
2568
+ function speedometer(samplesCount, min) {
2569
+ samplesCount = samplesCount || 10;
2570
+ var bytes = new Array(samplesCount);
2571
+ var timestamps = new Array(samplesCount);
2572
+ var head = 0;
2573
+ var tail = 0;
2574
+ var firstSampleTS;
2575
+ min = min !== undefined ? min : 1000;
2576
+ return function push(chunkLength) {
2577
+ var now = Date.now();
2578
+ var startedAt = timestamps[tail];
2579
+ if (!firstSampleTS) {
2580
+ firstSampleTS = now;
2581
+ }
2582
+ bytes[head] = chunkLength;
2583
+ timestamps[head] = now;
2584
+ var i = tail;
2585
+ var bytesCount = 0;
2586
+ while (i !== head) {
2587
+ bytesCount += bytes[i++];
2588
+ i = i % samplesCount;
2589
+ }
2590
+ head = (head + 1) % samplesCount;
2591
+ if (head === tail) {
2592
+ tail = (tail + 1) % samplesCount;
2593
+ }
2594
+ if (now - firstSampleTS < min) {
2595
+ return;
2596
+ }
2597
+ var passed = startedAt && now - startedAt;
2598
+ return passed ? Math.round(bytesCount * 1000 / passed) : undefined;
2599
+ };
2600
+ }
2601
+
2602
+ /**
2603
+ * Throttle decorator
2604
+ * @param {Function} fn
2605
+ * @param {Number} freq
2606
+ * @return {Function}
2607
+ */
2608
+ function throttle(fn, freq) {
2609
+ var timestamp = 0;
2610
+ var threshold = 1000 / freq;
2611
+ var lastArgs;
2612
+ var timer;
2613
+ var invoke = function invoke(args) {
2614
+ var now = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : Date.now();
2615
+ timestamp = now;
2616
+ lastArgs = null;
2617
+ if (timer) {
2618
+ clearTimeout(timer);
2619
+ timer = null;
2620
+ }
2621
+ fn.apply(void 0, _toConsumableArray(args));
2622
+ };
2623
+ var throttled = function throttled() {
2624
+ var now = Date.now();
2625
+ var passed = now - timestamp;
2626
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
2627
+ args[_key] = arguments[_key];
2628
+ }
2629
+ if (passed >= threshold) {
2630
+ invoke(args, now);
2631
+ } else {
2632
+ lastArgs = args;
2633
+ if (!timer) {
2634
+ timer = setTimeout(function () {
2635
+ timer = null;
2636
+ invoke(lastArgs);
2637
+ }, threshold - passed);
2638
+ }
2639
+ }
2640
+ };
2641
+ var flush = function flush() {
2642
+ return lastArgs && invoke(lastArgs);
2643
+ };
2644
+ return [throttled, flush];
2645
+ }
2646
+
2647
+ var progressEventReducer = function progressEventReducer(listener, isDownloadStream) {
2648
+ var freq = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 3;
2649
+ var bytesNotified = 0;
2650
+ var _speedometer = speedometer(50, 250);
2651
+ return throttle(function (e) {
2652
+ var loaded = e.loaded;
2653
+ var total = e.lengthComputable ? e.total : undefined;
2654
+ var progressBytes = loaded - bytesNotified;
2655
+ var rate = _speedometer(progressBytes);
2656
+ var inRange = loaded <= total;
2657
+ bytesNotified = loaded;
2658
+ var data = _defineProperty({
2659
+ loaded: loaded,
2660
+ total: total,
2661
+ progress: total ? loaded / total : undefined,
2662
+ bytes: progressBytes,
2663
+ rate: rate ? rate : undefined,
2664
+ estimated: rate && total && inRange ? (total - loaded) / rate : undefined,
2665
+ event: e,
2666
+ lengthComputable: total != null
2667
+ }, isDownloadStream ? 'download' : 'upload', true);
2668
+ listener(data);
2669
+ }, freq);
2670
+ };
2671
+ var progressEventDecorator = function progressEventDecorator(total, throttled) {
2672
+ var lengthComputable = total != null;
2673
+ return [function (loaded) {
2674
+ return throttled[0]({
2675
+ lengthComputable: lengthComputable,
2676
+ total: total,
2677
+ loaded: loaded
2678
+ });
2679
+ }, throttled[1]];
2680
+ };
2681
+ var asyncDecorator = function asyncDecorator(fn) {
2682
+ return function () {
2683
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
2684
+ args[_key] = arguments[_key];
2685
+ }
2686
+ return utils$1.asap(function () {
2687
+ return fn.apply(void 0, args);
2688
+ });
2689
+ };
2690
+ };
2691
+
2692
+ var isURLSameOrigin = platform.hasStandardBrowserEnv ? function (origin, isMSIE) {
2693
+ return function (url) {
2694
+ url = new URL(url, platform.origin);
2695
+ return origin.protocol === url.protocol && origin.host === url.host && (isMSIE || origin.port === url.port);
2696
+ };
2697
+ }(new URL(platform.origin), platform.navigator && /(msie|trident)/i.test(platform.navigator.userAgent)) : function () {
2698
+ return true;
2699
+ };
2700
+
2701
+ var cookies = platform.hasStandardBrowserEnv ?
2702
+ // Standard browser envs support document.cookie
2703
+ {
2704
+ write: function write(name, value, expires, path, domain, secure, sameSite) {
2705
+ if (typeof document === 'undefined') return;
2706
+ var cookie = ["".concat(name, "=").concat(encodeURIComponent(value))];
2707
+ if (utils$1.isNumber(expires)) {
2708
+ cookie.push("expires=".concat(new Date(expires).toUTCString()));
2709
+ }
2710
+ if (utils$1.isString(path)) {
2711
+ cookie.push("path=".concat(path));
2712
+ }
2713
+ if (utils$1.isString(domain)) {
2714
+ cookie.push("domain=".concat(domain));
2715
+ }
2716
+ if (secure === true) {
2717
+ cookie.push('secure');
2718
+ }
2719
+ if (utils$1.isString(sameSite)) {
2720
+ cookie.push("SameSite=".concat(sameSite));
2721
+ }
2722
+ document.cookie = cookie.join('; ');
2723
+ },
2724
+ read: function read(name) {
2725
+ if (typeof document === 'undefined') return null;
2726
+ var match = document.cookie.match(new RegExp('(?:^|; )' + name + '=([^;]*)'));
2727
+ return match ? decodeURIComponent(match[1]) : null;
2728
+ },
2729
+ remove: function remove(name) {
2730
+ this.write(name, '', Date.now() - 86400000, '/');
2731
+ }
2732
+ } :
2733
+ // Non-standard browser env (web workers, react-native) lack needed support.
2734
+ {
2735
+ write: function write() {},
2736
+ read: function read() {
2737
+ return null;
2738
+ },
2739
+ remove: function remove() {}
2740
+ };
2741
+
2742
+ /**
2743
+ * Determines whether the specified URL is absolute
2744
+ *
2745
+ * @param {string} url The URL to test
2746
+ *
2747
+ * @returns {boolean} True if the specified URL is absolute, otherwise false
2748
+ */
2749
+ function isAbsoluteURL(url) {
2750
+ // A URL is considered absolute if it begins with "<scheme>://" or "//" (protocol-relative URL).
2751
+ // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed
2752
+ // by any combination of letters, digits, plus, period, or hyphen.
2753
+ if (typeof url !== 'string') {
2754
+ return false;
2755
+ }
2756
+ return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(url);
2757
+ }
2758
+
2759
+ /**
2760
+ * Creates a new URL by combining the specified URLs
2761
+ *
2762
+ * @param {string} baseURL The base URL
2763
+ * @param {string} relativeURL The relative URL
2764
+ *
2765
+ * @returns {string} The combined URL
2766
+ */
2767
+ function combineURLs(baseURL, relativeURL) {
2768
+ return relativeURL ? baseURL.replace(/\/?\/$/, '') + '/' + relativeURL.replace(/^\/+/, '') : baseURL;
2769
+ }
2770
+
2771
+ /**
2772
+ * Creates a new URL by combining the baseURL with the requestedURL,
2773
+ * only when the requestedURL is not already an absolute URL.
2774
+ * If the requestURL is absolute, this function returns the requestedURL untouched.
2775
+ *
2776
+ * @param {string} baseURL The base URL
2777
+ * @param {string} requestedURL Absolute or relative URL to combine
2778
+ *
2779
+ * @returns {string} The combined full path
2780
+ */
2781
+ function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
2782
+ var isRelativeUrl = !isAbsoluteURL(requestedURL);
2783
+ if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
2784
+ return combineURLs(baseURL, requestedURL);
2785
+ }
2786
+ return requestedURL;
2787
+ }
2788
+
2789
+ var headersToObject = function headersToObject(thing) {
2790
+ return thing instanceof AxiosHeaders ? _objectSpread2({}, thing) : thing;
2791
+ };
2792
+
2793
+ /**
2794
+ * Config-specific merge-function which creates a new config-object
2795
+ * by merging two configuration objects together.
2796
+ *
2797
+ * @param {Object} config1
2798
+ * @param {Object} config2
2799
+ *
2800
+ * @returns {Object} New object resulting from merging config2 to config1
2801
+ */
2802
+ function mergeConfig(config1, config2) {
2803
+ // eslint-disable-next-line no-param-reassign
2804
+ config2 = config2 || {};
2805
+ var config = {};
2806
+ function getMergedValue(target, source, prop, caseless) {
2807
+ if (utils$1.isPlainObject(target) && utils$1.isPlainObject(source)) {
2808
+ return utils$1.merge.call({
2809
+ caseless: caseless
2810
+ }, target, source);
2811
+ } else if (utils$1.isPlainObject(source)) {
2812
+ return utils$1.merge({}, source);
2813
+ } else if (utils$1.isArray(source)) {
2814
+ return source.slice();
2815
+ }
2816
+ return source;
2817
+ }
2818
+ function mergeDeepProperties(a, b, prop, caseless) {
2819
+ if (!utils$1.isUndefined(b)) {
2820
+ return getMergedValue(a, b, prop, caseless);
2821
+ } else if (!utils$1.isUndefined(a)) {
2822
+ return getMergedValue(undefined, a, prop, caseless);
2823
+ }
2824
+ }
2825
+
2826
+ // eslint-disable-next-line consistent-return
2827
+ function valueFromConfig2(a, b) {
2828
+ if (!utils$1.isUndefined(b)) {
2829
+ return getMergedValue(undefined, b);
2830
+ }
2831
+ }
2832
+
2833
+ // eslint-disable-next-line consistent-return
2834
+ function defaultToConfig2(a, b) {
2835
+ if (!utils$1.isUndefined(b)) {
2836
+ return getMergedValue(undefined, b);
2837
+ } else if (!utils$1.isUndefined(a)) {
2838
+ return getMergedValue(undefined, a);
2839
+ }
2840
+ }
2841
+
2842
+ // eslint-disable-next-line consistent-return
2843
+ function mergeDirectKeys(a, b, prop) {
2844
+ if (prop in config2) {
2845
+ return getMergedValue(a, b);
2846
+ } else if (prop in config1) {
2847
+ return getMergedValue(undefined, a);
2848
+ }
2849
+ }
2850
+ var mergeMap = {
2851
+ url: valueFromConfig2,
2852
+ method: valueFromConfig2,
2853
+ data: valueFromConfig2,
2854
+ baseURL: defaultToConfig2,
2855
+ transformRequest: defaultToConfig2,
2856
+ transformResponse: defaultToConfig2,
2857
+ paramsSerializer: defaultToConfig2,
2858
+ timeout: defaultToConfig2,
2859
+ timeoutMessage: defaultToConfig2,
2860
+ withCredentials: defaultToConfig2,
2861
+ withXSRFToken: defaultToConfig2,
2862
+ adapter: defaultToConfig2,
2863
+ responseType: defaultToConfig2,
2864
+ xsrfCookieName: defaultToConfig2,
2865
+ xsrfHeaderName: defaultToConfig2,
2866
+ onUploadProgress: defaultToConfig2,
2867
+ onDownloadProgress: defaultToConfig2,
2868
+ decompress: defaultToConfig2,
2869
+ maxContentLength: defaultToConfig2,
2870
+ maxBodyLength: defaultToConfig2,
2871
+ beforeRedirect: defaultToConfig2,
2872
+ transport: defaultToConfig2,
2873
+ httpAgent: defaultToConfig2,
2874
+ httpsAgent: defaultToConfig2,
2875
+ cancelToken: defaultToConfig2,
2876
+ socketPath: defaultToConfig2,
2877
+ responseEncoding: defaultToConfig2,
2878
+ validateStatus: mergeDirectKeys,
2879
+ headers: function headers(a, b, prop) {
2880
+ return mergeDeepProperties(headersToObject(a), headersToObject(b), prop, true);
2881
+ }
2882
+ };
2883
+ utils$1.forEach(Object.keys(_objectSpread2(_objectSpread2({}, config1), config2)), function computeConfigValue(prop) {
2884
+ if (prop === '__proto__' || prop === 'constructor' || prop === 'prototype') return;
2885
+ var merge = utils$1.hasOwnProp(mergeMap, prop) ? mergeMap[prop] : mergeDeepProperties;
2886
+ var configValue = merge(config1[prop], config2[prop], prop);
2887
+ utils$1.isUndefined(configValue) && merge !== mergeDirectKeys || (config[prop] = configValue);
2888
+ });
2889
+ return config;
2890
+ }
2891
+
2892
+ var resolveConfig = (function (config) {
2893
+ var newConfig = mergeConfig({}, config);
2894
+ var data = newConfig.data,
2895
+ withXSRFToken = newConfig.withXSRFToken,
2896
+ xsrfHeaderName = newConfig.xsrfHeaderName,
2897
+ xsrfCookieName = newConfig.xsrfCookieName,
2898
+ headers = newConfig.headers,
2899
+ auth = newConfig.auth;
2900
+ newConfig.headers = headers = AxiosHeaders.from(headers);
2901
+ newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config.params, config.paramsSerializer);
2902
+
2903
+ // HTTP basic authentication
2904
+ if (auth) {
2905
+ headers.set('Authorization', 'Basic ' + btoa((auth.username || '') + ':' + (auth.password ? unescape(encodeURIComponent(auth.password)) : '')));
2906
+ }
2907
+ if (utils$1.isFormData(data)) {
2908
+ if (platform.hasStandardBrowserEnv || platform.hasStandardBrowserWebWorkerEnv) {
2909
+ headers.setContentType(undefined); // browser handles it
2910
+ } else if (utils$1.isFunction(data.getHeaders)) {
2911
+ // Node.js FormData (like form-data package)
2912
+ var formHeaders = data.getHeaders();
2913
+ // Only set safe headers to avoid overwriting security headers
2914
+ var allowedHeaders = ['content-type', 'content-length'];
2915
+ Object.entries(formHeaders).forEach(function (_ref) {
2916
+ var _ref2 = _slicedToArray(_ref, 2),
2917
+ key = _ref2[0],
2918
+ val = _ref2[1];
2919
+ if (allowedHeaders.includes(key.toLowerCase())) {
2920
+ headers.set(key, val);
2921
+ }
2922
+ });
2923
+ }
2924
+ }
2925
+
2926
+ // Add xsrf header
2927
+ // This is only done if running in a standard browser environment.
2928
+ // Specifically not if we're in a web worker, or react-native.
2929
+
2930
+ if (platform.hasStandardBrowserEnv) {
2931
+ withXSRFToken && utils$1.isFunction(withXSRFToken) && (withXSRFToken = withXSRFToken(newConfig));
2932
+ if (withXSRFToken || withXSRFToken !== false && isURLSameOrigin(newConfig.url)) {
2933
+ // Add xsrf header
2934
+ var xsrfValue = xsrfHeaderName && xsrfCookieName && cookies.read(xsrfCookieName);
2935
+ if (xsrfValue) {
2936
+ headers.set(xsrfHeaderName, xsrfValue);
2937
+ }
2938
+ }
2939
+ }
2940
+ return newConfig;
2941
+ });
2942
+
2943
+ var isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
2944
+ var xhrAdapter = isXHRAdapterSupported && function (config) {
2945
+ return new Promise(function dispatchXhrRequest(resolve, reject) {
2946
+ var _config = resolveConfig(config);
2947
+ var requestData = _config.data;
2948
+ var requestHeaders = AxiosHeaders.from(_config.headers).normalize();
2949
+ var responseType = _config.responseType,
2950
+ onUploadProgress = _config.onUploadProgress,
2951
+ onDownloadProgress = _config.onDownloadProgress;
2952
+ var onCanceled;
2953
+ var uploadThrottled, downloadThrottled;
2954
+ var flushUpload, flushDownload;
2955
+ function done() {
2956
+ flushUpload && flushUpload(); // flush events
2957
+ flushDownload && flushDownload(); // flush events
2958
+
2959
+ _config.cancelToken && _config.cancelToken.unsubscribe(onCanceled);
2960
+ _config.signal && _config.signal.removeEventListener('abort', onCanceled);
2961
+ }
2962
+ var request = new XMLHttpRequest();
2963
+ request.open(_config.method.toUpperCase(), _config.url, true);
2964
+
2965
+ // Set the request timeout in MS
2966
+ request.timeout = _config.timeout;
2967
+ function onloadend() {
2968
+ if (!request) {
2969
+ return;
2970
+ }
2971
+ // Prepare the response
2972
+ var responseHeaders = AxiosHeaders.from('getAllResponseHeaders' in request && request.getAllResponseHeaders());
2973
+ var responseData = !responseType || responseType === 'text' || responseType === 'json' ? request.responseText : request.response;
2974
+ var response = {
2975
+ data: responseData,
2976
+ status: request.status,
2977
+ statusText: request.statusText,
2978
+ headers: responseHeaders,
2979
+ config: config,
2980
+ request: request
2981
+ };
2982
+ settle(function _resolve(value) {
2983
+ resolve(value);
2984
+ done();
2985
+ }, function _reject(err) {
2986
+ reject(err);
2987
+ done();
2988
+ }, response);
2989
+
2990
+ // Clean up request
2991
+ request = null;
2992
+ }
2993
+ if ('onloadend' in request) {
2994
+ // Use onloadend if available
2995
+ request.onloadend = onloadend;
2996
+ } else {
2997
+ // Listen for ready state to emulate onloadend
2998
+ request.onreadystatechange = function handleLoad() {
2999
+ if (!request || request.readyState !== 4) {
3000
+ return;
3001
+ }
3002
+
3003
+ // The request errored out and we didn't get a response, this will be
3004
+ // handled by onerror instead
3005
+ // With one exception: request that using file: protocol, most browsers
3006
+ // will return status as 0 even though it's a successful request
3007
+ if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {
3008
+ return;
3009
+ }
3010
+ // readystate handler is calling before onerror or ontimeout handlers,
3011
+ // so we should call onloadend on the next 'tick'
3012
+ setTimeout(onloadend);
3013
+ };
3014
+ }
3015
+
3016
+ // Handle browser request cancellation (as opposed to a manual cancellation)
3017
+ request.onabort = function handleAbort() {
3018
+ if (!request) {
3019
+ return;
3020
+ }
3021
+ reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request));
3022
+
3023
+ // Clean up request
3024
+ request = null;
3025
+ };
3026
+
3027
+ // Handle low level network errors
3028
+ request.onerror = function handleError(event) {
3029
+ // Browsers deliver a ProgressEvent in XHR onerror
3030
+ // (message may be empty; when present, surface it)
3031
+ // See https://developer.mozilla.org/docs/Web/API/XMLHttpRequest/error_event
3032
+ var msg = event && event.message ? event.message : 'Network Error';
3033
+ var err = new AxiosError(msg, AxiosError.ERR_NETWORK, config, request);
3034
+ // attach the underlying event for consumers who want details
3035
+ err.event = event || null;
3036
+ reject(err);
3037
+ request = null;
3038
+ };
3039
+
3040
+ // Handle timeout
3041
+ request.ontimeout = function handleTimeout() {
3042
+ var timeoutErrorMessage = _config.timeout ? 'timeout of ' + _config.timeout + 'ms exceeded' : 'timeout exceeded';
3043
+ var transitional = _config.transitional || transitionalDefaults;
3044
+ if (_config.timeoutErrorMessage) {
3045
+ timeoutErrorMessage = _config.timeoutErrorMessage;
3046
+ }
3047
+ reject(new AxiosError(timeoutErrorMessage, transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED, config, request));
3048
+
3049
+ // Clean up request
3050
+ request = null;
3051
+ };
3052
+
3053
+ // Remove Content-Type if data is undefined
3054
+ requestData === undefined && requestHeaders.setContentType(null);
3055
+
3056
+ // Add headers to the request
3057
+ if ('setRequestHeader' in request) {
3058
+ utils$1.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {
3059
+ request.setRequestHeader(key, val);
3060
+ });
3061
+ }
3062
+
3063
+ // Add withCredentials to request if needed
3064
+ if (!utils$1.isUndefined(_config.withCredentials)) {
3065
+ request.withCredentials = !!_config.withCredentials;
3066
+ }
3067
+
3068
+ // Add responseType to request if needed
3069
+ if (responseType && responseType !== 'json') {
3070
+ request.responseType = _config.responseType;
3071
+ }
3072
+
3073
+ // Handle progress if needed
3074
+ if (onDownloadProgress) {
3075
+ var _progressEventReducer = progressEventReducer(onDownloadProgress, true);
3076
+ var _progressEventReducer2 = _slicedToArray(_progressEventReducer, 2);
3077
+ downloadThrottled = _progressEventReducer2[0];
3078
+ flushDownload = _progressEventReducer2[1];
3079
+ request.addEventListener('progress', downloadThrottled);
3080
+ }
3081
+
3082
+ // Not all browsers support upload events
3083
+ if (onUploadProgress && request.upload) {
3084
+ var _progressEventReducer3 = progressEventReducer(onUploadProgress);
3085
+ var _progressEventReducer4 = _slicedToArray(_progressEventReducer3, 2);
3086
+ uploadThrottled = _progressEventReducer4[0];
3087
+ flushUpload = _progressEventReducer4[1];
3088
+ request.upload.addEventListener('progress', uploadThrottled);
3089
+ request.upload.addEventListener('loadend', flushUpload);
3090
+ }
3091
+ if (_config.cancelToken || _config.signal) {
3092
+ // Handle cancellation
3093
+ // eslint-disable-next-line func-names
3094
+ onCanceled = function onCanceled(cancel) {
3095
+ if (!request) {
3096
+ return;
3097
+ }
3098
+ reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel);
3099
+ request.abort();
3100
+ request = null;
3101
+ };
3102
+ _config.cancelToken && _config.cancelToken.subscribe(onCanceled);
3103
+ if (_config.signal) {
3104
+ _config.signal.aborted ? onCanceled() : _config.signal.addEventListener('abort', onCanceled);
3105
+ }
3106
+ }
3107
+ var protocol = parseProtocol(_config.url);
3108
+ if (protocol && platform.protocols.indexOf(protocol) === -1) {
3109
+ reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config));
3110
+ return;
3111
+ }
3112
+
3113
+ // Send the request
3114
+ request.send(requestData || null);
3115
+ });
3116
+ };
3117
+
3118
+ var composeSignals = function composeSignals(signals, timeout) {
3119
+ var _signals = signals = signals ? signals.filter(Boolean) : [],
3120
+ length = _signals.length;
3121
+ if (timeout || length) {
3122
+ var controller = new AbortController();
3123
+ var aborted;
3124
+ var onabort = function onabort(reason) {
3125
+ if (!aborted) {
3126
+ aborted = true;
3127
+ unsubscribe();
3128
+ var err = reason instanceof Error ? reason : this.reason;
3129
+ controller.abort(err instanceof AxiosError ? err : new CanceledError(err instanceof Error ? err.message : err));
3130
+ }
3131
+ };
3132
+ var timer = timeout && setTimeout(function () {
3133
+ timer = null;
3134
+ onabort(new AxiosError("timeout of ".concat(timeout, "ms exceeded"), AxiosError.ETIMEDOUT));
3135
+ }, timeout);
3136
+ var unsubscribe = function unsubscribe() {
3137
+ if (signals) {
3138
+ timer && clearTimeout(timer);
3139
+ timer = null;
3140
+ signals.forEach(function (signal) {
3141
+ signal.unsubscribe ? signal.unsubscribe(onabort) : signal.removeEventListener('abort', onabort);
3142
+ });
3143
+ signals = null;
3144
+ }
3145
+ };
3146
+ signals.forEach(function (signal) {
3147
+ return signal.addEventListener('abort', onabort);
3148
+ });
3149
+ var signal = controller.signal;
3150
+ signal.unsubscribe = function () {
3151
+ return utils$1.asap(unsubscribe);
3152
+ };
3153
+ return signal;
3154
+ }
3155
+ };
3156
+
3157
+ var streamChunk = /*#__PURE__*/_regenerator().m(function streamChunk(chunk, chunkSize) {
3158
+ var len, pos, end;
3159
+ return _regenerator().w(function (_context) {
3160
+ while (1) switch (_context.n) {
3161
+ case 0:
3162
+ len = chunk.byteLength;
3163
+ if (!(!chunkSize || len < chunkSize)) {
3164
+ _context.n = 2;
3165
+ break;
3166
+ }
3167
+ _context.n = 1;
3168
+ return chunk;
3169
+ case 1:
3170
+ return _context.a(2);
3171
+ case 2:
3172
+ pos = 0;
3173
+ case 3:
3174
+ if (!(pos < len)) {
3175
+ _context.n = 5;
3176
+ break;
3177
+ }
3178
+ end = pos + chunkSize;
3179
+ _context.n = 4;
3180
+ return chunk.slice(pos, end);
3181
+ case 4:
3182
+ pos = end;
3183
+ _context.n = 3;
3184
+ break;
3185
+ case 5:
3186
+ return _context.a(2);
3187
+ }
3188
+ }, streamChunk);
3189
+ });
3190
+ var readBytes = /*#__PURE__*/function () {
3191
+ var _ref = _wrapAsyncGenerator(/*#__PURE__*/_regenerator().m(function _callee(iterable, chunkSize) {
3192
+ var _iteratorAbruptCompletion, _didIteratorError, _iteratorError, _iterator, _step, chunk, _t;
3193
+ return _regenerator().w(function (_context2) {
3194
+ while (1) switch (_context2.p = _context2.n) {
3195
+ case 0:
3196
+ _iteratorAbruptCompletion = false;
3197
+ _didIteratorError = false;
3198
+ _context2.p = 1;
3199
+ _iterator = _asyncIterator(readStream(iterable));
3200
+ case 2:
3201
+ _context2.n = 3;
3202
+ return _awaitAsyncGenerator(_iterator.next());
3203
+ case 3:
3204
+ if (!(_iteratorAbruptCompletion = !(_step = _context2.v).done)) {
3205
+ _context2.n = 5;
3206
+ break;
3207
+ }
3208
+ chunk = _step.value;
3209
+ return _context2.d(_regeneratorValues(_asyncGeneratorDelegate(_asyncIterator(streamChunk(chunk, chunkSize)))), 4);
3210
+ case 4:
3211
+ _iteratorAbruptCompletion = false;
3212
+ _context2.n = 2;
3213
+ break;
3214
+ case 5:
3215
+ _context2.n = 7;
3216
+ break;
3217
+ case 6:
3218
+ _context2.p = 6;
3219
+ _t = _context2.v;
3220
+ _didIteratorError = true;
3221
+ _iteratorError = _t;
3222
+ case 7:
3223
+ _context2.p = 7;
3224
+ _context2.p = 8;
3225
+ if (!(_iteratorAbruptCompletion && _iterator["return"] != null)) {
3226
+ _context2.n = 9;
3227
+ break;
3228
+ }
3229
+ _context2.n = 9;
3230
+ return _awaitAsyncGenerator(_iterator["return"]());
3231
+ case 9:
3232
+ _context2.p = 9;
3233
+ if (!_didIteratorError) {
3234
+ _context2.n = 10;
3235
+ break;
3236
+ }
3237
+ throw _iteratorError;
3238
+ case 10:
3239
+ return _context2.f(9);
3240
+ case 11:
3241
+ return _context2.f(7);
3242
+ case 12:
3243
+ return _context2.a(2);
3244
+ }
3245
+ }, _callee, null, [[8,, 9, 11], [1, 6, 7, 12]]);
3246
+ }));
3247
+ return function readBytes(_x, _x2) {
3248
+ return _ref.apply(this, arguments);
3249
+ };
3250
+ }();
3251
+ var readStream = /*#__PURE__*/function () {
3252
+ var _ref2 = _wrapAsyncGenerator(/*#__PURE__*/_regenerator().m(function _callee2(stream) {
3253
+ var reader, _yield$_awaitAsyncGen, done, value;
3254
+ return _regenerator().w(function (_context3) {
3255
+ while (1) switch (_context3.p = _context3.n) {
3256
+ case 0:
3257
+ if (!stream[Symbol.asyncIterator]) {
3258
+ _context3.n = 2;
3259
+ break;
3260
+ }
3261
+ return _context3.d(_regeneratorValues(_asyncGeneratorDelegate(_asyncIterator(stream))), 1);
3262
+ case 1:
3263
+ return _context3.a(2);
3264
+ case 2:
3265
+ reader = stream.getReader();
3266
+ _context3.p = 3;
3267
+ case 4:
3268
+ _context3.n = 5;
3269
+ return _awaitAsyncGenerator(reader.read());
3270
+ case 5:
3271
+ _yield$_awaitAsyncGen = _context3.v;
3272
+ done = _yield$_awaitAsyncGen.done;
3273
+ value = _yield$_awaitAsyncGen.value;
3274
+ if (!done) {
3275
+ _context3.n = 6;
3276
+ break;
3277
+ }
3278
+ return _context3.a(3, 8);
3279
+ case 6:
3280
+ _context3.n = 7;
3281
+ return value;
3282
+ case 7:
3283
+ _context3.n = 4;
3284
+ break;
3285
+ case 8:
3286
+ _context3.p = 8;
3287
+ _context3.n = 9;
3288
+ return _awaitAsyncGenerator(reader.cancel());
3289
+ case 9:
3290
+ return _context3.f(8);
3291
+ case 10:
3292
+ return _context3.a(2);
3293
+ }
3294
+ }, _callee2, null, [[3,, 8, 10]]);
3295
+ }));
3296
+ return function readStream(_x3) {
3297
+ return _ref2.apply(this, arguments);
3298
+ };
3299
+ }();
3300
+ var trackStream = function trackStream(stream, chunkSize, onProgress, onFinish) {
3301
+ var iterator = readBytes(stream, chunkSize);
3302
+ var bytes = 0;
3303
+ var done;
3304
+ var _onFinish = function _onFinish(e) {
3305
+ if (!done) {
3306
+ done = true;
3307
+ onFinish && onFinish(e);
3308
+ }
3309
+ };
3310
+ return new ReadableStream({
3311
+ pull: function pull(controller) {
3312
+ return _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee3() {
3313
+ var _yield$iterator$next, _done, value, len, loadedBytes, _t2;
3314
+ return _regenerator().w(function (_context4) {
3315
+ while (1) switch (_context4.p = _context4.n) {
3316
+ case 0:
3317
+ _context4.p = 0;
3318
+ _context4.n = 1;
3319
+ return iterator.next();
3320
+ case 1:
3321
+ _yield$iterator$next = _context4.v;
3322
+ _done = _yield$iterator$next.done;
3323
+ value = _yield$iterator$next.value;
3324
+ if (!_done) {
3325
+ _context4.n = 2;
3326
+ break;
3327
+ }
3328
+ _onFinish();
3329
+ controller.close();
3330
+ return _context4.a(2);
3331
+ case 2:
3332
+ len = value.byteLength;
3333
+ if (onProgress) {
3334
+ loadedBytes = bytes += len;
3335
+ onProgress(loadedBytes);
3336
+ }
3337
+ controller.enqueue(new Uint8Array(value));
3338
+ _context4.n = 4;
3339
+ break;
3340
+ case 3:
3341
+ _context4.p = 3;
3342
+ _t2 = _context4.v;
3343
+ _onFinish(_t2);
3344
+ throw _t2;
3345
+ case 4:
3346
+ return _context4.a(2);
3347
+ }
3348
+ }, _callee3, null, [[0, 3]]);
3349
+ }))();
3350
+ },
3351
+ cancel: function cancel(reason) {
3352
+ _onFinish(reason);
3353
+ return iterator["return"]();
3354
+ }
3355
+ }, {
3356
+ highWaterMark: 2
3357
+ });
3358
+ };
3359
+
3360
+ var DEFAULT_CHUNK_SIZE = 64 * 1024;
3361
+ var isFunction = utils$1.isFunction;
3362
+ var globalFetchAPI = function (_ref) {
3363
+ var Request = _ref.Request,
3364
+ Response = _ref.Response;
3365
+ return {
3366
+ Request: Request,
3367
+ Response: Response
3368
+ };
3369
+ }(utils$1.global);
3370
+ var _utils$global = utils$1.global,
3371
+ ReadableStream$1 = _utils$global.ReadableStream,
3372
+ TextEncoder = _utils$global.TextEncoder;
3373
+ var test = function test(fn) {
3374
+ try {
3375
+ for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
3376
+ args[_key - 1] = arguments[_key];
3377
+ }
3378
+ return !!fn.apply(void 0, args);
3379
+ } catch (e) {
3380
+ return false;
3381
+ }
3382
+ };
3383
+ var factory = function factory(env) {
3384
+ env = utils$1.merge.call({
3385
+ skipUndefined: true
3386
+ }, globalFetchAPI, env);
3387
+ var _env = env,
3388
+ envFetch = _env.fetch,
3389
+ Request = _env.Request,
3390
+ Response = _env.Response;
3391
+ var isFetchSupported = envFetch ? isFunction(envFetch) : typeof fetch === 'function';
3392
+ var isRequestSupported = isFunction(Request);
3393
+ var isResponseSupported = isFunction(Response);
3394
+ if (!isFetchSupported) {
3395
+ return false;
3396
+ }
3397
+ var isReadableStreamSupported = isFetchSupported && isFunction(ReadableStream$1);
3398
+ var encodeText = isFetchSupported && (typeof TextEncoder === 'function' ? function (encoder) {
3399
+ return function (str) {
3400
+ return encoder.encode(str);
3401
+ };
3402
+ }(new TextEncoder()) : (/*#__PURE__*/function () {
3403
+ var _ref2 = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee(str) {
3404
+ var _t, _t2;
3405
+ return _regenerator().w(function (_context) {
3406
+ while (1) switch (_context.n) {
3407
+ case 0:
3408
+ _t = Uint8Array;
3409
+ _context.n = 1;
3410
+ return new Request(str).arrayBuffer();
3411
+ case 1:
3412
+ _t2 = _context.v;
3413
+ return _context.a(2, new _t(_t2));
3414
+ }
3415
+ }, _callee);
3416
+ }));
3417
+ return function (_x) {
3418
+ return _ref2.apply(this, arguments);
3419
+ };
3420
+ }()));
3421
+ var supportsRequestStream = isRequestSupported && isReadableStreamSupported && test(function () {
3422
+ var duplexAccessed = false;
3423
+ var body = new ReadableStream$1();
3424
+ var hasContentType = new Request(platform.origin, {
3425
+ body: body,
3426
+ method: 'POST',
3427
+ get duplex() {
3428
+ duplexAccessed = true;
3429
+ return 'half';
3430
+ }
3431
+ }).headers.has('Content-Type');
3432
+ body.cancel();
3433
+ return duplexAccessed && !hasContentType;
3434
+ });
3435
+ var supportsResponseStream = isResponseSupported && isReadableStreamSupported && test(function () {
3436
+ return utils$1.isReadableStream(new Response('').body);
3437
+ });
3438
+ var resolvers = {
3439
+ stream: supportsResponseStream && function (res) {
3440
+ return res.body;
3441
+ }
3442
+ };
3443
+ isFetchSupported && function () {
3444
+ ['text', 'arrayBuffer', 'blob', 'formData', 'stream'].forEach(function (type) {
3445
+ !resolvers[type] && (resolvers[type] = function (res, config) {
3446
+ var method = res && res[type];
3447
+ if (method) {
3448
+ return method.call(res);
3449
+ }
3450
+ throw new AxiosError("Response type '".concat(type, "' is not supported"), AxiosError.ERR_NOT_SUPPORT, config);
3451
+ });
3452
+ });
3453
+ }();
3454
+ var getBodyLength = /*#__PURE__*/function () {
3455
+ var _ref3 = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee2(body) {
3456
+ var _request;
3457
+ return _regenerator().w(function (_context2) {
3458
+ while (1) switch (_context2.n) {
3459
+ case 0:
3460
+ if (!(body == null)) {
3461
+ _context2.n = 1;
3462
+ break;
3463
+ }
3464
+ return _context2.a(2, 0);
3465
+ case 1:
3466
+ if (!utils$1.isBlob(body)) {
3467
+ _context2.n = 2;
3468
+ break;
3469
+ }
3470
+ return _context2.a(2, body.size);
3471
+ case 2:
3472
+ if (!utils$1.isSpecCompliantForm(body)) {
3473
+ _context2.n = 4;
3474
+ break;
3475
+ }
3476
+ _request = new Request(platform.origin, {
3477
+ method: 'POST',
3478
+ body: body
3479
+ });
3480
+ _context2.n = 3;
3481
+ return _request.arrayBuffer();
3482
+ case 3:
3483
+ return _context2.a(2, _context2.v.byteLength);
3484
+ case 4:
3485
+ if (!(utils$1.isArrayBufferView(body) || utils$1.isArrayBuffer(body))) {
3486
+ _context2.n = 5;
3487
+ break;
3488
+ }
3489
+ return _context2.a(2, body.byteLength);
3490
+ case 5:
3491
+ if (utils$1.isURLSearchParams(body)) {
3492
+ body = body + '';
3493
+ }
3494
+ if (!utils$1.isString(body)) {
3495
+ _context2.n = 7;
3496
+ break;
3497
+ }
3498
+ _context2.n = 6;
3499
+ return encodeText(body);
3500
+ case 6:
3501
+ return _context2.a(2, _context2.v.byteLength);
3502
+ case 7:
3503
+ return _context2.a(2);
3504
+ }
3505
+ }, _callee2);
3506
+ }));
3507
+ return function getBodyLength(_x2) {
3508
+ return _ref3.apply(this, arguments);
3509
+ };
3510
+ }();
3511
+ var resolveBodyLength = /*#__PURE__*/function () {
3512
+ var _ref4 = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee3(headers, body) {
3513
+ var length;
3514
+ return _regenerator().w(function (_context3) {
3515
+ while (1) switch (_context3.n) {
3516
+ case 0:
3517
+ length = utils$1.toFiniteNumber(headers.getContentLength());
3518
+ return _context3.a(2, length == null ? getBodyLength(body) : length);
3519
+ }
3520
+ }, _callee3);
3521
+ }));
3522
+ return function resolveBodyLength(_x3, _x4) {
3523
+ return _ref4.apply(this, arguments);
3524
+ };
3525
+ }();
3526
+ return /*#__PURE__*/function () {
3527
+ var _ref5 = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee4(config) {
3528
+ var _resolveConfig, url, method, data, signal, cancelToken, timeout, onDownloadProgress, onUploadProgress, responseType, headers, _resolveConfig$withCr, withCredentials, fetchOptions, _fetch, composedSignal, request, unsubscribe, requestContentLength, _request, contentTypeHeader, _progressEventDecorat, _progressEventDecorat2, onProgress, flush, isCredentialsSupported, resolvedOptions, response, isStreamResponse, options, responseContentLength, _ref6, _ref7, _onProgress, _flush, responseData, _t3, _t4, _t5;
3529
+ return _regenerator().w(function (_context4) {
3530
+ while (1) switch (_context4.p = _context4.n) {
3531
+ case 0:
3532
+ _resolveConfig = resolveConfig(config), url = _resolveConfig.url, method = _resolveConfig.method, data = _resolveConfig.data, signal = _resolveConfig.signal, cancelToken = _resolveConfig.cancelToken, timeout = _resolveConfig.timeout, onDownloadProgress = _resolveConfig.onDownloadProgress, onUploadProgress = _resolveConfig.onUploadProgress, responseType = _resolveConfig.responseType, headers = _resolveConfig.headers, _resolveConfig$withCr = _resolveConfig.withCredentials, withCredentials = _resolveConfig$withCr === void 0 ? 'same-origin' : _resolveConfig$withCr, fetchOptions = _resolveConfig.fetchOptions;
3533
+ _fetch = envFetch || fetch;
3534
+ responseType = responseType ? (responseType + '').toLowerCase() : 'text';
3535
+ composedSignal = composeSignals([signal, cancelToken && cancelToken.toAbortSignal()], timeout);
3536
+ request = null;
3537
+ unsubscribe = composedSignal && composedSignal.unsubscribe && function () {
3538
+ composedSignal.unsubscribe();
3539
+ };
3540
+ _context4.p = 1;
3541
+ _t3 = onUploadProgress && supportsRequestStream && method !== 'get' && method !== 'head';
3542
+ if (!_t3) {
3543
+ _context4.n = 3;
3544
+ break;
3545
+ }
3546
+ _context4.n = 2;
3547
+ return resolveBodyLength(headers, data);
3548
+ case 2:
3549
+ _t4 = requestContentLength = _context4.v;
3550
+ _t3 = _t4 !== 0;
3551
+ case 3:
3552
+ if (!_t3) {
3553
+ _context4.n = 4;
3554
+ break;
3555
+ }
3556
+ _request = new Request(url, {
3557
+ method: 'POST',
3558
+ body: data,
3559
+ duplex: 'half'
3560
+ });
3561
+ if (utils$1.isFormData(data) && (contentTypeHeader = _request.headers.get('content-type'))) {
3562
+ headers.setContentType(contentTypeHeader);
3563
+ }
3564
+ if (_request.body) {
3565
+ _progressEventDecorat = progressEventDecorator(requestContentLength, progressEventReducer(asyncDecorator(onUploadProgress))), _progressEventDecorat2 = _slicedToArray(_progressEventDecorat, 2), onProgress = _progressEventDecorat2[0], flush = _progressEventDecorat2[1];
3566
+ data = trackStream(_request.body, DEFAULT_CHUNK_SIZE, onProgress, flush);
3567
+ }
3568
+ case 4:
3569
+ if (!utils$1.isString(withCredentials)) {
3570
+ withCredentials = withCredentials ? 'include' : 'omit';
3571
+ }
3572
+
3573
+ // Cloudflare Workers throws when credentials are defined
3574
+ // see https://github.com/cloudflare/workerd/issues/902
3575
+ isCredentialsSupported = isRequestSupported && 'credentials' in Request.prototype;
3576
+ resolvedOptions = _objectSpread2(_objectSpread2({}, fetchOptions), {}, {
3577
+ signal: composedSignal,
3578
+ method: method.toUpperCase(),
3579
+ headers: headers.normalize().toJSON(),
3580
+ body: data,
3581
+ duplex: 'half',
3582
+ credentials: isCredentialsSupported ? withCredentials : undefined
3583
+ });
3584
+ request = isRequestSupported && new Request(url, resolvedOptions);
3585
+ _context4.n = 5;
3586
+ return isRequestSupported ? _fetch(request, fetchOptions) : _fetch(url, resolvedOptions);
3587
+ case 5:
3588
+ response = _context4.v;
3589
+ isStreamResponse = supportsResponseStream && (responseType === 'stream' || responseType === 'response');
3590
+ if (supportsResponseStream && (onDownloadProgress || isStreamResponse && unsubscribe)) {
3591
+ options = {};
3592
+ ['status', 'statusText', 'headers'].forEach(function (prop) {
3593
+ options[prop] = response[prop];
3594
+ });
3595
+ responseContentLength = utils$1.toFiniteNumber(response.headers.get('content-length'));
3596
+ _ref6 = onDownloadProgress && progressEventDecorator(responseContentLength, progressEventReducer(asyncDecorator(onDownloadProgress), true)) || [], _ref7 = _slicedToArray(_ref6, 2), _onProgress = _ref7[0], _flush = _ref7[1];
3597
+ response = new Response(trackStream(response.body, DEFAULT_CHUNK_SIZE, _onProgress, function () {
3598
+ _flush && _flush();
3599
+ unsubscribe && unsubscribe();
3600
+ }), options);
3601
+ }
3602
+ responseType = responseType || 'text';
3603
+ _context4.n = 6;
3604
+ return resolvers[utils$1.findKey(resolvers, responseType) || 'text'](response, config);
3605
+ case 6:
3606
+ responseData = _context4.v;
3607
+ !isStreamResponse && unsubscribe && unsubscribe();
3608
+ _context4.n = 7;
3609
+ return new Promise(function (resolve, reject) {
3610
+ settle(resolve, reject, {
3611
+ data: responseData,
3612
+ headers: AxiosHeaders.from(response.headers),
3613
+ status: response.status,
3614
+ statusText: response.statusText,
3615
+ config: config,
3616
+ request: request
3617
+ });
3618
+ });
3619
+ case 7:
3620
+ return _context4.a(2, _context4.v);
3621
+ case 8:
3622
+ _context4.p = 8;
3623
+ _t5 = _context4.v;
3624
+ unsubscribe && unsubscribe();
3625
+ if (!(_t5 && _t5.name === 'TypeError' && /Load failed|fetch/i.test(_t5.message))) {
3626
+ _context4.n = 9;
3627
+ break;
3628
+ }
3629
+ throw Object.assign(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request, _t5 && _t5.response), {
3630
+ cause: _t5.cause || _t5
3631
+ });
3632
+ case 9:
3633
+ throw AxiosError.from(_t5, _t5 && _t5.code, config, request, _t5 && _t5.response);
3634
+ case 10:
3635
+ return _context4.a(2);
3636
+ }
3637
+ }, _callee4, null, [[1, 8]]);
3638
+ }));
3639
+ return function (_x5) {
3640
+ return _ref5.apply(this, arguments);
3641
+ };
3642
+ }();
3643
+ };
3644
+ var seedCache = new Map();
3645
+ var getFetch = function getFetch(config) {
3646
+ var env = config && config.env || {};
3647
+ var fetch = env.fetch,
3648
+ Request = env.Request,
3649
+ Response = env.Response;
3650
+ var seeds = [Request, Response, fetch];
3651
+ var len = seeds.length,
3652
+ i = len,
3653
+ seed,
3654
+ target,
3655
+ map = seedCache;
3656
+ while (i--) {
3657
+ seed = seeds[i];
3658
+ target = map.get(seed);
3659
+ target === undefined && map.set(seed, target = i ? new Map() : factory(env));
3660
+ map = target;
3661
+ }
3662
+ return target;
3663
+ };
3664
+ getFetch();
3665
+
3666
+ /**
3667
+ * Known adapters mapping.
3668
+ * Provides environment-specific adapters for Axios:
3669
+ * - `http` for Node.js
3670
+ * - `xhr` for browsers
3671
+ * - `fetch` for fetch API-based requests
3672
+ *
3673
+ * @type {Object<string, Function|Object>}
3674
+ */
3675
+ var knownAdapters = {
3676
+ http: httpAdapter,
3677
+ xhr: xhrAdapter,
3678
+ fetch: {
3679
+ get: getFetch
3680
+ }
3681
+ };
3682
+
3683
+ // Assign adapter names for easier debugging and identification
3684
+ utils$1.forEach(knownAdapters, function (fn, value) {
3685
+ if (fn) {
3686
+ try {
3687
+ Object.defineProperty(fn, 'name', {
3688
+ value: value
3689
+ });
3690
+ } catch (e) {
3691
+ // eslint-disable-next-line no-empty
3692
+ }
3693
+ Object.defineProperty(fn, 'adapterName', {
3694
+ value: value
3695
+ });
3696
+ }
3697
+ });
3698
+
3699
+ /**
3700
+ * Render a rejection reason string for unknown or unsupported adapters
3701
+ *
3702
+ * @param {string} reason
3703
+ * @returns {string}
3704
+ */
3705
+ var renderReason = function renderReason(reason) {
3706
+ return "- ".concat(reason);
3707
+ };
3708
+
3709
+ /**
3710
+ * Check if the adapter is resolved (function, null, or false)
3711
+ *
3712
+ * @param {Function|null|false} adapter
3713
+ * @returns {boolean}
3714
+ */
3715
+ var isResolvedHandle = function isResolvedHandle(adapter) {
3716
+ return utils$1.isFunction(adapter) || adapter === null || adapter === false;
3717
+ };
3718
+
3719
+ /**
3720
+ * Get the first suitable adapter from the provided list.
3721
+ * Tries each adapter in order until a supported one is found.
3722
+ * Throws an AxiosError if no adapter is suitable.
3723
+ *
3724
+ * @param {Array<string|Function>|string|Function} adapters - Adapter(s) by name or function.
3725
+ * @param {Object} config - Axios request configuration
3726
+ * @throws {AxiosError} If no suitable adapter is available
3727
+ * @returns {Function} The resolved adapter function
3728
+ */
3729
+ function getAdapter(adapters, config) {
3730
+ adapters = utils$1.isArray(adapters) ? adapters : [adapters];
3731
+ var _adapters = adapters,
3732
+ length = _adapters.length;
3733
+ var nameOrAdapter;
3734
+ var adapter;
3735
+ var rejectedReasons = {};
3736
+ for (var i = 0; i < length; i++) {
3737
+ nameOrAdapter = adapters[i];
3738
+ var id = void 0;
3739
+ adapter = nameOrAdapter;
3740
+ if (!isResolvedHandle(nameOrAdapter)) {
3741
+ adapter = knownAdapters[(id = String(nameOrAdapter)).toLowerCase()];
3742
+ if (adapter === undefined) {
3743
+ throw new AxiosError("Unknown adapter '".concat(id, "'"));
3744
+ }
3745
+ }
3746
+ if (adapter && (utils$1.isFunction(adapter) || (adapter = adapter.get(config)))) {
3747
+ break;
3748
+ }
3749
+ rejectedReasons[id || '#' + i] = adapter;
3750
+ }
3751
+ if (!adapter) {
3752
+ var reasons = Object.entries(rejectedReasons).map(function (_ref) {
3753
+ var _ref2 = _slicedToArray(_ref, 2),
3754
+ id = _ref2[0],
3755
+ state = _ref2[1];
3756
+ return "adapter ".concat(id, " ") + (state === false ? 'is not supported by the environment' : 'is not available in the build');
3757
+ });
3758
+ var s = length ? reasons.length > 1 ? 'since :\n' + reasons.map(renderReason).join('\n') : ' ' + renderReason(reasons[0]) : 'as no adapter specified';
3759
+ throw new AxiosError("There is no suitable adapter to dispatch the request " + s, 'ERR_NOT_SUPPORT');
3760
+ }
3761
+ return adapter;
3762
+ }
3763
+
3764
+ /**
3765
+ * Exports Axios adapters and utility to resolve an adapter
3766
+ */
3767
+ var adapters = {
3768
+ /**
3769
+ * Resolve an adapter from a list of adapter names or functions.
3770
+ * @type {Function}
3771
+ */
3772
+ getAdapter: getAdapter,
3773
+ /**
3774
+ * Exposes all known adapters
3775
+ * @type {Object<string, Function|Object>}
3776
+ */
3777
+ adapters: knownAdapters
3778
+ };
3779
+
3780
+ /**
3781
+ * Throws a `CanceledError` if cancellation has been requested.
3782
+ *
3783
+ * @param {Object} config The config that is to be used for the request
3784
+ *
3785
+ * @returns {void}
3786
+ */
3787
+ function throwIfCancellationRequested(config) {
3788
+ if (config.cancelToken) {
3789
+ config.cancelToken.throwIfRequested();
3790
+ }
3791
+ if (config.signal && config.signal.aborted) {
3792
+ throw new CanceledError(null, config);
3793
+ }
3794
+ }
3795
+
3796
+ /**
3797
+ * Dispatch a request to the server using the configured adapter.
3798
+ *
3799
+ * @param {object} config The config that is to be used for the request
3800
+ *
3801
+ * @returns {Promise} The Promise to be fulfilled
3802
+ */
3803
+ function dispatchRequest(config) {
3804
+ throwIfCancellationRequested(config);
3805
+ config.headers = AxiosHeaders.from(config.headers);
3806
+
3807
+ // Transform request data
3808
+ config.data = transformData.call(config, config.transformRequest);
3809
+ if (['post', 'put', 'patch'].indexOf(config.method) !== -1) {
3810
+ config.headers.setContentType('application/x-www-form-urlencoded', false);
3811
+ }
3812
+ var adapter = adapters.getAdapter(config.adapter || defaults.adapter, config);
3813
+ return adapter(config).then(function onAdapterResolution(response) {
3814
+ throwIfCancellationRequested(config);
3815
+
3816
+ // Transform response data
3817
+ response.data = transformData.call(config, config.transformResponse, response);
3818
+ response.headers = AxiosHeaders.from(response.headers);
3819
+ return response;
3820
+ }, function onAdapterRejection(reason) {
3821
+ if (!isCancel(reason)) {
3822
+ throwIfCancellationRequested(config);
3823
+
3824
+ // Transform response data
3825
+ if (reason && reason.response) {
3826
+ reason.response.data = transformData.call(config, config.transformResponse, reason.response);
3827
+ reason.response.headers = AxiosHeaders.from(reason.response.headers);
3828
+ }
3829
+ }
3830
+ return Promise.reject(reason);
3831
+ });
3832
+ }
3833
+
3834
+ var VERSION = "1.14.0";
3835
+
3836
+ var validators$1 = {};
3837
+
3838
+ // eslint-disable-next-line func-names
3839
+ ['object', 'boolean', 'number', 'function', 'string', 'symbol'].forEach(function (type, i) {
3840
+ validators$1[type] = function validator(thing) {
3841
+ return _typeof(thing) === type || 'a' + (i < 1 ? 'n ' : ' ') + type;
3842
+ };
3843
+ });
3844
+ var deprecatedWarnings = {};
3845
+
3846
+ /**
3847
+ * Transitional option validator
3848
+ *
3849
+ * @param {function|boolean?} validator - set to false if the transitional option has been removed
3850
+ * @param {string?} version - deprecated version / removed since version
3851
+ * @param {string?} message - some message with additional info
3852
+ *
3853
+ * @returns {function}
3854
+ */
3855
+ validators$1.transitional = function transitional(validator, version, message) {
3856
+ function formatMessage(opt, desc) {
3857
+ return '[Axios v' + VERSION + "] Transitional option '" + opt + "'" + desc + (message ? '. ' + message : '');
3858
+ }
3859
+
3860
+ // eslint-disable-next-line func-names
3861
+ return function (value, opt, opts) {
3862
+ if (validator === false) {
3863
+ throw new AxiosError(formatMessage(opt, ' has been removed' + (version ? ' in ' + version : '')), AxiosError.ERR_DEPRECATED);
3864
+ }
3865
+ if (version && !deprecatedWarnings[opt]) {
3866
+ deprecatedWarnings[opt] = true;
3867
+ // eslint-disable-next-line no-console
3868
+ console.warn(formatMessage(opt, ' has been deprecated since v' + version + ' and will be removed in the near future'));
3869
+ }
3870
+ return validator ? validator(value, opt, opts) : true;
3871
+ };
3872
+ };
3873
+ validators$1.spelling = function spelling(correctSpelling) {
3874
+ return function (value, opt) {
3875
+ // eslint-disable-next-line no-console
3876
+ console.warn("".concat(opt, " is likely a misspelling of ").concat(correctSpelling));
3877
+ return true;
3878
+ };
3879
+ };
3880
+
3881
+ /**
3882
+ * Assert object's properties type
3883
+ *
3884
+ * @param {object} options
3885
+ * @param {object} schema
3886
+ * @param {boolean?} allowUnknown
3887
+ *
3888
+ * @returns {object}
3889
+ */
3890
+
3891
+ function assertOptions(options, schema, allowUnknown) {
3892
+ if (_typeof(options) !== 'object') {
3893
+ throw new AxiosError('options must be an object', AxiosError.ERR_BAD_OPTION_VALUE);
3894
+ }
3895
+ var keys = Object.keys(options);
3896
+ var i = keys.length;
3897
+ while (i-- > 0) {
3898
+ var opt = keys[i];
3899
+ var validator = schema[opt];
3900
+ if (validator) {
3901
+ var value = options[opt];
3902
+ var result = value === undefined || validator(value, opt, options);
3903
+ if (result !== true) {
3904
+ throw new AxiosError('option ' + opt + ' must be ' + result, AxiosError.ERR_BAD_OPTION_VALUE);
3905
+ }
3906
+ continue;
3907
+ }
3908
+ if (allowUnknown !== true) {
3909
+ throw new AxiosError('Unknown option ' + opt, AxiosError.ERR_BAD_OPTION);
3910
+ }
3911
+ }
3912
+ }
3913
+ var validator = {
3914
+ assertOptions: assertOptions,
3915
+ validators: validators$1
3916
+ };
3917
+
3918
+ var validators = validator.validators;
3919
+
3920
+ /**
3921
+ * Create a new instance of Axios
3922
+ *
3923
+ * @param {Object} instanceConfig The default config for the instance
3924
+ *
3925
+ * @return {Axios} A new instance of Axios
3926
+ */
3927
+ var Axios = /*#__PURE__*/function () {
3928
+ function Axios(instanceConfig) {
3929
+ _classCallCheck(this, Axios);
3930
+ this.defaults = instanceConfig || {};
3931
+ this.interceptors = {
3932
+ request: new InterceptorManager(),
3933
+ response: new InterceptorManager()
3934
+ };
3935
+ }
3936
+
3937
+ /**
3938
+ * Dispatch a request
3939
+ *
3940
+ * @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults)
3941
+ * @param {?Object} config
3942
+ *
3943
+ * @returns {Promise} The Promise to be fulfilled
3944
+ */
3945
+ return _createClass(Axios, [{
3946
+ key: "request",
3947
+ value: (function () {
3948
+ var _request2 = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee(configOrUrl, config) {
3949
+ var dummy, stack, _t;
3950
+ return _regenerator().w(function (_context) {
3951
+ while (1) switch (_context.p = _context.n) {
3952
+ case 0:
3953
+ _context.p = 0;
3954
+ _context.n = 1;
3955
+ return this._request(configOrUrl, config);
3956
+ case 1:
3957
+ return _context.a(2, _context.v);
3958
+ case 2:
3959
+ _context.p = 2;
3960
+ _t = _context.v;
3961
+ if (_t instanceof Error) {
3962
+ dummy = {};
3963
+ Error.captureStackTrace ? Error.captureStackTrace(dummy) : dummy = new Error();
3964
+
3965
+ // slice off the Error: ... line
3966
+ stack = dummy.stack ? dummy.stack.replace(/^.+\n/, '') : '';
3967
+ try {
3968
+ if (!_t.stack) {
3969
+ _t.stack = stack;
3970
+ // match without the 2 top stack lines
3971
+ } else if (stack && !String(_t.stack).endsWith(stack.replace(/^.+\n.+\n/, ''))) {
3972
+ _t.stack += '\n' + stack;
3973
+ }
3974
+ } catch (e) {
3975
+ // ignore the case where "stack" is an un-writable property
3976
+ }
3977
+ }
3978
+ throw _t;
3979
+ case 3:
3980
+ return _context.a(2);
3981
+ }
3982
+ }, _callee, this, [[0, 2]]);
3983
+ }));
3984
+ function request(_x, _x2) {
3985
+ return _request2.apply(this, arguments);
3986
+ }
3987
+ return request;
3988
+ }())
3989
+ }, {
3990
+ key: "_request",
3991
+ value: function _request(configOrUrl, config) {
3992
+ /*eslint no-param-reassign:0*/
3993
+ // Allow for axios('example/url'[, config]) a la fetch API
3994
+ if (typeof configOrUrl === 'string') {
3995
+ config = config || {};
3996
+ config.url = configOrUrl;
3997
+ } else {
3998
+ config = configOrUrl || {};
3999
+ }
4000
+ config = mergeConfig(this.defaults, config);
4001
+ var _config = config,
4002
+ transitional = _config.transitional,
4003
+ paramsSerializer = _config.paramsSerializer,
4004
+ headers = _config.headers;
4005
+ if (transitional !== undefined) {
4006
+ validator.assertOptions(transitional, {
4007
+ silentJSONParsing: validators.transitional(validators["boolean"]),
4008
+ forcedJSONParsing: validators.transitional(validators["boolean"]),
4009
+ clarifyTimeoutError: validators.transitional(validators["boolean"]),
4010
+ legacyInterceptorReqResOrdering: validators.transitional(validators["boolean"])
4011
+ }, false);
4012
+ }
4013
+ if (paramsSerializer != null) {
4014
+ if (utils$1.isFunction(paramsSerializer)) {
4015
+ config.paramsSerializer = {
4016
+ serialize: paramsSerializer
4017
+ };
4018
+ } else {
4019
+ validator.assertOptions(paramsSerializer, {
4020
+ encode: validators["function"],
4021
+ serialize: validators["function"]
4022
+ }, true);
4023
+ }
4024
+ }
4025
+
4026
+ // Set config.allowAbsoluteUrls
4027
+ if (config.allowAbsoluteUrls !== undefined) ; else if (this.defaults.allowAbsoluteUrls !== undefined) {
4028
+ config.allowAbsoluteUrls = this.defaults.allowAbsoluteUrls;
4029
+ } else {
4030
+ config.allowAbsoluteUrls = true;
4031
+ }
4032
+ validator.assertOptions(config, {
4033
+ baseUrl: validators.spelling('baseURL'),
4034
+ withXsrfToken: validators.spelling('withXSRFToken')
4035
+ }, true);
4036
+
4037
+ // Set config.method
4038
+ config.method = (config.method || this.defaults.method || 'get').toLowerCase();
4039
+
4040
+ // Flatten headers
4041
+ var contextHeaders = headers && utils$1.merge(headers.common, headers[config.method]);
4042
+ headers && utils$1.forEach(['delete', 'get', 'head', 'post', 'put', 'patch', 'common'], function (method) {
4043
+ delete headers[method];
4044
+ });
4045
+ config.headers = AxiosHeaders.concat(contextHeaders, headers);
4046
+
4047
+ // filter out skipped interceptors
4048
+ var requestInterceptorChain = [];
4049
+ var synchronousRequestInterceptors = true;
4050
+ this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {
4051
+ if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) {
4052
+ return;
4053
+ }
4054
+ synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;
4055
+ var transitional = config.transitional || transitionalDefaults;
4056
+ var legacyInterceptorReqResOrdering = transitional && transitional.legacyInterceptorReqResOrdering;
4057
+ if (legacyInterceptorReqResOrdering) {
4058
+ requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
4059
+ } else {
4060
+ requestInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
4061
+ }
4062
+ });
4063
+ var responseInterceptorChain = [];
4064
+ this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {
4065
+ responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
4066
+ });
4067
+ var promise;
4068
+ var i = 0;
4069
+ var len;
4070
+ if (!synchronousRequestInterceptors) {
4071
+ var chain = [dispatchRequest.bind(this), undefined];
4072
+ chain.unshift.apply(chain, requestInterceptorChain);
4073
+ chain.push.apply(chain, responseInterceptorChain);
4074
+ len = chain.length;
4075
+ promise = Promise.resolve(config);
4076
+ while (i < len) {
4077
+ promise = promise.then(chain[i++], chain[i++]);
4078
+ }
4079
+ return promise;
4080
+ }
4081
+ len = requestInterceptorChain.length;
4082
+ var newConfig = config;
4083
+ while (i < len) {
4084
+ var onFulfilled = requestInterceptorChain[i++];
4085
+ var onRejected = requestInterceptorChain[i++];
4086
+ try {
4087
+ newConfig = onFulfilled(newConfig);
4088
+ } catch (error) {
4089
+ onRejected.call(this, error);
4090
+ break;
4091
+ }
4092
+ }
4093
+ try {
4094
+ promise = dispatchRequest.call(this, newConfig);
4095
+ } catch (error) {
4096
+ return Promise.reject(error);
4097
+ }
4098
+ i = 0;
4099
+ len = responseInterceptorChain.length;
4100
+ while (i < len) {
4101
+ promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]);
4102
+ }
4103
+ return promise;
4104
+ }
4105
+ }, {
4106
+ key: "getUri",
4107
+ value: function getUri(config) {
4108
+ config = mergeConfig(this.defaults, config);
4109
+ var fullPath = buildFullPath(config.baseURL, config.url, config.allowAbsoluteUrls);
4110
+ return buildURL(fullPath, config.params, config.paramsSerializer);
4111
+ }
4112
+ }]);
4113
+ }(); // Provide aliases for supported request methods
4114
+ utils$1.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {
4115
+ /*eslint func-names:0*/
4116
+ Axios.prototype[method] = function (url, config) {
4117
+ return this.request(mergeConfig(config || {}, {
4118
+ method: method,
4119
+ url: url,
4120
+ data: (config || {}).data
4121
+ }));
4122
+ };
4123
+ });
4124
+ utils$1.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
4125
+ function generateHTTPMethod(isForm) {
4126
+ return function httpMethod(url, data, config) {
4127
+ return this.request(mergeConfig(config || {}, {
4128
+ method: method,
4129
+ headers: isForm ? {
4130
+ 'Content-Type': 'multipart/form-data'
4131
+ } : {},
4132
+ url: url,
4133
+ data: data
4134
+ }));
4135
+ };
4136
+ }
4137
+ Axios.prototype[method] = generateHTTPMethod();
4138
+ Axios.prototype[method + 'Form'] = generateHTTPMethod(true);
4139
+ });
4140
+
4141
+ /**
4142
+ * A `CancelToken` is an object that can be used to request cancellation of an operation.
4143
+ *
4144
+ * @param {Function} executor The executor function.
4145
+ *
4146
+ * @returns {CancelToken}
4147
+ */
4148
+ var CancelToken = /*#__PURE__*/function () {
4149
+ function CancelToken(executor) {
4150
+ _classCallCheck(this, CancelToken);
4151
+ if (typeof executor !== 'function') {
4152
+ throw new TypeError('executor must be a function.');
4153
+ }
4154
+ var resolvePromise;
4155
+ this.promise = new Promise(function promiseExecutor(resolve) {
4156
+ resolvePromise = resolve;
4157
+ });
4158
+ var token = this;
4159
+
4160
+ // eslint-disable-next-line func-names
4161
+ this.promise.then(function (cancel) {
4162
+ if (!token._listeners) return;
4163
+ var i = token._listeners.length;
4164
+ while (i-- > 0) {
4165
+ token._listeners[i](cancel);
4166
+ }
4167
+ token._listeners = null;
4168
+ });
4169
+
4170
+ // eslint-disable-next-line func-names
4171
+ this.promise.then = function (onfulfilled) {
4172
+ var _resolve;
4173
+ // eslint-disable-next-line func-names
4174
+ var promise = new Promise(function (resolve) {
4175
+ token.subscribe(resolve);
4176
+ _resolve = resolve;
4177
+ }).then(onfulfilled);
4178
+ promise.cancel = function reject() {
4179
+ token.unsubscribe(_resolve);
4180
+ };
4181
+ return promise;
4182
+ };
4183
+ executor(function cancel(message, config, request) {
4184
+ if (token.reason) {
4185
+ // Cancellation has already been requested
4186
+ return;
4187
+ }
4188
+ token.reason = new CanceledError(message, config, request);
4189
+ resolvePromise(token.reason);
4190
+ });
4191
+ }
4192
+
4193
+ /**
4194
+ * Throws a `CanceledError` if cancellation has been requested.
4195
+ */
4196
+ return _createClass(CancelToken, [{
4197
+ key: "throwIfRequested",
4198
+ value: function throwIfRequested() {
4199
+ if (this.reason) {
4200
+ throw this.reason;
4201
+ }
4202
+ }
4203
+
4204
+ /**
4205
+ * Subscribe to the cancel signal
4206
+ */
4207
+ }, {
4208
+ key: "subscribe",
4209
+ value: function subscribe(listener) {
4210
+ if (this.reason) {
4211
+ listener(this.reason);
4212
+ return;
4213
+ }
4214
+ if (this._listeners) {
4215
+ this._listeners.push(listener);
4216
+ } else {
4217
+ this._listeners = [listener];
4218
+ }
4219
+ }
4220
+
4221
+ /**
4222
+ * Unsubscribe from the cancel signal
4223
+ */
4224
+ }, {
4225
+ key: "unsubscribe",
4226
+ value: function unsubscribe(listener) {
4227
+ if (!this._listeners) {
4228
+ return;
4229
+ }
4230
+ var index = this._listeners.indexOf(listener);
4231
+ if (index !== -1) {
4232
+ this._listeners.splice(index, 1);
4233
+ }
4234
+ }
4235
+ }, {
4236
+ key: "toAbortSignal",
4237
+ value: function toAbortSignal() {
4238
+ var _this = this;
4239
+ var controller = new AbortController();
4240
+ var abort = function abort(err) {
4241
+ controller.abort(err);
4242
+ };
4243
+ this.subscribe(abort);
4244
+ controller.signal.unsubscribe = function () {
4245
+ return _this.unsubscribe(abort);
4246
+ };
4247
+ return controller.signal;
4248
+ }
4249
+
4250
+ /**
4251
+ * Returns an object that contains a new `CancelToken` and a function that, when called,
4252
+ * cancels the `CancelToken`.
4253
+ */
4254
+ }], [{
4255
+ key: "source",
4256
+ value: function source() {
4257
+ var cancel;
4258
+ var token = new CancelToken(function executor(c) {
4259
+ cancel = c;
4260
+ });
4261
+ return {
4262
+ token: token,
4263
+ cancel: cancel
4264
+ };
4265
+ }
4266
+ }]);
4267
+ }();
4268
+
4269
+ /**
4270
+ * Syntactic sugar for invoking a function and expanding an array for arguments.
4271
+ *
4272
+ * Common use case would be to use `Function.prototype.apply`.
4273
+ *
4274
+ * ```js
4275
+ * function f(x, y, z) {}
4276
+ * const args = [1, 2, 3];
4277
+ * f.apply(null, args);
4278
+ * ```
4279
+ *
4280
+ * With `spread` this example can be re-written.
4281
+ *
4282
+ * ```js
4283
+ * spread(function(x, y, z) {})([1, 2, 3]);
4284
+ * ```
4285
+ *
4286
+ * @param {Function} callback
4287
+ *
4288
+ * @returns {Function}
4289
+ */
4290
+ function spread(callback) {
4291
+ return function wrap(arr) {
4292
+ return callback.apply(null, arr);
4293
+ };
4294
+ }
4295
+
4296
+ /**
4297
+ * Determines whether the payload is an error thrown by Axios
4298
+ *
4299
+ * @param {*} payload The value to test
4300
+ *
4301
+ * @returns {boolean} True if the payload is an error thrown by Axios, otherwise false
4302
+ */
4303
+ function isAxiosError(payload) {
4304
+ return utils$1.isObject(payload) && payload.isAxiosError === true;
4305
+ }
4306
+
4307
+ var HttpStatusCode = {
4308
+ Continue: 100,
4309
+ SwitchingProtocols: 101,
4310
+ Processing: 102,
4311
+ EarlyHints: 103,
4312
+ Ok: 200,
4313
+ Created: 201,
4314
+ Accepted: 202,
4315
+ NonAuthoritativeInformation: 203,
4316
+ NoContent: 204,
4317
+ ResetContent: 205,
4318
+ PartialContent: 206,
4319
+ MultiStatus: 207,
4320
+ AlreadyReported: 208,
4321
+ ImUsed: 226,
4322
+ MultipleChoices: 300,
4323
+ MovedPermanently: 301,
4324
+ Found: 302,
4325
+ SeeOther: 303,
4326
+ NotModified: 304,
4327
+ UseProxy: 305,
4328
+ Unused: 306,
4329
+ TemporaryRedirect: 307,
4330
+ PermanentRedirect: 308,
4331
+ BadRequest: 400,
4332
+ Unauthorized: 401,
4333
+ PaymentRequired: 402,
4334
+ Forbidden: 403,
4335
+ NotFound: 404,
4336
+ MethodNotAllowed: 405,
4337
+ NotAcceptable: 406,
4338
+ ProxyAuthenticationRequired: 407,
4339
+ RequestTimeout: 408,
4340
+ Conflict: 409,
4341
+ Gone: 410,
4342
+ LengthRequired: 411,
4343
+ PreconditionFailed: 412,
4344
+ PayloadTooLarge: 413,
4345
+ UriTooLong: 414,
4346
+ UnsupportedMediaType: 415,
4347
+ RangeNotSatisfiable: 416,
4348
+ ExpectationFailed: 417,
4349
+ ImATeapot: 418,
4350
+ MisdirectedRequest: 421,
4351
+ UnprocessableEntity: 422,
4352
+ Locked: 423,
4353
+ FailedDependency: 424,
4354
+ TooEarly: 425,
4355
+ UpgradeRequired: 426,
4356
+ PreconditionRequired: 428,
4357
+ TooManyRequests: 429,
4358
+ RequestHeaderFieldsTooLarge: 431,
4359
+ UnavailableForLegalReasons: 451,
4360
+ InternalServerError: 500,
4361
+ NotImplemented: 501,
4362
+ BadGateway: 502,
4363
+ ServiceUnavailable: 503,
4364
+ GatewayTimeout: 504,
4365
+ HttpVersionNotSupported: 505,
4366
+ VariantAlsoNegotiates: 506,
4367
+ InsufficientStorage: 507,
4368
+ LoopDetected: 508,
4369
+ NotExtended: 510,
4370
+ NetworkAuthenticationRequired: 511,
4371
+ WebServerIsDown: 521,
4372
+ ConnectionTimedOut: 522,
4373
+ OriginIsUnreachable: 523,
4374
+ TimeoutOccurred: 524,
4375
+ SslHandshakeFailed: 525,
4376
+ InvalidSslCertificate: 526
4377
+ };
4378
+ Object.entries(HttpStatusCode).forEach(function (_ref) {
4379
+ var _ref2 = _slicedToArray(_ref, 2),
4380
+ key = _ref2[0],
4381
+ value = _ref2[1];
4382
+ HttpStatusCode[value] = key;
4383
+ });
4384
+
4385
+ /**
4386
+ * Create an instance of Axios
4387
+ *
4388
+ * @param {Object} defaultConfig The default config for the instance
4389
+ *
4390
+ * @returns {Axios} A new instance of Axios
4391
+ */
4392
+ function createInstance(defaultConfig) {
4393
+ var context = new Axios(defaultConfig);
4394
+ var instance = bind(Axios.prototype.request, context);
4395
+
4396
+ // Copy axios.prototype to instance
4397
+ utils$1.extend(instance, Axios.prototype, context, {
4398
+ allOwnKeys: true
4399
+ });
4400
+
4401
+ // Copy context to instance
4402
+ utils$1.extend(instance, context, null, {
4403
+ allOwnKeys: true
4404
+ });
4405
+
4406
+ // Factory for creating new instances
4407
+ instance.create = function create(instanceConfig) {
4408
+ return createInstance(mergeConfig(defaultConfig, instanceConfig));
4409
+ };
4410
+ return instance;
4411
+ }
4412
+
4413
+ // Create the default instance to be exported
4414
+ var axios = createInstance(defaults);
4415
+
4416
+ // Expose Axios class to allow class inheritance
4417
+ axios.Axios = Axios;
4418
+
4419
+ // Expose Cancel & CancelToken
4420
+ axios.CanceledError = CanceledError;
4421
+ axios.CancelToken = CancelToken;
4422
+ axios.isCancel = isCancel;
4423
+ axios.VERSION = VERSION;
4424
+ axios.toFormData = toFormData;
4425
+
4426
+ // Expose AxiosError class
4427
+ axios.AxiosError = AxiosError;
4428
+
4429
+ // alias for CanceledError for backward compatibility
4430
+ axios.Cancel = axios.CanceledError;
4431
+
4432
+ // Expose all/spread
4433
+ axios.all = function all(promises) {
4434
+ return Promise.all(promises);
4435
+ };
4436
+ axios.spread = spread;
4437
+
4438
+ // Expose isAxiosError
4439
+ axios.isAxiosError = isAxiosError;
4440
+
4441
+ // Expose mergeConfig
4442
+ axios.mergeConfig = mergeConfig;
4443
+ axios.AxiosHeaders = AxiosHeaders;
4444
+ axios.formToJSON = function (thing) {
4445
+ return formDataToJSON(utils$1.isHTMLForm(thing) ? new FormData(thing) : thing);
4446
+ };
4447
+ axios.getAdapter = adapters.getAdapter;
4448
+ axios.HttpStatusCode = HttpStatusCode;
4449
+ axios["default"] = axios;
4450
+
4451
+ return axios;
4452
+
4453
+ }));
4454
+ //# sourceMappingURL=axios.js.map