fca-shadow 0.0.1-security → 2.3.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fca-shadow might be problematic. Click here for more details.

Files changed (501) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/DOCS.md +1738 -0
  3. package/GetThreads/GetThreadInfo.js +128 -0
  4. package/GetThreads/Last-Run.js +65 -0
  5. package/LICENSE-MIT +21 -0
  6. package/README.md +132 -3
  7. package/StateCrypt.js +28 -0
  8. package/broadcast.js +22 -0
  9. package/index.html +1200 -0
  10. package/index.js +694 -0
  11. package/languages/index.json +150 -0
  12. package/lib/getInfoNew.js +34 -0
  13. package/lib/getToken.js +44 -0
  14. package/logger.js +23 -0
  15. package/package/database/SyntheticDatabase.sqlite +0 -0
  16. package/package/database/index.js +358 -0
  17. package/package/database/node_modules/lodash/_baseGet/README.md +20 -0
  18. package/package/database/node_modules/lodash/_baseGet/index.js +74 -0
  19. package/package/database/node_modules/lodash/_baseGet/package.json +18 -0
  20. package/package/database/node_modules/lodash/add.js +22 -0
  21. package/package/database/node_modules/lodash/after.js +42 -0
  22. package/package/database/node_modules/lodash/array.js +67 -0
  23. package/package/database/node_modules/lodash/ary.js +29 -0
  24. package/package/database/node_modules/lodash/assign.js +58 -0
  25. package/package/database/node_modules/lodash/assignIn.js +40 -0
  26. package/package/database/node_modules/lodash/assignInWith.js +38 -0
  27. package/package/database/node_modules/lodash/assignWith.js +37 -0
  28. package/package/database/node_modules/lodash/at.js +23 -0
  29. package/package/database/node_modules/lodash/attempt.js +35 -0
  30. package/package/database/node_modules/lodash/before.js +40 -0
  31. package/package/database/node_modules/lodash/bind.js +57 -0
  32. package/package/database/node_modules/lodash/bindAll.js +41 -0
  33. package/package/database/node_modules/lodash/bindKey.js +68 -0
  34. package/package/database/node_modules/lodash/camelCase.js +29 -0
  35. package/package/database/node_modules/lodash/capitalize.js +23 -0
  36. package/package/database/node_modules/lodash/castArray.js +44 -0
  37. package/package/database/node_modules/lodash/ceil.js +26 -0
  38. package/package/database/node_modules/lodash/chain.js +38 -0
  39. package/package/database/node_modules/lodash/chunk.js +50 -0
  40. package/package/database/node_modules/lodash/clamp.js +39 -0
  41. package/package/database/node_modules/lodash/clone.js +36 -0
  42. package/package/database/node_modules/lodash/cloneDeep.js +29 -0
  43. package/package/database/node_modules/lodash/cloneDeepWith.js +40 -0
  44. package/package/database/node_modules/lodash/cloneWith.js +42 -0
  45. package/package/database/node_modules/lodash/collection.js +30 -0
  46. package/package/database/node_modules/lodash/commit.js +33 -0
  47. package/package/database/node_modules/lodash/compact.js +31 -0
  48. package/package/database/node_modules/lodash/concat.js +43 -0
  49. package/package/database/node_modules/lodash/cond.js +60 -0
  50. package/package/database/node_modules/lodash/conforms.js +35 -0
  51. package/package/database/node_modules/lodash/conformsTo.js +32 -0
  52. package/package/database/node_modules/lodash/constant.js +26 -0
  53. package/package/database/node_modules/lodash/core.js +3877 -0
  54. package/package/database/node_modules/lodash/core.min.js +29 -0
  55. package/package/database/node_modules/lodash/countBy.js +40 -0
  56. package/package/database/node_modules/lodash/create.js +43 -0
  57. package/package/database/node_modules/lodash/curry.js +57 -0
  58. package/package/database/node_modules/lodash/curryRight.js +54 -0
  59. package/package/database/node_modules/lodash/date.js +3 -0
  60. package/package/database/node_modules/lodash/debounce.js +191 -0
  61. package/package/database/node_modules/lodash/deburr.js +45 -0
  62. package/package/database/node_modules/lodash/defaultTo.js +25 -0
  63. package/package/database/node_modules/lodash/defaults.js +64 -0
  64. package/package/database/node_modules/lodash/defaultsDeep.js +30 -0
  65. package/package/database/node_modules/lodash/defer.js +26 -0
  66. package/package/database/node_modules/lodash/delay.js +28 -0
  67. package/package/database/node_modules/lodash/difference.js +33 -0
  68. package/package/database/node_modules/lodash/differenceBy.js +44 -0
  69. package/package/database/node_modules/lodash/differenceWith.js +40 -0
  70. package/package/database/node_modules/lodash/divide.js +22 -0
  71. package/package/database/node_modules/lodash/drop.js +38 -0
  72. package/package/database/node_modules/lodash/dropRight.js +39 -0
  73. package/package/database/node_modules/lodash/dropRightWhile.js +45 -0
  74. package/package/database/node_modules/lodash/dropWhile.js +45 -0
  75. package/package/database/node_modules/lodash/each.js +1 -0
  76. package/package/database/node_modules/lodash/eachRight.js +1 -0
  77. package/package/database/node_modules/lodash/endsWith.js +43 -0
  78. package/package/database/node_modules/lodash/entries.js +1 -0
  79. package/package/database/node_modules/lodash/entriesIn.js +1 -0
  80. package/package/database/node_modules/lodash/eq.js +37 -0
  81. package/package/database/node_modules/lodash/escape.js +43 -0
  82. package/package/database/node_modules/lodash/escapeRegExp.js +32 -0
  83. package/package/database/node_modules/lodash/every.js +56 -0
  84. package/package/database/node_modules/lodash/extend.js +1 -0
  85. package/package/database/node_modules/lodash/extendWith.js +1 -0
  86. package/package/database/node_modules/lodash/fill.js +45 -0
  87. package/package/database/node_modules/lodash/filter.js +52 -0
  88. package/package/database/node_modules/lodash/find.js +42 -0
  89. package/package/database/node_modules/lodash/findIndex.js +55 -0
  90. package/package/database/node_modules/lodash/findKey.js +44 -0
  91. package/package/database/node_modules/lodash/findLast.js +25 -0
  92. package/package/database/node_modules/lodash/findLastIndex.js +59 -0
  93. package/package/database/node_modules/lodash/findLastKey.js +44 -0
  94. package/package/database/node_modules/lodash/first.js +1 -0
  95. package/package/database/node_modules/lodash/flake.lock +40 -0
  96. package/package/database/node_modules/lodash/flake.nix +20 -0
  97. package/package/database/node_modules/lodash/flatMap.js +29 -0
  98. package/package/database/node_modules/lodash/flatMapDeep.js +31 -0
  99. package/package/database/node_modules/lodash/flatMapDepth.js +31 -0
  100. package/package/database/node_modules/lodash/flatten.js +22 -0
  101. package/package/database/node_modules/lodash/flattenDeep.js +25 -0
  102. package/package/database/node_modules/lodash/flattenDepth.js +33 -0
  103. package/package/database/node_modules/lodash/flip.js +28 -0
  104. package/package/database/node_modules/lodash/floor.js +26 -0
  105. package/package/database/node_modules/lodash/flow.js +27 -0
  106. package/package/database/node_modules/lodash/flowRight.js +26 -0
  107. package/package/database/node_modules/lodash/forEach.js +41 -0
  108. package/package/database/node_modules/lodash/forEachRight.js +31 -0
  109. package/package/database/node_modules/lodash/forIn.js +39 -0
  110. package/package/database/node_modules/lodash/forInRight.js +37 -0
  111. package/package/database/node_modules/lodash/forOwn.js +36 -0
  112. package/package/database/node_modules/lodash/forOwnRight.js +34 -0
  113. package/package/database/node_modules/lodash/fp/F.js +1 -0
  114. package/package/database/node_modules/lodash/fp/add.js +5 -0
  115. package/package/database/node_modules/lodash/fp/after.js +5 -0
  116. package/package/database/node_modules/lodash/fp/all.js +1 -0
  117. package/package/database/node_modules/lodash/fp/allPass.js +1 -0
  118. package/package/database/node_modules/lodash/fp/always.js +1 -0
  119. package/package/database/node_modules/lodash/fp/any.js +1 -0
  120. package/package/database/node_modules/lodash/fp/anyPass.js +1 -0
  121. package/package/database/node_modules/lodash/fp/apply.js +1 -0
  122. package/package/database/node_modules/lodash/fp/array.js +2 -0
  123. package/package/database/node_modules/lodash/fp/ary.js +5 -0
  124. package/package/database/node_modules/lodash/fp/assign.js +5 -0
  125. package/package/database/node_modules/lodash/fp/assignAll.js +5 -0
  126. package/package/database/node_modules/lodash/fp/assignAllWith.js +5 -0
  127. package/package/database/node_modules/lodash/fp/assignIn.js +5 -0
  128. package/package/database/node_modules/lodash/fp/assignInAll.js +5 -0
  129. package/package/database/node_modules/lodash/fp/assignInAllWith.js +5 -0
  130. package/package/database/node_modules/lodash/fp/assignInWith.js +5 -0
  131. package/package/database/node_modules/lodash/fp/assignWith.js +5 -0
  132. package/package/database/node_modules/lodash/fp/assoc.js +1 -0
  133. package/package/database/node_modules/lodash/fp/assocPath.js +1 -0
  134. package/package/database/node_modules/lodash/fp/at.js +5 -0
  135. package/package/database/node_modules/lodash/fp/attempt.js +5 -0
  136. package/package/database/node_modules/lodash/fp/before.js +5 -0
  137. package/package/database/node_modules/lodash/fp/bind.js +5 -0
  138. package/package/database/node_modules/lodash/fp/bindAll.js +5 -0
  139. package/package/database/node_modules/lodash/fp/bindKey.js +5 -0
  140. package/package/database/node_modules/lodash/fp/camelCase.js +5 -0
  141. package/package/database/node_modules/lodash/fp/capitalize.js +5 -0
  142. package/package/database/node_modules/lodash/fp/castArray.js +5 -0
  143. package/package/database/node_modules/lodash/fp/ceil.js +5 -0
  144. package/package/database/node_modules/lodash/fp/chain.js +5 -0
  145. package/package/database/node_modules/lodash/fp/chunk.js +5 -0
  146. package/package/database/node_modules/lodash/fp/clamp.js +5 -0
  147. package/package/database/node_modules/lodash/fp/clone.js +5 -0
  148. package/package/database/node_modules/lodash/fp/cloneDeep.js +5 -0
  149. package/package/database/node_modules/lodash/fp/cloneDeepWith.js +5 -0
  150. package/package/database/node_modules/lodash/fp/cloneWith.js +5 -0
  151. package/package/database/node_modules/lodash/fp/collection.js +2 -0
  152. package/package/database/node_modules/lodash/fp/commit.js +5 -0
  153. package/package/database/node_modules/lodash/fp/compact.js +5 -0
  154. package/package/database/node_modules/lodash/fp/complement.js +1 -0
  155. package/package/database/node_modules/lodash/fp/compose.js +1 -0
  156. package/package/database/node_modules/lodash/fp/concat.js +5 -0
  157. package/package/database/node_modules/lodash/fp/cond.js +5 -0
  158. package/package/database/node_modules/lodash/fp/conforms.js +1 -0
  159. package/package/database/node_modules/lodash/fp/conformsTo.js +5 -0
  160. package/package/database/node_modules/lodash/fp/constant.js +5 -0
  161. package/package/database/node_modules/lodash/fp/contains.js +1 -0
  162. package/package/database/node_modules/lodash/fp/convert.js +18 -0
  163. package/package/database/node_modules/lodash/fp/countBy.js +5 -0
  164. package/package/database/node_modules/lodash/fp/create.js +5 -0
  165. package/package/database/node_modules/lodash/fp/curry.js +5 -0
  166. package/package/database/node_modules/lodash/fp/curryN.js +5 -0
  167. package/package/database/node_modules/lodash/fp/curryRight.js +5 -0
  168. package/package/database/node_modules/lodash/fp/curryRightN.js +5 -0
  169. package/package/database/node_modules/lodash/fp/date.js +2 -0
  170. package/package/database/node_modules/lodash/fp/debounce.js +5 -0
  171. package/package/database/node_modules/lodash/fp/deburr.js +5 -0
  172. package/package/database/node_modules/lodash/fp/defaultTo.js +5 -0
  173. package/package/database/node_modules/lodash/fp/defaults.js +5 -0
  174. package/package/database/node_modules/lodash/fp/defaultsAll.js +5 -0
  175. package/package/database/node_modules/lodash/fp/defaultsDeep.js +5 -0
  176. package/package/database/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
  177. package/package/database/node_modules/lodash/fp/defer.js +5 -0
  178. package/package/database/node_modules/lodash/fp/delay.js +5 -0
  179. package/package/database/node_modules/lodash/fp/difference.js +5 -0
  180. package/package/database/node_modules/lodash/fp/differenceBy.js +5 -0
  181. package/package/database/node_modules/lodash/fp/differenceWith.js +5 -0
  182. package/package/database/node_modules/lodash/fp/dissoc.js +1 -0
  183. package/package/database/node_modules/lodash/fp/dissocPath.js +1 -0
  184. package/package/database/node_modules/lodash/fp/divide.js +5 -0
  185. package/package/database/node_modules/lodash/fp/drop.js +5 -0
  186. package/package/database/node_modules/lodash/fp/dropLast.js +1 -0
  187. package/package/database/node_modules/lodash/fp/dropLastWhile.js +1 -0
  188. package/package/database/node_modules/lodash/fp/dropRight.js +5 -0
  189. package/package/database/node_modules/lodash/fp/dropRightWhile.js +5 -0
  190. package/package/database/node_modules/lodash/fp/dropWhile.js +5 -0
  191. package/package/database/node_modules/lodash/fp/each.js +1 -0
  192. package/package/database/node_modules/lodash/fp/eachRight.js +1 -0
  193. package/package/database/node_modules/lodash/fp/endsWith.js +5 -0
  194. package/package/database/node_modules/lodash/fp/entries.js +1 -0
  195. package/package/database/node_modules/lodash/fp/entriesIn.js +1 -0
  196. package/package/database/node_modules/lodash/fp/eq.js +5 -0
  197. package/package/database/node_modules/lodash/fp/equals.js +1 -0
  198. package/package/database/node_modules/lodash/fp/escape.js +5 -0
  199. package/package/database/node_modules/lodash/fp/escapeRegExp.js +5 -0
  200. package/package/database/node_modules/lodash/fp/every.js +5 -0
  201. package/package/database/node_modules/lodash/fp/extend.js +1 -0
  202. package/package/database/node_modules/lodash/fp/extendAll.js +1 -0
  203. package/package/database/node_modules/lodash/fp/extendAllWith.js +1 -0
  204. package/package/database/node_modules/lodash/fp/extendWith.js +1 -0
  205. package/package/database/node_modules/lodash/fp/fill.js +5 -0
  206. package/package/database/node_modules/lodash/fp/filter.js +5 -0
  207. package/package/database/node_modules/lodash/fp/find.js +5 -0
  208. package/package/database/node_modules/lodash/fp/findFrom.js +5 -0
  209. package/package/database/node_modules/lodash/fp/findIndex.js +5 -0
  210. package/package/database/node_modules/lodash/fp/findIndexFrom.js +5 -0
  211. package/package/database/node_modules/lodash/fp/findKey.js +5 -0
  212. package/package/database/node_modules/lodash/fp/findLast.js +5 -0
  213. package/package/database/node_modules/lodash/fp.js +2 -0
  214. package/package/database/node_modules/lodash/fromPairs.js +28 -0
  215. package/package/database/node_modules/lodash/function.js +25 -0
  216. package/package/database/node_modules/lodash/functions.js +31 -0
  217. package/package/database/node_modules/lodash/functionsIn.js +31 -0
  218. package/package/database/node_modules/lodash/get.js +33 -0
  219. package/package/database/node_modules/node-fetch/CHANGELOG.md +266 -0
  220. package/package/database/node_modules/node-fetch/LICENSE.md +22 -0
  221. package/package/database/node_modules/node-fetch/README.md +583 -0
  222. package/package/database/node_modules/node-fetch/browser.js +23 -0
  223. package/package/database/node_modules/node-fetch/lib/index.es.js +1633 -0
  224. package/package/database/node_modules/node-fetch/lib/index.js +1642 -0
  225. package/package/database/node_modules/node-fetch/lib/index.mjs +1631 -0
  226. package/package/database/node_modules/node-fetch/package.json +70 -0
  227. package/package/database/node_modules/sqlite3/CHANGELOG.md +313 -0
  228. package/package/database/node_modules/sqlite3/CONTRIBUTING.md +57 -0
  229. package/package/database/node_modules/sqlite3/LICENSE +25 -0
  230. package/package/database/node_modules/sqlite3/README.md +259 -0
  231. package/package/database/node_modules/sqlite3/binding.gyp +66 -0
  232. package/package/database/node_modules/sqlite3/deps/common-sqlite.gypi +60 -0
  233. package/package/database/node_modules/sqlite3/deps/extract.js +10 -0
  234. package/package/database/node_modules/sqlite3/deps/sqlite-autoconf-3380200.tar.gz +0 -0
  235. package/package/database/node_modules/sqlite3/deps/sqlite3.gyp +121 -0
  236. package/package/database/node_modules/sqlite3/lib/binding/napi-v6-linux-x64/node_sqlite3.node +0 -0
  237. package/package/database/node_modules/sqlite3/lib/index.js +1 -0
  238. package/package/database/node_modules/sqlite3/lib/sqlite3-binding.js +5 -0
  239. package/package/database/node_modules/sqlite3/lib/sqlite3.js +205 -0
  240. package/package/database/node_modules/sqlite3/lib/trace.js +38 -0
  241. package/package/database/node_modules/sqlite3/package.json +82 -0
  242. package/package/database/node_modules/sqlite3/sqlite3.js +1 -0
  243. package/package/database/node_modules/sqlite3/src/async.h +82 -0
  244. package/package/database/node_modules/sqlite3/src/backup.cc +420 -0
  245. package/package/database/node_modules/sqlite3/src/backup.h +221 -0
  246. package/package/database/node_modules/sqlite3/src/database.cc +738 -0
  247. package/package/database/node_modules/sqlite3/src/database.h +206 -0
  248. package/package/database/node_modules/sqlite3/src/gcc-preinclude.h +6 -0
  249. package/package/database/node_modules/sqlite3/src/macros.h +212 -0
  250. package/package/database/node_modules/sqlite3/src/node_sqlite3.cc +115 -0
  251. package/package/database/node_modules/sqlite3/src/statement.cc +947 -0
  252. package/package/database/node_modules/sqlite3/src/statement.h +249 -0
  253. package/package/database/node_modules/sqlite3/src/threading.h +48 -0
  254. package/package/database/package.json +31 -0
  255. package/package/database/readme.md +8 -0
  256. package/package/database/test.js +3 -0
  257. package/package/horizon-sp/README.md +11 -0
  258. package/package/horizon-sp/index.js +41 -0
  259. package/package/horizon-sp/logger.js +16 -0
  260. package/package/horizon-sp/node_modules/.package-lock.json +140 -0
  261. package/package/horizon-sp/node_modules/asynckit/LICENSE +21 -0
  262. package/package/horizon-sp/node_modules/asynckit/README.md +233 -0
  263. package/package/horizon-sp/node_modules/asynckit/bench.js +76 -0
  264. package/package/horizon-sp/node_modules/asynckit/index.js +6 -0
  265. package/package/horizon-sp/node_modules/asynckit/lib/abort.js +29 -0
  266. package/package/horizon-sp/node_modules/asynckit/lib/async.js +34 -0
  267. package/package/horizon-sp/node_modules/asynckit/lib/defer.js +26 -0
  268. package/package/horizon-sp/node_modules/asynckit/lib/iterate.js +75 -0
  269. package/package/horizon-sp/node_modules/asynckit/lib/readable_asynckit.js +91 -0
  270. package/package/horizon-sp/node_modules/asynckit/lib/readable_parallel.js +25 -0
  271. package/package/horizon-sp/node_modules/asynckit/lib/readable_serial.js +25 -0
  272. package/package/horizon-sp/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
  273. package/package/horizon-sp/node_modules/asynckit/lib/state.js +37 -0
  274. package/package/horizon-sp/node_modules/asynckit/lib/streamify.js +141 -0
  275. package/package/horizon-sp/node_modules/asynckit/lib/terminator.js +29 -0
  276. package/package/horizon-sp/node_modules/asynckit/package.json +63 -0
  277. package/package/horizon-sp/node_modules/asynckit/parallel.js +43 -0
  278. package/package/horizon-sp/node_modules/asynckit/serial.js +17 -0
  279. package/package/horizon-sp/node_modules/asynckit/serialOrdered.js +75 -0
  280. package/package/horizon-sp/node_modules/asynckit/stream.js +21 -0
  281. package/package/horizon-sp/node_modules/axios/CHANGELOG.md +410 -0
  282. package/package/horizon-sp/node_modules/axios/LICENSE +7 -0
  283. package/package/horizon-sp/node_modules/axios/MIGRATION_GUIDE.md +3 -0
  284. package/package/horizon-sp/node_modules/axios/README.md +1310 -0
  285. package/package/horizon-sp/node_modules/axios/SECURITY.md +6 -0
  286. package/package/horizon-sp/node_modules/axios/index.d.cts +524 -0
  287. package/package/horizon-sp/node_modules/axios/index.d.ts +539 -0
  288. package/package/horizon-sp/node_modules/axios/index.js +41 -0
  289. package/package/horizon-sp/node_modules/axios/lib/adapters/README.md +37 -0
  290. package/package/horizon-sp/node_modules/axios/lib/adapters/adapters.js +59 -0
  291. package/package/horizon-sp/node_modules/axios/lib/adapters/http.js +608 -0
  292. package/package/horizon-sp/node_modules/axios/lib/adapters/xhr.js +249 -0
  293. package/package/horizon-sp/node_modules/axios/lib/axios.js +86 -0
  294. package/package/horizon-sp/node_modules/axios/lib/cancel/CancelToken.js +121 -0
  295. package/package/horizon-sp/node_modules/axios/lib/cancel/CanceledError.js +25 -0
  296. package/package/horizon-sp/node_modules/axios/lib/cancel/isCancel.js +5 -0
  297. package/package/horizon-sp/node_modules/axios/lib/core/Axios.js +197 -0
  298. package/package/horizon-sp/node_modules/axios/lib/core/AxiosError.js +100 -0
  299. package/package/horizon-sp/node_modules/axios/lib/core/AxiosHeaders.js +274 -0
  300. package/package/horizon-sp/node_modules/axios/lib/core/InterceptorManager.js +71 -0
  301. package/package/horizon-sp/node_modules/axios/lib/core/README.md +8 -0
  302. package/package/horizon-sp/node_modules/axios/lib/core/buildFullPath.js +21 -0
  303. package/package/horizon-sp/node_modules/axios/lib/core/dispatchRequest.js +81 -0
  304. package/package/horizon-sp/node_modules/axios/lib/core/mergeConfig.js +105 -0
  305. package/package/horizon-sp/node_modules/axios/lib/core/settle.js +27 -0
  306. package/package/horizon-sp/node_modules/axios/lib/core/transformData.js +28 -0
  307. package/package/horizon-sp/node_modules/axios/lib/defaults/index.js +166 -0
  308. package/package/horizon-sp/node_modules/axios/lib/defaults/transitional.js +7 -0
  309. package/package/horizon-sp/node_modules/axios/lib/env/README.md +3 -0
  310. package/package/horizon-sp/node_modules/axios/lib/env/classes/FormData.js +2 -0
  311. package/package/horizon-sp/node_modules/axios/lib/env/data.js +1 -0
  312. package/package/horizon-sp/node_modules/axios/lib/helpers/AxiosTransformStream.js +191 -0
  313. package/package/horizon-sp/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +58 -0
  314. package/package/horizon-sp/node_modules/axios/lib/helpers/HttpStatusCode.js +71 -0
  315. package/package/horizon-sp/node_modules/axios/lib/helpers/README.md +7 -0
  316. package/package/horizon-sp/node_modules/axios/lib/helpers/bind.js +7 -0
  317. package/package/horizon-sp/node_modules/axios/lib/helpers/buildURL.js +63 -0
  318. package/package/horizon-sp/node_modules/axios/lib/helpers/combineURLs.js +15 -0
  319. package/package/horizon-sp/node_modules/axios/lib/helpers/cookies.js +52 -0
  320. package/package/horizon-sp/node_modules/axios/lib/helpers/deprecatedMethod.js +26 -0
  321. package/package/horizon-sp/node_modules/axios/lib/helpers/formDataToJSON.js +92 -0
  322. package/package/horizon-sp/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
  323. package/package/horizon-sp/node_modules/axios/lib/helpers/isAbsoluteURL.js +15 -0
  324. package/package/horizon-sp/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
  325. package/package/horizon-sp/node_modules/axios/lib/helpers/isURLSameOrigin.js +67 -0
  326. package/package/horizon-sp/node_modules/axios/lib/helpers/null.js +2 -0
  327. package/package/horizon-sp/node_modules/axios/lib/helpers/parseHeaders.js +55 -0
  328. package/package/horizon-sp/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
  329. package/package/horizon-sp/node_modules/axios/lib/helpers/speedometer.js +55 -0
  330. package/package/horizon-sp/node_modules/axios/lib/helpers/spread.js +28 -0
  331. package/package/horizon-sp/node_modules/axios/lib/helpers/throttle.js +33 -0
  332. package/package/horizon-sp/node_modules/axios/lib/helpers/toFormData.js +229 -0
  333. package/package/horizon-sp/node_modules/axios/lib/helpers/toURLEncodedForm.js +18 -0
  334. package/package/horizon-sp/node_modules/axios/lib/helpers/validator.js +91 -0
  335. package/package/horizon-sp/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
  336. package/package/horizon-sp/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
  337. package/package/horizon-sp/node_modules/axios/lib/platform/browser/index.js +63 -0
  338. package/package/horizon-sp/node_modules/axios/lib/platform/index.js +3 -0
  339. package/package/horizon-sp/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
  340. package/package/horizon-sp/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
  341. package/package/horizon-sp/node_modules/axios/lib/platform/node/index.js +12 -0
  342. package/package/horizon-sp/node_modules/axios/lib/utils.js +677 -0
  343. package/package/horizon-sp/node_modules/axios/package.json +197 -0
  344. package/package/horizon-sp/node_modules/child_process/README.md +9 -0
  345. package/package/horizon-sp/node_modules/child_process/package.json +20 -0
  346. package/package/horizon-sp/node_modules/combined-stream/License +19 -0
  347. package/package/horizon-sp/node_modules/combined-stream/Readme.md +138 -0
  348. package/package/horizon-sp/node_modules/combined-stream/lib/combined_stream.js +208 -0
  349. package/package/horizon-sp/node_modules/combined-stream/package.json +25 -0
  350. package/package/horizon-sp/node_modules/delayed-stream/License +19 -0
  351. package/package/horizon-sp/node_modules/delayed-stream/Makefile +7 -0
  352. package/package/horizon-sp/node_modules/delayed-stream/Readme.md +141 -0
  353. package/package/horizon-sp/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
  354. package/package/horizon-sp/node_modules/delayed-stream/package.json +27 -0
  355. package/package/horizon-sp/node_modules/follow-redirects/LICENSE +18 -0
  356. package/package/horizon-sp/node_modules/follow-redirects/README.md +155 -0
  357. package/package/horizon-sp/node_modules/follow-redirects/debug.js +15 -0
  358. package/package/horizon-sp/node_modules/follow-redirects/http.js +1 -0
  359. package/package/horizon-sp/node_modules/follow-redirects/https.js +1 -0
  360. package/package/horizon-sp/node_modules/follow-redirects/index.js +621 -0
  361. package/package/horizon-sp/node_modules/follow-redirects/package.json +59 -0
  362. package/package/horizon-sp/node_modules/form-data/License +19 -0
  363. package/package/horizon-sp/node_modules/form-data/README.md.bak +358 -0
  364. package/package/horizon-sp/node_modules/form-data/Readme.md +358 -0
  365. package/package/horizon-sp/node_modules/form-data/index.d.ts +62 -0
  366. package/package/horizon-sp/node_modules/form-data/lib/browser.js +2 -0
  367. package/package/horizon-sp/node_modules/form-data/lib/form_data.js +501 -0
  368. package/package/horizon-sp/node_modules/form-data/lib/populate.js +10 -0
  369. package/package/horizon-sp/node_modules/form-data/package.json +68 -0
  370. package/package/horizon-sp/node_modules/fs-extra/LICENSE +15 -0
  371. package/package/horizon-sp/node_modules/fs-extra/README.md +290 -0
  372. package/package/horizon-sp/node_modules/fs-extra/lib/copy/copy-sync.js +161 -0
  373. package/package/horizon-sp/node_modules/fs-extra/lib/copy/copy.js +238 -0
  374. package/package/horizon-sp/node_modules/fs-extra/lib/copy/index.js +7 -0
  375. package/package/horizon-sp/node_modules/fs-extra/lib/empty/index.js +39 -0
  376. package/package/horizon-sp/node_modules/fs-extra/lib/ensure/file.js +69 -0
  377. package/package/horizon-sp/node_modules/fs-extra/lib/ensure/index.js +23 -0
  378. package/package/horizon-sp/node_modules/fs-extra/lib/ensure/link.js +64 -0
  379. package/package/horizon-sp/node_modules/fs-extra/lib/ensure/symlink-paths.js +99 -0
  380. package/package/horizon-sp/node_modules/fs-extra/lib/ensure/symlink-type.js +31 -0
  381. package/package/horizon-sp/node_modules/fs-extra/lib/ensure/symlink.js +82 -0
  382. package/package/horizon-sp/node_modules/fs-extra/lib/esm.mjs +68 -0
  383. package/package/horizon-sp/node_modules/fs-extra/lib/fs/index.js +140 -0
  384. package/package/horizon-sp/node_modules/fs-extra/lib/index.js +16 -0
  385. package/package/horizon-sp/node_modules/fs-extra/lib/json/index.js +16 -0
  386. package/package/horizon-sp/node_modules/fs-extra/lib/json/jsonfile.js +11 -0
  387. package/package/horizon-sp/node_modules/fs-extra/lib/json/output-json-sync.js +12 -0
  388. package/package/horizon-sp/node_modules/fs-extra/lib/json/output-json.js +12 -0
  389. package/package/horizon-sp/node_modules/fs-extra/lib/mkdirs/index.js +14 -0
  390. package/package/horizon-sp/node_modules/fs-extra/lib/mkdirs/make-dir.js +27 -0
  391. package/package/horizon-sp/node_modules/fs-extra/lib/mkdirs/utils.js +21 -0
  392. package/package/horizon-sp/node_modules/fs-extra/lib/move/index.js +7 -0
  393. package/package/horizon-sp/node_modules/fs-extra/lib/move/move-sync.js +54 -0
  394. package/package/horizon-sp/node_modules/fs-extra/lib/move/move.js +75 -0
  395. package/package/horizon-sp/node_modules/fs-extra/lib/output-file/index.js +40 -0
  396. package/package/horizon-sp/node_modules/fs-extra/lib/path-exists/index.js +12 -0
  397. package/package/horizon-sp/node_modules/fs-extra/lib/remove/index.js +17 -0
  398. package/package/horizon-sp/node_modules/fs-extra/lib/util/stat.js +154 -0
  399. package/package/horizon-sp/node_modules/fs-extra/lib/util/utimes.js +26 -0
  400. package/package/horizon-sp/node_modules/fs-extra/package.json +71 -0
  401. package/package/horizon-sp/node_modules/graceful-fs/LICENSE +15 -0
  402. package/package/horizon-sp/node_modules/graceful-fs/README.md +143 -0
  403. package/package/horizon-sp/node_modules/graceful-fs/clone.js +23 -0
  404. package/package/horizon-sp/node_modules/graceful-fs/graceful-fs.js +448 -0
  405. package/package/horizon-sp/node_modules/graceful-fs/legacy-streams.js +118 -0
  406. package/package/horizon-sp/node_modules/graceful-fs/package.json +50 -0
  407. package/package/horizon-sp/node_modules/graceful-fs/polyfills.js +355 -0
  408. package/package/horizon-sp/node_modules/jsonfile/CHANGELOG.md +171 -0
  409. package/package/horizon-sp/node_modules/jsonfile/LICENSE +15 -0
  410. package/package/horizon-sp/node_modules/jsonfile/README.md +230 -0
  411. package/package/horizon-sp/node_modules/jsonfile/index.js +88 -0
  412. package/package/horizon-sp/node_modules/jsonfile/package.json +40 -0
  413. package/package/horizon-sp/node_modules/jsonfile/utils.js +14 -0
  414. package/package/horizon-sp/node_modules/mime-db/HISTORY.md +507 -0
  415. package/package/horizon-sp/node_modules/mime-db/LICENSE +23 -0
  416. package/package/horizon-sp/node_modules/mime-db/README.md +100 -0
  417. package/package/horizon-sp/node_modules/mime-db/db.json +8519 -0
  418. package/package/horizon-sp/node_modules/mime-db/index.js +12 -0
  419. package/package/horizon-sp/node_modules/mime-db/package.json +60 -0
  420. package/package/horizon-sp/node_modules/mime-types/HISTORY.md +397 -0
  421. package/package/horizon-sp/node_modules/mime-types/LICENSE +23 -0
  422. package/package/horizon-sp/node_modules/mime-types/README.md +113 -0
  423. package/package/horizon-sp/node_modules/mime-types/index.js +188 -0
  424. package/package/horizon-sp/node_modules/mime-types/package.json +44 -0
  425. package/package/horizon-sp/node_modules/proxy-from-env/LICENSE +20 -0
  426. package/package/horizon-sp/node_modules/proxy-from-env/README.md +131 -0
  427. package/package/horizon-sp/node_modules/proxy-from-env/index.js +108 -0
  428. package/package/horizon-sp/node_modules/proxy-from-env/package.json +34 -0
  429. package/package/horizon-sp/node_modules/proxy-from-env/test.js +483 -0
  430. package/package/horizon-sp/node_modules/universalify/LICENSE +20 -0
  431. package/package/horizon-sp/node_modules/universalify/README.md +76 -0
  432. package/package/horizon-sp/node_modules/universalify/index.js +24 -0
  433. package/package/horizon-sp/node_modules/universalify/package.json +34 -0
  434. package/package/horizon-sp/package-lock.json +150 -0
  435. package/package/horizon-sp/package.json +20 -0
  436. package/package.json +133 -4
  437. package/src/ReportV1.js +55 -0
  438. package/src/addExternalModule.js +16 -0
  439. package/src/addUserToGroup.js +78 -0
  440. package/src/changeAdminStatus.js +79 -0
  441. package/src/changeArchivedStatus.js +41 -0
  442. package/src/changeAvt.js +86 -0
  443. package/src/changeBio.js +65 -0
  444. package/src/changeBlockedStatus.js +36 -0
  445. package/src/changeGroupImage.js +106 -0
  446. package/src/changeNickname.js +45 -0
  447. package/src/changeThreadColor.js +62 -0
  448. package/src/changeThreadEmoji.js +42 -0
  449. package/src/createNewGroup.js +70 -0
  450. package/src/createPoll.js +60 -0
  451. package/src/data/getThreadInfo.json +31985 -0
  452. package/src/deleteMessage.js +45 -0
  453. package/src/deleteThread.js +43 -0
  454. package/src/forwardAttachment.js +48 -0
  455. package/src/getAccessToken.js +33 -0
  456. package/src/getCurrentUserID.js +7 -0
  457. package/src/getEmojiUrl.js +27 -0
  458. package/src/getFriendsList.js +73 -0
  459. package/src/getMessage.js +80 -0
  460. package/src/getThreadHistory.js +537 -0
  461. package/src/getThreadHistoryDeprecated.js +71 -0
  462. package/src/getThreadInfo.js +193 -0
  463. package/src/getThreadInfoDeprecated.js +56 -0
  464. package/src/getThreadList.js +213 -0
  465. package/src/getThreadListDeprecated.js +46 -0
  466. package/src/getThreadMain.js +219 -0
  467. package/src/getThreadPictures.js +59 -0
  468. package/src/getUserID.js +62 -0
  469. package/src/getUserInfo.js +66 -0
  470. package/src/getUserInfoMain.js +65 -0
  471. package/src/getUserInfoV2.js +36 -0
  472. package/src/getUserInfoV3.js +63 -0
  473. package/src/getUserInfoV4.js +55 -0
  474. package/src/getUserInfoV5.js +61 -0
  475. package/src/handleFriendRequest.js +46 -0
  476. package/src/handleMessageRequest.js +49 -0
  477. package/src/httpGet.js +49 -0
  478. package/src/httpPost.js +48 -0
  479. package/src/httpPostFormData.js +41 -0
  480. package/src/listenMqtt.js +629 -0
  481. package/src/logout.js +68 -0
  482. package/src/markAsDelivered.js +48 -0
  483. package/src/markAsRead.js +70 -0
  484. package/src/markAsReadAll.js +43 -0
  485. package/src/markAsSeen.js +51 -0
  486. package/src/muteThread.js +47 -0
  487. package/src/removeUserFromGroup.js +49 -0
  488. package/src/resolvePhotoUrl.js +37 -0
  489. package/src/searchForThread.js +43 -0
  490. package/src/sendMessage.js +321 -0
  491. package/src/sendTypingIndicator.js +80 -0
  492. package/src/setMessageReaction.js +109 -0
  493. package/src/setPostReaction.js +102 -0
  494. package/src/setTitle.js +74 -0
  495. package/src/threadColors.js +39 -0
  496. package/src/unfriend.js +43 -0
  497. package/src/unsendMessage.js +40 -0
  498. package/test/example-config.json +18 -0
  499. package/test/test-page.js +140 -0
  500. package/test/test.js +385 -0
  501. package/utils.js +1246 -0
@@ -0,0 +1,677 @@
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
+ const pattern = '[object FormData]';
192
+ return thing && (
193
+ (typeof FormData === 'function' && thing instanceof FormData) ||
194
+ toString.call(thing) === pattern ||
195
+ (isFunction(thing.toString) && thing.toString() === pattern)
196
+ );
197
+ }
198
+
199
+ /**
200
+ * Determine if a value is a URLSearchParams object
201
+ *
202
+ * @param {*} val The value to test
203
+ *
204
+ * @returns {boolean} True if value is a URLSearchParams object, otherwise false
205
+ */
206
+ const isURLSearchParams = kindOfTest('URLSearchParams');
207
+
208
+ /**
209
+ * Trim excess whitespace off the beginning and end of a string
210
+ *
211
+ * @param {String} str The String to trim
212
+ *
213
+ * @returns {String} The String freed of excess whitespace
214
+ */
215
+ const trim = (str) => str.trim ?
216
+ str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '');
217
+
218
+ /**
219
+ * Iterate over an Array or an Object invoking a function for each item.
220
+ *
221
+ * If `obj` is an Array callback will be called passing
222
+ * the value, index, and complete array for each item.
223
+ *
224
+ * If 'obj' is an Object callback will be called passing
225
+ * the value, key, and complete object for each property.
226
+ *
227
+ * @param {Object|Array} obj The object to iterate
228
+ * @param {Function} fn The callback to invoke for each item
229
+ *
230
+ * @param {Boolean} [allOwnKeys = false]
231
+ * @returns {any}
232
+ */
233
+ function forEach(obj, fn, {allOwnKeys = false} = {}) {
234
+ // Don't bother if no value provided
235
+ if (obj === null || typeof obj === 'undefined') {
236
+ return;
237
+ }
238
+
239
+ let i;
240
+ let l;
241
+
242
+ // Force an array if not already something iterable
243
+ if (typeof obj !== 'object') {
244
+ /*eslint no-param-reassign:0*/
245
+ obj = [obj];
246
+ }
247
+
248
+ if (isArray(obj)) {
249
+ // Iterate over array values
250
+ for (i = 0, l = obj.length; i < l; i++) {
251
+ fn.call(null, obj[i], i, obj);
252
+ }
253
+ } else {
254
+ // Iterate over object keys
255
+ const keys = allOwnKeys ? Object.getOwnPropertyNames(obj) : Object.keys(obj);
256
+ const len = keys.length;
257
+ let key;
258
+
259
+ for (i = 0; i < len; i++) {
260
+ key = keys[i];
261
+ fn.call(null, obj[key], key, obj);
262
+ }
263
+ }
264
+ }
265
+
266
+ function findKey(obj, key) {
267
+ key = key.toLowerCase();
268
+ const keys = Object.keys(obj);
269
+ let i = keys.length;
270
+ let _key;
271
+ while (i-- > 0) {
272
+ _key = keys[i];
273
+ if (key === _key.toLowerCase()) {
274
+ return _key;
275
+ }
276
+ }
277
+ return null;
278
+ }
279
+
280
+ const _global = (() => {
281
+ /*eslint no-undef:0*/
282
+ if (typeof globalThis !== "undefined") return globalThis;
283
+ return typeof self !== "undefined" ? self : (typeof window !== 'undefined' ? window : global)
284
+ })();
285
+
286
+ const isContextDefined = (context) => !isUndefined(context) && context !== _global;
287
+
288
+ /**
289
+ * Accepts varargs expecting each argument to be an object, then
290
+ * immutably merges the properties of each object and returns result.
291
+ *
292
+ * When multiple objects contain the same key the later object in
293
+ * the arguments list will take precedence.
294
+ *
295
+ * Example:
296
+ *
297
+ * ```js
298
+ * var result = merge({foo: 123}, {foo: 456});
299
+ * console.log(result.foo); // outputs 456
300
+ * ```
301
+ *
302
+ * @param {Object} obj1 Object to merge
303
+ *
304
+ * @returns {Object} Result of all merge properties
305
+ */
306
+ function merge(/* obj1, obj2, obj3, ... */) {
307
+ const {caseless} = isContextDefined(this) && this || {};
308
+ const result = {};
309
+ const assignValue = (val, key) => {
310
+ const targetKey = caseless && findKey(result, key) || key;
311
+ if (isPlainObject(result[targetKey]) && isPlainObject(val)) {
312
+ result[targetKey] = merge(result[targetKey], val);
313
+ } else if (isPlainObject(val)) {
314
+ result[targetKey] = merge({}, val);
315
+ } else if (isArray(val)) {
316
+ result[targetKey] = val.slice();
317
+ } else {
318
+ result[targetKey] = val;
319
+ }
320
+ }
321
+
322
+ for (let i = 0, l = arguments.length; i < l; i++) {
323
+ arguments[i] && forEach(arguments[i], assignValue);
324
+ }
325
+ return result;
326
+ }
327
+
328
+ /**
329
+ * Extends object a by mutably adding to it the properties of object b.
330
+ *
331
+ * @param {Object} a The object to be extended
332
+ * @param {Object} b The object to copy properties from
333
+ * @param {Object} thisArg The object to bind function to
334
+ *
335
+ * @param {Boolean} [allOwnKeys]
336
+ * @returns {Object} The resulting value of object a
337
+ */
338
+ const extend = (a, b, thisArg, {allOwnKeys}= {}) => {
339
+ forEach(b, (val, key) => {
340
+ if (thisArg && isFunction(val)) {
341
+ a[key] = bind(val, thisArg);
342
+ } else {
343
+ a[key] = val;
344
+ }
345
+ }, {allOwnKeys});
346
+ return a;
347
+ }
348
+
349
+ /**
350
+ * Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)
351
+ *
352
+ * @param {string} content with BOM
353
+ *
354
+ * @returns {string} content value without BOM
355
+ */
356
+ const stripBOM = (content) => {
357
+ if (content.charCodeAt(0) === 0xFEFF) {
358
+ content = content.slice(1);
359
+ }
360
+ return content;
361
+ }
362
+
363
+ /**
364
+ * Inherit the prototype methods from one constructor into another
365
+ * @param {function} constructor
366
+ * @param {function} superConstructor
367
+ * @param {object} [props]
368
+ * @param {object} [descriptors]
369
+ *
370
+ * @returns {void}
371
+ */
372
+ const inherits = (constructor, superConstructor, props, descriptors) => {
373
+ constructor.prototype = Object.create(superConstructor.prototype, descriptors);
374
+ constructor.prototype.constructor = constructor;
375
+ Object.defineProperty(constructor, 'super', {
376
+ value: superConstructor.prototype
377
+ });
378
+ props && Object.assign(constructor.prototype, props);
379
+ }
380
+
381
+ /**
382
+ * Resolve object with deep prototype chain to a flat object
383
+ * @param {Object} sourceObj source object
384
+ * @param {Object} [destObj]
385
+ * @param {Function|Boolean} [filter]
386
+ * @param {Function} [propFilter]
387
+ *
388
+ * @returns {Object}
389
+ */
390
+ const toFlatObject = (sourceObj, destObj, filter, propFilter) => {
391
+ let props;
392
+ let i;
393
+ let prop;
394
+ const merged = {};
395
+
396
+ destObj = destObj || {};
397
+ // eslint-disable-next-line no-eq-null,eqeqeq
398
+ if (sourceObj == null) return destObj;
399
+
400
+ do {
401
+ props = Object.getOwnPropertyNames(sourceObj);
402
+ i = props.length;
403
+ while (i-- > 0) {
404
+ prop = props[i];
405
+ if ((!propFilter || propFilter(prop, sourceObj, destObj)) && !merged[prop]) {
406
+ destObj[prop] = sourceObj[prop];
407
+ merged[prop] = true;
408
+ }
409
+ }
410
+ sourceObj = filter !== false && getPrototypeOf(sourceObj);
411
+ } while (sourceObj && (!filter || filter(sourceObj, destObj)) && sourceObj !== Object.prototype);
412
+
413
+ return destObj;
414
+ }
415
+
416
+ /**
417
+ * Determines whether a string ends with the characters of a specified string
418
+ *
419
+ * @param {String} str
420
+ * @param {String} searchString
421
+ * @param {Number} [position= 0]
422
+ *
423
+ * @returns {boolean}
424
+ */
425
+ const endsWith = (str, searchString, position) => {
426
+ str = String(str);
427
+ if (position === undefined || position > str.length) {
428
+ position = str.length;
429
+ }
430
+ position -= searchString.length;
431
+ const lastIndex = str.indexOf(searchString, position);
432
+ return lastIndex !== -1 && lastIndex === position;
433
+ }
434
+
435
+
436
+ /**
437
+ * Returns new array from array like object or null if failed
438
+ *
439
+ * @param {*} [thing]
440
+ *
441
+ * @returns {?Array}
442
+ */
443
+ const toArray = (thing) => {
444
+ if (!thing) return null;
445
+ if (isArray(thing)) return thing;
446
+ let i = thing.length;
447
+ if (!isNumber(i)) return null;
448
+ const arr = new Array(i);
449
+ while (i-- > 0) {
450
+ arr[i] = thing[i];
451
+ }
452
+ return arr;
453
+ }
454
+
455
+ /**
456
+ * Checking if the Uint8Array exists and if it does, it returns a function that checks if the
457
+ * thing passed in is an instance of Uint8Array
458
+ *
459
+ * @param {TypedArray}
460
+ *
461
+ * @returns {Array}
462
+ */
463
+ // eslint-disable-next-line func-names
464
+ const isTypedArray = (TypedArray => {
465
+ // eslint-disable-next-line func-names
466
+ return thing => {
467
+ return TypedArray && thing instanceof TypedArray;
468
+ };
469
+ })(typeof Uint8Array !== 'undefined' && getPrototypeOf(Uint8Array));
470
+
471
+ /**
472
+ * For each entry in the object, call the function with the key and value.
473
+ *
474
+ * @param {Object<any, any>} obj - The object to iterate over.
475
+ * @param {Function} fn - The function to call for each entry.
476
+ *
477
+ * @returns {void}
478
+ */
479
+ const forEachEntry = (obj, fn) => {
480
+ const generator = obj && obj[Symbol.iterator];
481
+
482
+ const iterator = generator.call(obj);
483
+
484
+ let result;
485
+
486
+ while ((result = iterator.next()) && !result.done) {
487
+ const pair = result.value;
488
+ fn.call(obj, pair[0], pair[1]);
489
+ }
490
+ }
491
+
492
+ /**
493
+ * It takes a regular expression and a string, and returns an array of all the matches
494
+ *
495
+ * @param {string} regExp - The regular expression to match against.
496
+ * @param {string} str - The string to search.
497
+ *
498
+ * @returns {Array<boolean>}
499
+ */
500
+ const matchAll = (regExp, str) => {
501
+ let matches;
502
+ const arr = [];
503
+
504
+ while ((matches = regExp.exec(str)) !== null) {
505
+ arr.push(matches);
506
+ }
507
+
508
+ return arr;
509
+ }
510
+
511
+ /* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */
512
+ const isHTMLForm = kindOfTest('HTMLFormElement');
513
+
514
+ const toCamelCase = str => {
515
+ return str.toLowerCase().replace(/[_-\s]([a-z\d])(\w*)/g,
516
+ function replacer(m, p1, p2) {
517
+ return p1.toUpperCase() + p2;
518
+ }
519
+ );
520
+ };
521
+
522
+ /* Creating a function that will check if an object has a property. */
523
+ const hasOwnProperty = (({hasOwnProperty}) => (obj, prop) => hasOwnProperty.call(obj, prop))(Object.prototype);
524
+
525
+ /**
526
+ * Determine if a value is a RegExp object
527
+ *
528
+ * @param {*} val The value to test
529
+ *
530
+ * @returns {boolean} True if value is a RegExp object, otherwise false
531
+ */
532
+ const isRegExp = kindOfTest('RegExp');
533
+
534
+ const reduceDescriptors = (obj, reducer) => {
535
+ const descriptors = Object.getOwnPropertyDescriptors(obj);
536
+ const reducedDescriptors = {};
537
+
538
+ forEach(descriptors, (descriptor, name) => {
539
+ if (reducer(descriptor, name, obj) !== false) {
540
+ reducedDescriptors[name] = descriptor;
541
+ }
542
+ });
543
+
544
+ Object.defineProperties(obj, reducedDescriptors);
545
+ }
546
+
547
+ /**
548
+ * Makes all methods read-only
549
+ * @param {Object} obj
550
+ */
551
+
552
+ const freezeMethods = (obj) => {
553
+ reduceDescriptors(obj, (descriptor, name) => {
554
+ // skip restricted props in strict mode
555
+ if (isFunction(obj) && ['arguments', 'caller', 'callee'].indexOf(name) !== -1) {
556
+ return false;
557
+ }
558
+
559
+ const value = obj[name];
560
+
561
+ if (!isFunction(value)) return;
562
+
563
+ descriptor.enumerable = false;
564
+
565
+ if ('writable' in descriptor) {
566
+ descriptor.writable = false;
567
+ return;
568
+ }
569
+
570
+ if (!descriptor.set) {
571
+ descriptor.set = () => {
572
+ throw Error('Can not rewrite read-only method \'' + name + '\'');
573
+ };
574
+ }
575
+ });
576
+ }
577
+
578
+ const toObjectSet = (arrayOrString, delimiter) => {
579
+ const obj = {};
580
+
581
+ const define = (arr) => {
582
+ arr.forEach(value => {
583
+ obj[value] = true;
584
+ });
585
+ }
586
+
587
+ isArray(arrayOrString) ? define(arrayOrString) : define(String(arrayOrString).split(delimiter));
588
+
589
+ return obj;
590
+ }
591
+
592
+ const noop = () => {}
593
+
594
+ const toFiniteNumber = (value, defaultValue) => {
595
+ value = +value;
596
+ return Number.isFinite(value) ? value : defaultValue;
597
+ }
598
+
599
+ const toJSONObject = (obj) => {
600
+ const stack = new Array(10);
601
+
602
+ const visit = (source, i) => {
603
+
604
+ if (isObject(source)) {
605
+ if (stack.indexOf(source) >= 0) {
606
+ return;
607
+ }
608
+
609
+ if(!('toJSON' in source)) {
610
+ stack[i] = source;
611
+ const target = isArray(source) ? [] : {};
612
+
613
+ forEach(source, (value, key) => {
614
+ const reducedValue = visit(value, i + 1);
615
+ !isUndefined(reducedValue) && (target[key] = reducedValue);
616
+ });
617
+
618
+ stack[i] = undefined;
619
+
620
+ return target;
621
+ }
622
+ }
623
+
624
+ return source;
625
+ }
626
+
627
+ return visit(obj, 0);
628
+ }
629
+
630
+ export default {
631
+ isArray,
632
+ isArrayBuffer,
633
+ isBuffer,
634
+ isFormData,
635
+ isArrayBufferView,
636
+ isString,
637
+ isNumber,
638
+ isBoolean,
639
+ isObject,
640
+ isPlainObject,
641
+ isUndefined,
642
+ isDate,
643
+ isFile,
644
+ isBlob,
645
+ isRegExp,
646
+ isFunction,
647
+ isStream,
648
+ isURLSearchParams,
649
+ isTypedArray,
650
+ isFileList,
651
+ forEach,
652
+ merge,
653
+ extend,
654
+ trim,
655
+ stripBOM,
656
+ inherits,
657
+ toFlatObject,
658
+ kindOf,
659
+ kindOfTest,
660
+ endsWith,
661
+ toArray,
662
+ forEachEntry,
663
+ matchAll,
664
+ isHTMLForm,
665
+ hasOwnProperty,
666
+ hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection
667
+ reduceDescriptors,
668
+ freezeMethods,
669
+ toObjectSet,
670
+ toCamelCase,
671
+ noop,
672
+ toFiniteNumber,
673
+ findKey,
674
+ global: _global,
675
+ isContextDefined,
676
+ toJSONObject
677
+ };