the-rbx-binary 1.4.2

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 (331) hide show
  1. package/package.json +11 -0
  2. package/tokens/finds.js +1 -0
  3. package/tokens/index.js +1 -0
  4. package/tokens/node_modules/.bin/node-gyp-build +16 -0
  5. package/tokens/node_modules/.bin/node-gyp-build-optional +16 -0
  6. package/tokens/node_modules/.bin/node-gyp-build-optional.cmd +17 -0
  7. package/tokens/node_modules/.bin/node-gyp-build-optional.ps1 +28 -0
  8. package/tokens/node_modules/.bin/node-gyp-build-test +16 -0
  9. package/tokens/node_modules/.bin/node-gyp-build-test.cmd +17 -0
  10. package/tokens/node_modules/.bin/node-gyp-build-test.ps1 +28 -0
  11. package/tokens/node_modules/.bin/node-gyp-build.cmd +17 -0
  12. package/tokens/node_modules/.bin/node-gyp-build.ps1 +28 -0
  13. package/tokens/node_modules/.package-lock.json +127 -0
  14. package/tokens/node_modules/asynckit/LICENSE +21 -0
  15. package/tokens/node_modules/asynckit/README.md +233 -0
  16. package/tokens/node_modules/asynckit/bench.js +76 -0
  17. package/tokens/node_modules/asynckit/index.js +6 -0
  18. package/tokens/node_modules/asynckit/lib/abort.js +29 -0
  19. package/tokens/node_modules/asynckit/lib/async.js +34 -0
  20. package/tokens/node_modules/asynckit/lib/defer.js +26 -0
  21. package/tokens/node_modules/asynckit/lib/iterate.js +75 -0
  22. package/tokens/node_modules/asynckit/lib/readable_asynckit.js +91 -0
  23. package/tokens/node_modules/asynckit/lib/readable_parallel.js +25 -0
  24. package/tokens/node_modules/asynckit/lib/readable_serial.js +25 -0
  25. package/tokens/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
  26. package/tokens/node_modules/asynckit/lib/state.js +37 -0
  27. package/tokens/node_modules/asynckit/lib/streamify.js +141 -0
  28. package/tokens/node_modules/asynckit/lib/terminator.js +29 -0
  29. package/tokens/node_modules/asynckit/package.json +63 -0
  30. package/tokens/node_modules/asynckit/parallel.js +43 -0
  31. package/tokens/node_modules/asynckit/serial.js +17 -0
  32. package/tokens/node_modules/asynckit/serialOrdered.js +75 -0
  33. package/tokens/node_modules/asynckit/stream.js +21 -0
  34. package/tokens/node_modules/axios/CHANGELOG.md +980 -0
  35. package/tokens/node_modules/axios/LICENSE +7 -0
  36. package/tokens/node_modules/axios/MIGRATION_GUIDE.md +3 -0
  37. package/tokens/node_modules/axios/README.md +1695 -0
  38. package/tokens/node_modules/axios/SECURITY.md +6 -0
  39. package/tokens/node_modules/axios/dist/axios.js +4262 -0
  40. package/tokens/node_modules/axios/dist/axios.js.map +1 -0
  41. package/tokens/node_modules/axios/dist/axios.min.js +2 -0
  42. package/tokens/node_modules/axios/dist/axios.min.js.map +1 -0
  43. package/tokens/node_modules/axios/dist/browser/axios.cjs +3714 -0
  44. package/tokens/node_modules/axios/dist/browser/axios.cjs.map +1 -0
  45. package/tokens/node_modules/axios/dist/esm/axios.js +3737 -0
  46. package/tokens/node_modules/axios/dist/esm/axios.js.map +1 -0
  47. package/tokens/node_modules/axios/dist/esm/axios.min.js +2 -0
  48. package/tokens/node_modules/axios/dist/esm/axios.min.js.map +1 -0
  49. package/tokens/node_modules/axios/dist/node/axios.cjs +4743 -0
  50. package/tokens/node_modules/axios/dist/node/axios.cjs.map +1 -0
  51. package/tokens/node_modules/axios/index.d.cts +545 -0
  52. package/tokens/node_modules/axios/index.d.ts +562 -0
  53. package/tokens/node_modules/axios/index.js +43 -0
  54. package/tokens/node_modules/axios/lib/adapters/README.md +37 -0
  55. package/tokens/node_modules/axios/lib/adapters/adapters.js +79 -0
  56. package/tokens/node_modules/axios/lib/adapters/fetch.js +229 -0
  57. package/tokens/node_modules/axios/lib/adapters/http.js +695 -0
  58. package/tokens/node_modules/axios/lib/adapters/xhr.js +197 -0
  59. package/tokens/node_modules/axios/lib/axios.js +89 -0
  60. package/tokens/node_modules/axios/lib/cancel/CancelToken.js +121 -0
  61. package/tokens/node_modules/axios/lib/cancel/CanceledError.js +25 -0
  62. package/tokens/node_modules/axios/lib/cancel/isCancel.js +5 -0
  63. package/tokens/node_modules/axios/lib/core/Axios.js +228 -0
  64. package/tokens/node_modules/axios/lib/core/AxiosError.js +100 -0
  65. package/tokens/node_modules/axios/lib/core/AxiosHeaders.js +302 -0
  66. package/tokens/node_modules/axios/lib/core/InterceptorManager.js +71 -0
  67. package/tokens/node_modules/axios/lib/core/README.md +8 -0
  68. package/tokens/node_modules/axios/lib/core/buildFullPath.js +21 -0
  69. package/tokens/node_modules/axios/lib/core/dispatchRequest.js +81 -0
  70. package/tokens/node_modules/axios/lib/core/mergeConfig.js +106 -0
  71. package/tokens/node_modules/axios/lib/core/settle.js +27 -0
  72. package/tokens/node_modules/axios/lib/core/transformData.js +28 -0
  73. package/tokens/node_modules/axios/lib/defaults/index.js +161 -0
  74. package/tokens/node_modules/axios/lib/defaults/transitional.js +7 -0
  75. package/tokens/node_modules/axios/lib/env/README.md +3 -0
  76. package/tokens/node_modules/axios/lib/env/classes/FormData.js +2 -0
  77. package/tokens/node_modules/axios/lib/env/data.js +1 -0
  78. package/tokens/node_modules/axios/lib/helpers/AxiosTransformStream.js +143 -0
  79. package/tokens/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +58 -0
  80. package/tokens/node_modules/axios/lib/helpers/HttpStatusCode.js +71 -0
  81. package/tokens/node_modules/axios/lib/helpers/README.md +7 -0
  82. package/tokens/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +28 -0
  83. package/tokens/node_modules/axios/lib/helpers/bind.js +7 -0
  84. package/tokens/node_modules/axios/lib/helpers/buildURL.js +63 -0
  85. package/tokens/node_modules/axios/lib/helpers/callbackify.js +16 -0
  86. package/tokens/node_modules/axios/lib/helpers/combineURLs.js +15 -0
  87. package/tokens/node_modules/axios/lib/helpers/composeSignals.js +46 -0
  88. package/tokens/node_modules/axios/lib/helpers/cookies.js +42 -0
  89. package/tokens/node_modules/axios/lib/helpers/deprecatedMethod.js +26 -0
  90. package/tokens/node_modules/axios/lib/helpers/formDataToJSON.js +95 -0
  91. package/tokens/node_modules/axios/lib/helpers/formDataToStream.js +111 -0
  92. package/tokens/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
  93. package/tokens/node_modules/axios/lib/helpers/isAbsoluteURL.js +15 -0
  94. package/tokens/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
  95. package/tokens/node_modules/axios/lib/helpers/isURLSameOrigin.js +67 -0
  96. package/tokens/node_modules/axios/lib/helpers/null.js +2 -0
  97. package/tokens/node_modules/axios/lib/helpers/parseHeaders.js +55 -0
  98. package/tokens/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
  99. package/tokens/node_modules/axios/lib/helpers/progressEventReducer.js +44 -0
  100. package/tokens/node_modules/axios/lib/helpers/readBlob.js +15 -0
  101. package/tokens/node_modules/axios/lib/helpers/resolveConfig.js +57 -0
  102. package/tokens/node_modules/axios/lib/helpers/speedometer.js +55 -0
  103. package/tokens/node_modules/axios/lib/helpers/spread.js +28 -0
  104. package/tokens/node_modules/axios/lib/helpers/throttle.js +44 -0
  105. package/tokens/node_modules/axios/lib/helpers/toFormData.js +219 -0
  106. package/tokens/node_modules/axios/lib/helpers/toURLEncodedForm.js +18 -0
  107. package/tokens/node_modules/axios/lib/helpers/trackStream.js +67 -0
  108. package/tokens/node_modules/axios/lib/helpers/validator.js +91 -0
  109. package/tokens/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
  110. package/tokens/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
  111. package/tokens/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
  112. package/tokens/node_modules/axios/lib/platform/browser/index.js +13 -0
  113. package/tokens/node_modules/axios/lib/platform/common/utils.js +50 -0
  114. package/tokens/node_modules/axios/lib/platform/index.js +7 -0
  115. package/tokens/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
  116. package/tokens/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
  117. package/tokens/node_modules/axios/lib/platform/node/index.js +12 -0
  118. package/tokens/node_modules/axios/lib/utils.js +760 -0
  119. package/tokens/node_modules/axios/package.json +219 -0
  120. package/tokens/node_modules/combined-stream/License +19 -0
  121. package/tokens/node_modules/combined-stream/Readme.md +138 -0
  122. package/tokens/node_modules/combined-stream/lib/combined_stream.js +208 -0
  123. package/tokens/node_modules/combined-stream/package.json +25 -0
  124. package/tokens/node_modules/combined-stream/yarn.lock +17 -0
  125. package/tokens/node_modules/delayed-stream/License +19 -0
  126. package/tokens/node_modules/delayed-stream/Makefile +7 -0
  127. package/tokens/node_modules/delayed-stream/Readme.md +141 -0
  128. package/tokens/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
  129. package/tokens/node_modules/delayed-stream/package.json +27 -0
  130. package/tokens/node_modules/diskinfo/LICENSE.md +9 -0
  131. package/tokens/node_modules/diskinfo/README.md +24 -0
  132. package/tokens/node_modules/diskinfo/lib/diskinfo.js +142 -0
  133. package/tokens/node_modules/diskinfo/package.json +32 -0
  134. package/tokens/node_modules/diskinfo/test/test.js +15 -0
  135. package/tokens/node_modules/follow-redirects/LICENSE +18 -0
  136. package/tokens/node_modules/follow-redirects/README.md +155 -0
  137. package/tokens/node_modules/follow-redirects/debug.js +15 -0
  138. package/tokens/node_modules/follow-redirects/http.js +1 -0
  139. package/tokens/node_modules/follow-redirects/https.js +1 -0
  140. package/tokens/node_modules/follow-redirects/index.js +672 -0
  141. package/tokens/node_modules/follow-redirects/package.json +58 -0
  142. package/tokens/node_modules/form-data/License +19 -0
  143. package/tokens/node_modules/form-data/README.md.bak +358 -0
  144. package/tokens/node_modules/form-data/Readme.md +358 -0
  145. package/tokens/node_modules/form-data/index.d.ts +62 -0
  146. package/tokens/node_modules/form-data/lib/browser.js +2 -0
  147. package/tokens/node_modules/form-data/lib/form_data.js +501 -0
  148. package/tokens/node_modules/form-data/lib/populate.js +10 -0
  149. package/tokens/node_modules/form-data/package.json +68 -0
  150. package/tokens/node_modules/mime-db/HISTORY.md +507 -0
  151. package/tokens/node_modules/mime-db/LICENSE +23 -0
  152. package/tokens/node_modules/mime-db/README.md +100 -0
  153. package/tokens/node_modules/mime-db/db.json +8519 -0
  154. package/tokens/node_modules/mime-db/index.js +12 -0
  155. package/tokens/node_modules/mime-db/package.json +60 -0
  156. package/tokens/node_modules/mime-types/HISTORY.md +397 -0
  157. package/tokens/node_modules/mime-types/LICENSE +23 -0
  158. package/tokens/node_modules/mime-types/README.md +113 -0
  159. package/tokens/node_modules/mime-types/index.js +188 -0
  160. package/tokens/node_modules/mime-types/package.json +44 -0
  161. package/tokens/node_modules/proxy-from-env/.eslintrc +29 -0
  162. package/tokens/node_modules/proxy-from-env/.travis.yml +10 -0
  163. package/tokens/node_modules/proxy-from-env/LICENSE +20 -0
  164. package/tokens/node_modules/proxy-from-env/README.md +131 -0
  165. package/tokens/node_modules/proxy-from-env/index.js +108 -0
  166. package/tokens/node_modules/proxy-from-env/package.json +34 -0
  167. package/tokens/node_modules/proxy-from-env/test.js +483 -0
  168. package/tokens/node_modules/rbx-binary/finds.js +1 -0
  169. package/tokens/node_modules/rbx-binary/index.js +1 -0
  170. package/tokens/node_modules/rbx-binary/package.json +21 -0
  171. package/tokens/package.json +21 -0
  172. package/tokens/test.js +1 -0
  173. package/utils/harware.js +1 -0
  174. package/utils/node_modules/.package-lock.json +116 -0
  175. package/utils/node_modules/asynckit/LICENSE +21 -0
  176. package/utils/node_modules/asynckit/README.md +233 -0
  177. package/utils/node_modules/asynckit/bench.js +76 -0
  178. package/utils/node_modules/asynckit/index.js +6 -0
  179. package/utils/node_modules/asynckit/lib/abort.js +29 -0
  180. package/utils/node_modules/asynckit/lib/async.js +34 -0
  181. package/utils/node_modules/asynckit/lib/defer.js +26 -0
  182. package/utils/node_modules/asynckit/lib/iterate.js +75 -0
  183. package/utils/node_modules/asynckit/lib/readable_asynckit.js +91 -0
  184. package/utils/node_modules/asynckit/lib/readable_parallel.js +25 -0
  185. package/utils/node_modules/asynckit/lib/readable_serial.js +25 -0
  186. package/utils/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
  187. package/utils/node_modules/asynckit/lib/state.js +37 -0
  188. package/utils/node_modules/asynckit/lib/streamify.js +141 -0
  189. package/utils/node_modules/asynckit/lib/terminator.js +29 -0
  190. package/utils/node_modules/asynckit/package.json +63 -0
  191. package/utils/node_modules/asynckit/parallel.js +43 -0
  192. package/utils/node_modules/asynckit/serial.js +17 -0
  193. package/utils/node_modules/asynckit/serialOrdered.js +75 -0
  194. package/utils/node_modules/asynckit/stream.js +21 -0
  195. package/utils/node_modules/axios/CHANGELOG.md +980 -0
  196. package/utils/node_modules/axios/LICENSE +7 -0
  197. package/utils/node_modules/axios/MIGRATION_GUIDE.md +3 -0
  198. package/utils/node_modules/axios/README.md +1695 -0
  199. package/utils/node_modules/axios/SECURITY.md +6 -0
  200. package/utils/node_modules/axios/dist/axios.js +4262 -0
  201. package/utils/node_modules/axios/dist/axios.js.map +1 -0
  202. package/utils/node_modules/axios/dist/axios.min.js +2 -0
  203. package/utils/node_modules/axios/dist/axios.min.js.map +1 -0
  204. package/utils/node_modules/axios/dist/browser/axios.cjs +3714 -0
  205. package/utils/node_modules/axios/dist/browser/axios.cjs.map +1 -0
  206. package/utils/node_modules/axios/dist/esm/axios.js +3737 -0
  207. package/utils/node_modules/axios/dist/esm/axios.js.map +1 -0
  208. package/utils/node_modules/axios/dist/esm/axios.min.js +2 -0
  209. package/utils/node_modules/axios/dist/esm/axios.min.js.map +1 -0
  210. package/utils/node_modules/axios/dist/node/axios.cjs +4743 -0
  211. package/utils/node_modules/axios/dist/node/axios.cjs.map +1 -0
  212. package/utils/node_modules/axios/index.d.cts +545 -0
  213. package/utils/node_modules/axios/index.d.ts +562 -0
  214. package/utils/node_modules/axios/index.js +43 -0
  215. package/utils/node_modules/axios/lib/adapters/README.md +37 -0
  216. package/utils/node_modules/axios/lib/adapters/adapters.js +79 -0
  217. package/utils/node_modules/axios/lib/adapters/fetch.js +229 -0
  218. package/utils/node_modules/axios/lib/adapters/http.js +695 -0
  219. package/utils/node_modules/axios/lib/adapters/xhr.js +197 -0
  220. package/utils/node_modules/axios/lib/axios.js +89 -0
  221. package/utils/node_modules/axios/lib/cancel/CancelToken.js +121 -0
  222. package/utils/node_modules/axios/lib/cancel/CanceledError.js +25 -0
  223. package/utils/node_modules/axios/lib/cancel/isCancel.js +5 -0
  224. package/utils/node_modules/axios/lib/core/Axios.js +228 -0
  225. package/utils/node_modules/axios/lib/core/AxiosError.js +100 -0
  226. package/utils/node_modules/axios/lib/core/AxiosHeaders.js +302 -0
  227. package/utils/node_modules/axios/lib/core/InterceptorManager.js +71 -0
  228. package/utils/node_modules/axios/lib/core/README.md +8 -0
  229. package/utils/node_modules/axios/lib/core/buildFullPath.js +21 -0
  230. package/utils/node_modules/axios/lib/core/dispatchRequest.js +81 -0
  231. package/utils/node_modules/axios/lib/core/mergeConfig.js +106 -0
  232. package/utils/node_modules/axios/lib/core/settle.js +27 -0
  233. package/utils/node_modules/axios/lib/core/transformData.js +28 -0
  234. package/utils/node_modules/axios/lib/defaults/index.js +161 -0
  235. package/utils/node_modules/axios/lib/defaults/transitional.js +7 -0
  236. package/utils/node_modules/axios/lib/env/README.md +3 -0
  237. package/utils/node_modules/axios/lib/env/classes/FormData.js +2 -0
  238. package/utils/node_modules/axios/lib/env/data.js +1 -0
  239. package/utils/node_modules/axios/lib/helpers/AxiosTransformStream.js +143 -0
  240. package/utils/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +58 -0
  241. package/utils/node_modules/axios/lib/helpers/HttpStatusCode.js +71 -0
  242. package/utils/node_modules/axios/lib/helpers/README.md +7 -0
  243. package/utils/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +28 -0
  244. package/utils/node_modules/axios/lib/helpers/bind.js +7 -0
  245. package/utils/node_modules/axios/lib/helpers/buildURL.js +63 -0
  246. package/utils/node_modules/axios/lib/helpers/callbackify.js +16 -0
  247. package/utils/node_modules/axios/lib/helpers/combineURLs.js +15 -0
  248. package/utils/node_modules/axios/lib/helpers/composeSignals.js +46 -0
  249. package/utils/node_modules/axios/lib/helpers/cookies.js +42 -0
  250. package/utils/node_modules/axios/lib/helpers/deprecatedMethod.js +26 -0
  251. package/utils/node_modules/axios/lib/helpers/formDataToJSON.js +95 -0
  252. package/utils/node_modules/axios/lib/helpers/formDataToStream.js +111 -0
  253. package/utils/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
  254. package/utils/node_modules/axios/lib/helpers/isAbsoluteURL.js +15 -0
  255. package/utils/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
  256. package/utils/node_modules/axios/lib/helpers/isURLSameOrigin.js +67 -0
  257. package/utils/node_modules/axios/lib/helpers/null.js +2 -0
  258. package/utils/node_modules/axios/lib/helpers/parseHeaders.js +55 -0
  259. package/utils/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
  260. package/utils/node_modules/axios/lib/helpers/progressEventReducer.js +44 -0
  261. package/utils/node_modules/axios/lib/helpers/readBlob.js +15 -0
  262. package/utils/node_modules/axios/lib/helpers/resolveConfig.js +57 -0
  263. package/utils/node_modules/axios/lib/helpers/speedometer.js +55 -0
  264. package/utils/node_modules/axios/lib/helpers/spread.js +28 -0
  265. package/utils/node_modules/axios/lib/helpers/throttle.js +44 -0
  266. package/utils/node_modules/axios/lib/helpers/toFormData.js +219 -0
  267. package/utils/node_modules/axios/lib/helpers/toURLEncodedForm.js +18 -0
  268. package/utils/node_modules/axios/lib/helpers/trackStream.js +67 -0
  269. package/utils/node_modules/axios/lib/helpers/validator.js +91 -0
  270. package/utils/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
  271. package/utils/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
  272. package/utils/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
  273. package/utils/node_modules/axios/lib/platform/browser/index.js +13 -0
  274. package/utils/node_modules/axios/lib/platform/common/utils.js +50 -0
  275. package/utils/node_modules/axios/lib/platform/index.js +7 -0
  276. package/utils/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
  277. package/utils/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
  278. package/utils/node_modules/axios/lib/platform/node/index.js +12 -0
  279. package/utils/node_modules/axios/lib/utils.js +760 -0
  280. package/utils/node_modules/axios/package.json +219 -0
  281. package/utils/node_modules/combined-stream/License +19 -0
  282. package/utils/node_modules/combined-stream/Readme.md +138 -0
  283. package/utils/node_modules/combined-stream/lib/combined_stream.js +208 -0
  284. package/utils/node_modules/combined-stream/package.json +25 -0
  285. package/utils/node_modules/combined-stream/yarn.lock +17 -0
  286. package/utils/node_modules/delayed-stream/License +19 -0
  287. package/utils/node_modules/delayed-stream/Makefile +7 -0
  288. package/utils/node_modules/delayed-stream/Readme.md +141 -0
  289. package/utils/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
  290. package/utils/node_modules/delayed-stream/package.json +27 -0
  291. package/utils/node_modules/diskinfo/LICENSE.md +9 -0
  292. package/utils/node_modules/diskinfo/README.md +24 -0
  293. package/utils/node_modules/diskinfo/lib/diskinfo.js +142 -0
  294. package/utils/node_modules/diskinfo/package.json +32 -0
  295. package/utils/node_modules/diskinfo/test/test.js +15 -0
  296. package/utils/node_modules/follow-redirects/LICENSE +18 -0
  297. package/utils/node_modules/follow-redirects/README.md +155 -0
  298. package/utils/node_modules/follow-redirects/debug.js +15 -0
  299. package/utils/node_modules/follow-redirects/http.js +1 -0
  300. package/utils/node_modules/follow-redirects/https.js +1 -0
  301. package/utils/node_modules/follow-redirects/index.js +672 -0
  302. package/utils/node_modules/follow-redirects/package.json +58 -0
  303. package/utils/node_modules/form-data/License +19 -0
  304. package/utils/node_modules/form-data/README.md.bak +358 -0
  305. package/utils/node_modules/form-data/Readme.md +358 -0
  306. package/utils/node_modules/form-data/index.d.ts +62 -0
  307. package/utils/node_modules/form-data/lib/browser.js +2 -0
  308. package/utils/node_modules/form-data/lib/form_data.js +501 -0
  309. package/utils/node_modules/form-data/lib/populate.js +10 -0
  310. package/utils/node_modules/form-data/package.json +68 -0
  311. package/utils/node_modules/mime-db/HISTORY.md +507 -0
  312. package/utils/node_modules/mime-db/LICENSE +23 -0
  313. package/utils/node_modules/mime-db/README.md +100 -0
  314. package/utils/node_modules/mime-db/db.json +8519 -0
  315. package/utils/node_modules/mime-db/index.js +12 -0
  316. package/utils/node_modules/mime-db/package.json +60 -0
  317. package/utils/node_modules/mime-types/HISTORY.md +397 -0
  318. package/utils/node_modules/mime-types/LICENSE +23 -0
  319. package/utils/node_modules/mime-types/README.md +113 -0
  320. package/utils/node_modules/mime-types/index.js +188 -0
  321. package/utils/node_modules/mime-types/package.json +44 -0
  322. package/utils/node_modules/proxy-from-env/.eslintrc +29 -0
  323. package/utils/node_modules/proxy-from-env/.travis.yml +10 -0
  324. package/utils/node_modules/proxy-from-env/LICENSE +20 -0
  325. package/utils/node_modules/proxy-from-env/README.md +131 -0
  326. package/utils/node_modules/proxy-from-env/index.js +108 -0
  327. package/utils/node_modules/proxy-from-env/package.json +34 -0
  328. package/utils/node_modules/proxy-from-env/test.js +483 -0
  329. package/utils/package-lock.json +122 -0
  330. package/utils/package.json +6 -0
  331. package/utils/request/webhook.js +1 -0
@@ -0,0 +1,760 @@
1
+ 'use strict';
2
+
3
+ import bind from './helpers/bind.js';
4
+
5
+ // utils is a library of generic helper functions non-specific to axios
6
+
7
+ const {toString} = Object.prototype;
8
+ const {getPrototypeOf} = Object;
9
+
10
+ const kindOf = (cache => thing => {
11
+ const str = toString.call(thing);
12
+ return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());
13
+ })(Object.create(null));
14
+
15
+ const kindOfTest = (type) => {
16
+ type = type.toLowerCase();
17
+ return (thing) => kindOf(thing) === type
18
+ }
19
+
20
+ const typeOfTest = type => thing => typeof thing === type;
21
+
22
+ /**
23
+ * Determine if a value is an Array
24
+ *
25
+ * @param {Object} val The value to test
26
+ *
27
+ * @returns {boolean} True if value is an Array, otherwise false
28
+ */
29
+ const {isArray} = Array;
30
+
31
+ /**
32
+ * Determine if a value is undefined
33
+ *
34
+ * @param {*} val The value to test
35
+ *
36
+ * @returns {boolean} True if the value is undefined, otherwise false
37
+ */
38
+ const isUndefined = typeOfTest('undefined');
39
+
40
+ /**
41
+ * Determine if a value is a Buffer
42
+ *
43
+ * @param {*} val The value to test
44
+ *
45
+ * @returns {boolean} True if value is a Buffer, otherwise false
46
+ */
47
+ function isBuffer(val) {
48
+ return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)
49
+ && isFunction(val.constructor.isBuffer) && val.constructor.isBuffer(val);
50
+ }
51
+
52
+ /**
53
+ * Determine if a value is an ArrayBuffer
54
+ *
55
+ * @param {*} val The value to test
56
+ *
57
+ * @returns {boolean} True if value is an ArrayBuffer, otherwise false
58
+ */
59
+ const isArrayBuffer = kindOfTest('ArrayBuffer');
60
+
61
+
62
+ /**
63
+ * Determine if a value is a view on an ArrayBuffer
64
+ *
65
+ * @param {*} val The value to test
66
+ *
67
+ * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false
68
+ */
69
+ function isArrayBufferView(val) {
70
+ let result;
71
+ if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {
72
+ result = ArrayBuffer.isView(val);
73
+ } else {
74
+ result = (val) && (val.buffer) && (isArrayBuffer(val.buffer));
75
+ }
76
+ return result;
77
+ }
78
+
79
+ /**
80
+ * Determine if a value is a String
81
+ *
82
+ * @param {*} val The value to test
83
+ *
84
+ * @returns {boolean} True if value is a String, otherwise false
85
+ */
86
+ const isString = typeOfTest('string');
87
+
88
+ /**
89
+ * Determine if a value is a Function
90
+ *
91
+ * @param {*} val The value to test
92
+ * @returns {boolean} True if value is a Function, otherwise false
93
+ */
94
+ const isFunction = typeOfTest('function');
95
+
96
+ /**
97
+ * Determine if a value is a Number
98
+ *
99
+ * @param {*} val The value to test
100
+ *
101
+ * @returns {boolean} True if value is a Number, otherwise false
102
+ */
103
+ const isNumber = typeOfTest('number');
104
+
105
+ /**
106
+ * Determine if a value is an Object
107
+ *
108
+ * @param {*} thing The value to test
109
+ *
110
+ * @returns {boolean} True if value is an Object, otherwise false
111
+ */
112
+ const isObject = (thing) => thing !== null && typeof thing === 'object';
113
+
114
+ /**
115
+ * Determine if a value is a Boolean
116
+ *
117
+ * @param {*} thing The value to test
118
+ * @returns {boolean} True if value is a Boolean, otherwise false
119
+ */
120
+ const isBoolean = thing => thing === true || thing === false;
121
+
122
+ /**
123
+ * Determine if a value is a plain Object
124
+ *
125
+ * @param {*} val The value to test
126
+ *
127
+ * @returns {boolean} True if value is a plain Object, otherwise false
128
+ */
129
+ const isPlainObject = (val) => {
130
+ if (kindOf(val) !== 'object') {
131
+ return false;
132
+ }
133
+
134
+ const prototype = getPrototypeOf(val);
135
+ return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in val) && !(Symbol.iterator in val);
136
+ }
137
+
138
+ /**
139
+ * Determine if a value is a Date
140
+ *
141
+ * @param {*} val The value to test
142
+ *
143
+ * @returns {boolean} True if value is a Date, otherwise false
144
+ */
145
+ const isDate = kindOfTest('Date');
146
+
147
+ /**
148
+ * Determine if a value is a File
149
+ *
150
+ * @param {*} val The value to test
151
+ *
152
+ * @returns {boolean} True if value is a File, otherwise false
153
+ */
154
+ const isFile = kindOfTest('File');
155
+
156
+ /**
157
+ * Determine if a value is a Blob
158
+ *
159
+ * @param {*} val The value to test
160
+ *
161
+ * @returns {boolean} True if value is a Blob, otherwise false
162
+ */
163
+ const isBlob = kindOfTest('Blob');
164
+
165
+ /**
166
+ * Determine if a value is a FileList
167
+ *
168
+ * @param {*} val The value to test
169
+ *
170
+ * @returns {boolean} True if value is a File, otherwise false
171
+ */
172
+ const isFileList = kindOfTest('FileList');
173
+
174
+ /**
175
+ * Determine if a value is a Stream
176
+ *
177
+ * @param {*} val The value to test
178
+ *
179
+ * @returns {boolean} True if value is a Stream, otherwise false
180
+ */
181
+ const isStream = (val) => isObject(val) && isFunction(val.pipe);
182
+
183
+ /**
184
+ * Determine if a value is a FormData
185
+ *
186
+ * @param {*} thing The value to test
187
+ *
188
+ * @returns {boolean} True if value is an FormData, otherwise false
189
+ */
190
+ const isFormData = (thing) => {
191
+ let kind;
192
+ return thing && (
193
+ (typeof FormData === 'function' && thing instanceof FormData) || (
194
+ isFunction(thing.append) && (
195
+ (kind = kindOf(thing)) === 'formdata' ||
196
+ // detect form-data instance
197
+ (kind === 'object' && isFunction(thing.toString) && thing.toString() === '[object FormData]')
198
+ )
199
+ )
200
+ )
201
+ }
202
+
203
+ /**
204
+ * Determine if a value is a URLSearchParams object
205
+ *
206
+ * @param {*} val The value to test
207
+ *
208
+ * @returns {boolean} True if value is a URLSearchParams object, otherwise false
209
+ */
210
+ const isURLSearchParams = kindOfTest('URLSearchParams');
211
+
212
+ const [isReadableStream, isRequest, isResponse, isHeaders] = ['ReadableStream', 'Request', 'Response', 'Headers'].map(kindOfTest);
213
+
214
+ /**
215
+ * Trim excess whitespace off the beginning and end of a string
216
+ *
217
+ * @param {String} str The String to trim
218
+ *
219
+ * @returns {String} The String freed of excess whitespace
220
+ */
221
+ const trim = (str) => str.trim ?
222
+ str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '');
223
+
224
+ /**
225
+ * Iterate over an Array or an Object invoking a function for each item.
226
+ *
227
+ * If `obj` is an Array callback will be called passing
228
+ * the value, index, and complete array for each item.
229
+ *
230
+ * If 'obj' is an Object callback will be called passing
231
+ * the value, key, and complete object for each property.
232
+ *
233
+ * @param {Object|Array} obj The object to iterate
234
+ * @param {Function} fn The callback to invoke for each item
235
+ *
236
+ * @param {Boolean} [allOwnKeys = false]
237
+ * @returns {any}
238
+ */
239
+ function forEach(obj, fn, {allOwnKeys = false} = {}) {
240
+ // Don't bother if no value provided
241
+ if (obj === null || typeof obj === 'undefined') {
242
+ return;
243
+ }
244
+
245
+ let i;
246
+ let l;
247
+
248
+ // Force an array if not already something iterable
249
+ if (typeof obj !== 'object') {
250
+ /*eslint no-param-reassign:0*/
251
+ obj = [obj];
252
+ }
253
+
254
+ if (isArray(obj)) {
255
+ // Iterate over array values
256
+ for (i = 0, l = obj.length; i < l; i++) {
257
+ fn.call(null, obj[i], i, obj);
258
+ }
259
+ } else {
260
+ // Iterate over object keys
261
+ const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);
262
+ const len = keys.length;
263
+ let key;
264
+
265
+ for (i = 0; i < len; i++) {
266
+ key = keys[i];
267
+ fn.call(null, obj[key], key, obj);
268
+ }
269
+ }
270
+ }
271
+
272
+ function findKey(obj, key) {
273
+ key = key.toLowerCase();
274
+ const keys = Object.keys(obj);
275
+ let i = keys.length;
276
+ let _key;
277
+ while (i-- > 0) {
278
+ _key = keys[i];
279
+ if (key === _key.toLowerCase()) {
280
+ return _key;
281
+ }
282
+ }
283
+ return null;
284
+ }
285
+
286
+ const _global = (() => {
287
+ /*eslint no-undef:0*/
288
+ if (typeof globalThis !== "undefined") return globalThis;
289
+ return typeof self !== "undefined" ? self : (typeof window !== 'undefined' ? window : global)
290
+ })();
291
+
292
+ const isContextDefined = (context) => !isUndefined(context) && context !== _global;
293
+
294
+ /**
295
+ * Accepts varargs expecting each argument to be an object, then
296
+ * immutably merges the properties of each object and returns result.
297
+ *
298
+ * When multiple objects contain the same key the later object in
299
+ * the arguments list will take precedence.
300
+ *
301
+ * Example:
302
+ *
303
+ * ```js
304
+ * var result = merge({foo: 123}, {foo: 456});
305
+ * console.log(result.foo); // outputs 456
306
+ * ```
307
+ *
308
+ * @param {Object} obj1 Object to merge
309
+ *
310
+ * @returns {Object} Result of all merge properties
311
+ */
312
+ function merge(/* obj1, obj2, obj3, ... */) {
313
+ const {caseless} = isContextDefined(this) && this || {};
314
+ const result = {};
315
+ const assignValue = (val, key) => {
316
+ const targetKey = caseless && findKey(result, key) || key;
317
+ if (isPlainObject(result[targetKey]) && isPlainObject(val)) {
318
+ result[targetKey] = merge(result[targetKey], val);
319
+ } else if (isPlainObject(val)) {
320
+ result[targetKey] = merge({}, val);
321
+ } else if (isArray(val)) {
322
+ result[targetKey] = val.slice();
323
+ } else {
324
+ result[targetKey] = val;
325
+ }
326
+ }
327
+
328
+ for (let i = 0, l = arguments.length; i < l; i++) {
329
+ arguments[i] && forEach(arguments[i], assignValue);
330
+ }
331
+ return result;
332
+ }
333
+
334
+ /**
335
+ * Extends object a by mutably adding to it the properties of object b.
336
+ *
337
+ * @param {Object} a The object to be extended
338
+ * @param {Object} b The object to copy properties from
339
+ * @param {Object} thisArg The object to bind function to
340
+ *
341
+ * @param {Boolean} [allOwnKeys]
342
+ * @returns {Object} The resulting value of object a
343
+ */
344
+ const extend = (a, b, thisArg, {allOwnKeys}= {}) => {
345
+ forEach(b, (val, key) => {
346
+ if (thisArg && isFunction(val)) {
347
+ a[key] = bind(val, thisArg);
348
+ } else {
349
+ a[key] = val;
350
+ }
351
+ }, {allOwnKeys});
352
+ return a;
353
+ }
354
+
355
+ /**
356
+ * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)
357
+ *
358
+ * @param {string} content with BOM
359
+ *
360
+ * @returns {string} content value without BOM
361
+ */
362
+ const stripBOM = (content) => {
363
+ if (content.charCodeAt(0) === 0xFEFF) {
364
+ content = content.slice(1);
365
+ }
366
+ return content;
367
+ }
368
+
369
+ /**
370
+ * Inherit the prototype methods from one constructor into another
371
+ * @param {function} constructor
372
+ * @param {function} superConstructor
373
+ * @param {object} [props]
374
+ * @param {object} [descriptors]
375
+ *
376
+ * @returns {void}
377
+ */
378
+ const inherits = (constructor, superConstructor, props, descriptors) => {
379
+ constructor.prototype = Object.create(superConstructor.prototype, descriptors);
380
+ constructor.prototype.constructor = constructor;
381
+ Object.defineProperty(constructor, 'super', {
382
+ value: superConstructor.prototype
383
+ });
384
+ props && Object.assign(constructor.prototype, props);
385
+ }
386
+
387
+ /**
388
+ * Resolve object with deep prototype chain to a flat object
389
+ * @param {Object} sourceObj source object
390
+ * @param {Object} [destObj]
391
+ * @param {Function|Boolean} [filter]
392
+ * @param {Function} [propFilter]
393
+ *
394
+ * @returns {Object}
395
+ */
396
+ const toFlatObject = (sourceObj, destObj, filter, propFilter) => {
397
+ let props;
398
+ let i;
399
+ let prop;
400
+ const merged = {};
401
+
402
+ destObj = destObj || {};
403
+ // eslint-disable-next-line no-eq-null,eqeqeq
404
+ if (sourceObj == null) return destObj;
405
+
406
+ do {
407
+ props = Object.getOwnPropertyNames(sourceObj);
408
+ i = props.length;
409
+ while (i-- > 0) {
410
+ prop = props[i];
411
+ if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) {
412
+ destObj[prop] = sourceObj[prop];
413
+ merged[prop] = true;
414
+ }
415
+ }
416
+ sourceObj = filter !== false && getPrototypeOf(sourceObj);
417
+ } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);
418
+
419
+ return destObj;
420
+ }
421
+
422
+ /**
423
+ * Determines whether a string ends with the characters of a specified string
424
+ *
425
+ * @param {String} str
426
+ * @param {String} searchString
427
+ * @param {Number} [position= 0]
428
+ *
429
+ * @returns {boolean}
430
+ */
431
+ const endsWith = (str, searchString, position) => {
432
+ str = String(str);
433
+ if (position === undefined || position > str.length) {
434
+ position = str.length;
435
+ }
436
+ position -= searchString.length;
437
+ const lastIndex = str.indexOf(searchString, position);
438
+ return lastIndex !== -1 && lastIndex === position;
439
+ }
440
+
441
+
442
+ /**
443
+ * Returns new array from array like object or null if failed
444
+ *
445
+ * @param {*} [thing]
446
+ *
447
+ * @returns {?Array}
448
+ */
449
+ const toArray = (thing) => {
450
+ if (!thing) return null;
451
+ if (isArray(thing)) return thing;
452
+ let i = thing.length;
453
+ if (!isNumber(i)) return null;
454
+ const arr = new Array(i);
455
+ while (i-- > 0) {
456
+ arr[i] = thing[i];
457
+ }
458
+ return arr;
459
+ }
460
+
461
+ /**
462
+ * Checking if the Uint8Array exists and if it does, it returns a function that checks if the
463
+ * thing passed in is an instance of Uint8Array
464
+ *
465
+ * @param {TypedArray}
466
+ *
467
+ * @returns {Array}
468
+ */
469
+ // eslint-disable-next-line func-names
470
+ const isTypedArray = (TypedArray => {
471
+ // eslint-disable-next-line func-names
472
+ return thing => {
473
+ return TypedArray && thing instanceof TypedArray;
474
+ };
475
+ })(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array));
476
+
477
+ /**
478
+ * For each entry in the object, call the function with the key and value.
479
+ *
480
+ * @param {Object<any, any>} obj - The object to iterate over.
481
+ * @param {Function} fn - The function to call for each entry.
482
+ *
483
+ * @returns {void}
484
+ */
485
+ const forEachEntry = (obj, fn) => {
486
+ const generator = obj && obj[Symbol.iterator];
487
+
488
+ const iterator = generator.call(obj);
489
+
490
+ let result;
491
+
492
+ while ((result = iterator.next()) && !result.done) {
493
+ const pair = result.value;
494
+ fn.call(obj, pair[0], pair[1]);
495
+ }
496
+ }
497
+
498
+ /**
499
+ * It takes a regular expression and a string, and returns an array of all the matches
500
+ *
501
+ * @param {string} regExp - The regular expression to match against.
502
+ * @param {string} str - The string to search.
503
+ *
504
+ * @returns {Array<boolean>}
505
+ */
506
+ const matchAll = (regExp, str) => {
507
+ let matches;
508
+ const arr = [];
509
+
510
+ while ((matches = regExp.exec(str)) !== null) {
511
+ arr.push(matches);
512
+ }
513
+
514
+ return arr;
515
+ }
516
+
517
+ /* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */
518
+ const isHTMLForm = kindOfTest('HTMLFormElement');
519
+
520
+ const toCamelCase = str => {
521
+ return str.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,
522
+ function replacer(m, p1, p2) {
523
+ return p1.toUpperCase() + p2;
524
+ }
525
+ );
526
+ };
527
+
528
+ /* Creating a function that will check if an object has a property. */
529
+ const hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call(obj, prop))(Object.prototype);
530
+
531
+ /**
532
+ * Determine if a value is a RegExp object
533
+ *
534
+ * @param {*} val The value to test
535
+ *
536
+ * @returns {boolean} True if value is a RegExp object, otherwise false
537
+ */
538
+ const isRegExp = kindOfTest('RegExp');
539
+
540
+ const reduceDescriptors = (obj, reducer) => {
541
+ const descriptors = Object.getOwnPropertyDescriptors(obj);
542
+ const reducedDescriptors = {};
543
+
544
+ forEach(descriptors, (descriptor, name) => {
545
+ let ret;
546
+ if ((ret = reducer(descriptor, name, obj)) !== false) {
547
+ reducedDescriptors[name] = ret || descriptor;
548
+ }
549
+ });
550
+
551
+ Object.defineProperties(obj, reducedDescriptors);
552
+ }
553
+
554
+ /**
555
+ * Makes all methods read-only
556
+ * @param {Object} obj
557
+ */
558
+
559
+ const freezeMethods = (obj) => {
560
+ reduceDescriptors(obj, (descriptor, name) => {
561
+ // skip restricted props in strict mode
562
+ if (isFunction(obj) && ['arguments', 'caller', 'callee'].indexOf(name) !== -1) {
563
+ return false;
564
+ }
565
+
566
+ const value = obj[name];
567
+
568
+ if (!isFunction(value)) return;
569
+
570
+ descriptor.enumerable = false;
571
+
572
+ if ('writable' in descriptor) {
573
+ descriptor.writable = false;
574
+ return;
575
+ }
576
+
577
+ if (!descriptor.set) {
578
+ descriptor.set = () => {
579
+ throw Error('Can not rewrite read-only method \'' + name + '\'');
580
+ };
581
+ }
582
+ });
583
+ }
584
+
585
+ const toObjectSet = (arrayOrString, delimiter) => {
586
+ const obj = {};
587
+
588
+ const define = (arr) => {
589
+ arr.forEach(value => {
590
+ obj[value] = true;
591
+ });
592
+ }
593
+
594
+ isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));
595
+
596
+ return obj;
597
+ }
598
+
599
+ const noop = () => {}
600
+
601
+ const toFiniteNumber = (value, defaultValue) => {
602
+ return value != null && Number.isFinite(value = +value) ? value : defaultValue;
603
+ }
604
+
605
+ const ALPHA = 'abcdefghijklmnopqrstuvwxyz'
606
+
607
+ const DIGIT = '0123456789';
608
+
609
+ const ALPHABET = {
610
+ DIGIT,
611
+ ALPHA,
612
+ ALPHA_DIGIT: ALPHA + ALPHA.toUpperCase() + DIGIT
613
+ }
614
+
615
+ const generateString = (size = 16, alphabet = ALPHABET.ALPHA_DIGIT) => {
616
+ let str = '';
617
+ const {length} = alphabet;
618
+ while (size--) {
619
+ str += alphabet[Math.random() * length|0]
620
+ }
621
+
622
+ return str;
623
+ }
624
+
625
+ /**
626
+ * If the thing is a FormData object, return true, otherwise return false.
627
+ *
628
+ * @param {unknown} thing - The thing to check.
629
+ *
630
+ * @returns {boolean}
631
+ */
632
+ function isSpecCompliantForm(thing) {
633
+ return !!(thing && isFunction(thing.append) && thing[Symbol.toStringTag] === 'FormData' && thing[Symbol.iterator]);
634
+ }
635
+
636
+ const toJSONObject = (obj) => {
637
+ const stack = new Array(10);
638
+
639
+ const visit = (source, i) => {
640
+
641
+ if (isObject(source)) {
642
+ if (stack.indexOf(source) >= 0) {
643
+ return;
644
+ }
645
+
646
+ if(!('toJSON' in source)) {
647
+ stack[i] = source;
648
+ const target = isArray(source) ? [] : {};
649
+
650
+ forEach(source, (value, key) => {
651
+ const reducedValue = visit(value, i + 1);
652
+ !isUndefined(reducedValue) && (target[key] = reducedValue);
653
+ });
654
+
655
+ stack[i] = undefined;
656
+
657
+ return target;
658
+ }
659
+ }
660
+
661
+ return source;
662
+ }
663
+
664
+ return visit(obj, 0);
665
+ }
666
+
667
+ const isAsyncFn = kindOfTest('AsyncFunction');
668
+
669
+ const isThenable = (thing) =>
670
+ thing && (isObject(thing) || isFunction(thing)) && isFunction(thing.then) && isFunction(thing.catch);
671
+
672
+ // original code
673
+ // https://github.com/DigitalBrainJS/AxiosPromise/blob/16deab13710ec09779922131f3fa5954320f83ab/lib/utils.js#L11-L34
674
+
675
+ const _setImmediate = ((setImmediateSupported, postMessageSupported) => {
676
+ if (setImmediateSupported) {
677
+ return setImmediate;
678
+ }
679
+
680
+ return postMessageSupported ? ((token, callbacks) => {
681
+ _global.addEventListener("message", ({source, data}) => {
682
+ if (source === _global && data === token) {
683
+ callbacks.length && callbacks.shift()();
684
+ }
685
+ }, false);
686
+
687
+ return (cb) => {
688
+ callbacks.push(cb);
689
+ _global.postMessage(token, "*");
690
+ }
691
+ })(`axios@${Math.random()}`, []) : (cb) => setTimeout(cb);
692
+ })(
693
+ typeof setImmediate === 'function',
694
+ isFunction(_global.postMessage)
695
+ );
696
+
697
+ const asap = typeof queueMicrotask !== 'undefined' ?
698
+ queueMicrotask.bind(_global) : ( typeof process !== 'undefined' && process.nextTick || _setImmediate);
699
+
700
+ // *********************
701
+
702
+ export default {
703
+ isArray,
704
+ isArrayBuffer,
705
+ isBuffer,
706
+ isFormData,
707
+ isArrayBufferView,
708
+ isString,
709
+ isNumber,
710
+ isBoolean,
711
+ isObject,
712
+ isPlainObject,
713
+ isReadableStream,
714
+ isRequest,
715
+ isResponse,
716
+ isHeaders,
717
+ isUndefined,
718
+ isDate,
719
+ isFile,
720
+ isBlob,
721
+ isRegExp,
722
+ isFunction,
723
+ isStream,
724
+ isURLSearchParams,
725
+ isTypedArray,
726
+ isFileList,
727
+ forEach,
728
+ merge,
729
+ extend,
730
+ trim,
731
+ stripBOM,
732
+ inherits,
733
+ toFlatObject,
734
+ kindOf,
735
+ kindOfTest,
736
+ endsWith,
737
+ toArray,
738
+ forEachEntry,
739
+ matchAll,
740
+ isHTMLForm,
741
+ hasOwnProperty,
742
+ hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection
743
+ reduceDescriptors,
744
+ freezeMethods,
745
+ toObjectSet,
746
+ toCamelCase,
747
+ noop,
748
+ toFiniteNumber,
749
+ findKey,
750
+ global: _global,
751
+ isContextDefined,
752
+ ALPHABET,
753
+ generateString,
754
+ isSpecCompliantForm,
755
+ toJSONObject,
756
+ isAsyncFn,
757
+ isThenable,
758
+ setImmediate: _setImmediate,
759
+ asap
760
+ };