@alanszp/business-days-date-fns 10.0.0 → 11.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2109) hide show
  1. package/dist/cache/index.d.ts +2 -1
  2. package/dist/cache/index.js +1 -1
  3. package/dist/cache/index.js.map +1 -1
  4. package/dist/utils/withNonBusinessDays.d.ts +2 -2
  5. package/dist/utils/withNonBusinessDays.js +18 -6
  6. package/dist/utils/withNonBusinessDays.js.map +1 -1
  7. package/dist/utils/withNonBusinessDays.test.js +3 -2
  8. package/dist/utils/withNonBusinessDays.test.js.map +1 -1
  9. package/node_modules/@alanszp/errors/.gitignore +3 -0
  10. package/node_modules/@alanszp/errors/.npmignore +3 -0
  11. package/node_modules/@alanszp/errors/LICENSE +21 -0
  12. package/node_modules/@alanszp/errors/dist/errors/BaseError.d.ts +3 -0
  13. package/node_modules/@alanszp/errors/dist/errors/BaseError.js +18 -0
  14. package/node_modules/@alanszp/errors/dist/errors/BaseError.js.map +1 -0
  15. package/node_modules/@alanszp/errors/dist/errors/RenderableError.d.ts +6 -0
  16. package/node_modules/@alanszp/errors/dist/errors/RenderableError.js +3 -0
  17. package/node_modules/@alanszp/errors/dist/errors/RenderableError.js.map +1 -0
  18. package/node_modules/@alanszp/errors/dist/errors/http/BadRequestError.d.ts +8 -0
  19. package/node_modules/@alanszp/errors/dist/errors/http/BadRequestError.js +20 -0
  20. package/node_modules/@alanszp/errors/dist/errors/http/BadRequestError.js.map +1 -0
  21. package/node_modules/@alanszp/errors/dist/errors/http/HttpError.d.ts +8 -0
  22. package/node_modules/@alanszp/errors/dist/errors/http/HttpError.js +18 -0
  23. package/node_modules/@alanszp/errors/dist/errors/http/HttpError.js.map +1 -0
  24. package/node_modules/@alanszp/errors/dist/errors/http/InternalServerError.d.ts +8 -0
  25. package/node_modules/@alanszp/errors/dist/errors/http/InternalServerError.js +32 -0
  26. package/node_modules/@alanszp/errors/dist/errors/http/InternalServerError.js.map +1 -0
  27. package/node_modules/@alanszp/errors/dist/errors/http/NotFoundError.d.ts +4 -0
  28. package/node_modules/@alanszp/errors/dist/errors/http/NotFoundError.js +11 -0
  29. package/node_modules/@alanszp/errors/dist/errors/http/NotFoundError.js.map +1 -0
  30. package/node_modules/@alanszp/errors/dist/errors/http/UnauthorizedError.d.ts +8 -0
  31. package/node_modules/@alanszp/errors/dist/errors/http/UnauthorizedError.js +20 -0
  32. package/node_modules/@alanszp/errors/dist/errors/http/UnauthorizedError.js.map +1 -0
  33. package/node_modules/@alanszp/errors/dist/errors/http/index.d.ts +5 -0
  34. package/node_modules/@alanszp/errors/dist/errors/http/index.js +18 -0
  35. package/node_modules/@alanszp/errors/dist/errors/http/index.js.map +1 -0
  36. package/node_modules/@alanszp/errors/dist/index.d.ts +3 -0
  37. package/node_modules/@alanszp/errors/dist/index.js +16 -0
  38. package/node_modules/@alanszp/errors/dist/index.js.map +1 -0
  39. package/node_modules/@alanszp/errors/node_modules/@types/node/LICENSE +21 -0
  40. package/node_modules/@alanszp/errors/node_modules/@types/node/README.md +15 -0
  41. package/node_modules/@alanszp/errors/node_modules/@types/node/assert/strict.d.ts +8 -0
  42. package/node_modules/@alanszp/errors/node_modules/@types/node/assert.d.ts +996 -0
  43. package/node_modules/@alanszp/errors/node_modules/@types/node/async_hooks.d.ts +539 -0
  44. package/node_modules/@alanszp/errors/node_modules/@types/node/buffer.d.ts +2362 -0
  45. package/node_modules/@alanszp/errors/node_modules/@types/node/child_process.d.ts +1540 -0
  46. package/node_modules/@alanszp/errors/node_modules/@types/node/cluster.d.ts +432 -0
  47. package/node_modules/@alanszp/errors/node_modules/@types/node/console.d.ts +415 -0
  48. package/node_modules/@alanszp/errors/node_modules/@types/node/constants.d.ts +19 -0
  49. package/node_modules/@alanszp/errors/node_modules/@types/node/crypto.d.ts +4487 -0
  50. package/node_modules/@alanszp/errors/node_modules/@types/node/dgram.d.ts +596 -0
  51. package/node_modules/@alanszp/errors/node_modules/@types/node/diagnostics_channel.d.ts +545 -0
  52. package/node_modules/@alanszp/errors/node_modules/@types/node/dns/promises.d.ts +425 -0
  53. package/node_modules/@alanszp/errors/node_modules/@types/node/dns.d.ts +809 -0
  54. package/node_modules/@alanszp/errors/node_modules/@types/node/dom-events.d.ts +122 -0
  55. package/node_modules/@alanszp/errors/node_modules/@types/node/domain.d.ts +170 -0
  56. package/node_modules/@alanszp/errors/node_modules/@types/node/events.d.ts +879 -0
  57. package/node_modules/@alanszp/errors/node_modules/@types/node/fs/promises.d.ts +1239 -0
  58. package/node_modules/@alanszp/errors/node_modules/@types/node/fs.d.ts +4311 -0
  59. package/node_modules/@alanszp/errors/node_modules/@types/node/globals.d.ts +411 -0
  60. package/node_modules/@alanszp/errors/node_modules/@types/node/globals.global.d.ts +1 -0
  61. package/node_modules/@alanszp/errors/node_modules/@types/node/http.d.ts +1887 -0
  62. package/node_modules/@alanszp/errors/node_modules/@types/node/http2.d.ts +2382 -0
  63. package/node_modules/@alanszp/errors/node_modules/@types/node/https.d.ts +550 -0
  64. package/node_modules/@alanszp/errors/node_modules/@types/node/index.d.ts +88 -0
  65. package/node_modules/@alanszp/errors/node_modules/@types/node/inspector.d.ts +2747 -0
  66. package/node_modules/@alanszp/errors/node_modules/@types/node/module.d.ts +315 -0
  67. package/node_modules/@alanszp/errors/node_modules/@types/node/net.d.ts +949 -0
  68. package/node_modules/@alanszp/errors/node_modules/@types/node/os.d.ts +478 -0
  69. package/node_modules/@alanszp/errors/node_modules/@types/node/package.json +229 -0
  70. package/node_modules/@alanszp/errors/node_modules/@types/node/path.d.ts +191 -0
  71. package/node_modules/@alanszp/errors/node_modules/@types/node/perf_hooks.d.ts +645 -0
  72. package/node_modules/@alanszp/errors/node_modules/@types/node/process.d.ts +1561 -0
  73. package/node_modules/@alanszp/errors/node_modules/@types/node/punycode.d.ts +117 -0
  74. package/node_modules/@alanszp/errors/node_modules/@types/node/querystring.d.ts +141 -0
  75. package/node_modules/@alanszp/errors/node_modules/@types/node/readline/promises.d.ts +150 -0
  76. package/node_modules/@alanszp/errors/node_modules/@types/node/readline.d.ts +539 -0
  77. package/node_modules/@alanszp/errors/node_modules/@types/node/repl.d.ts +430 -0
  78. package/node_modules/@alanszp/errors/node_modules/@types/node/stream/consumers.d.ts +12 -0
  79. package/node_modules/@alanszp/errors/node_modules/@types/node/stream/promises.d.ts +83 -0
  80. package/node_modules/@alanszp/errors/node_modules/@types/node/stream/web.d.ts +366 -0
  81. package/node_modules/@alanszp/errors/node_modules/@types/node/stream.d.ts +1701 -0
  82. package/node_modules/@alanszp/errors/node_modules/@types/node/string_decoder.d.ts +67 -0
  83. package/node_modules/@alanszp/errors/node_modules/@types/node/test.d.ts +1465 -0
  84. package/node_modules/@alanszp/errors/node_modules/@types/node/timers/promises.d.ts +93 -0
  85. package/node_modules/@alanszp/errors/node_modules/@types/node/timers.d.ts +240 -0
  86. package/node_modules/@alanszp/errors/node_modules/@types/node/tls.d.ts +1210 -0
  87. package/node_modules/@alanszp/errors/node_modules/@types/node/trace_events.d.ts +182 -0
  88. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/assert/strict.d.ts +8 -0
  89. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/assert.d.ts +996 -0
  90. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/async_hooks.d.ts +539 -0
  91. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/buffer.d.ts +2362 -0
  92. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/child_process.d.ts +1540 -0
  93. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/cluster.d.ts +432 -0
  94. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/console.d.ts +415 -0
  95. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/constants.d.ts +19 -0
  96. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/crypto.d.ts +4487 -0
  97. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/dgram.d.ts +596 -0
  98. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +545 -0
  99. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/dns/promises.d.ts +425 -0
  100. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/dns.d.ts +809 -0
  101. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/dom-events.d.ts +122 -0
  102. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/domain.d.ts +170 -0
  103. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/events.d.ts +879 -0
  104. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/fs/promises.d.ts +1239 -0
  105. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/fs.d.ts +4311 -0
  106. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/globals.d.ts +411 -0
  107. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/globals.global.d.ts +1 -0
  108. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/http.d.ts +1887 -0
  109. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/http2.d.ts +2382 -0
  110. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/https.d.ts +550 -0
  111. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/index.d.ts +88 -0
  112. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/inspector.d.ts +2747 -0
  113. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/module.d.ts +315 -0
  114. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/net.d.ts +949 -0
  115. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/os.d.ts +478 -0
  116. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/path.d.ts +191 -0
  117. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/perf_hooks.d.ts +645 -0
  118. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/process.d.ts +1561 -0
  119. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/punycode.d.ts +117 -0
  120. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/querystring.d.ts +141 -0
  121. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/readline/promises.d.ts +150 -0
  122. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/readline.d.ts +539 -0
  123. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/repl.d.ts +430 -0
  124. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/stream/consumers.d.ts +12 -0
  125. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/stream/promises.d.ts +83 -0
  126. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/stream/web.d.ts +366 -0
  127. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/stream.d.ts +1701 -0
  128. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/string_decoder.d.ts +67 -0
  129. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/test.d.ts +1465 -0
  130. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/timers/promises.d.ts +93 -0
  131. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/timers.d.ts +240 -0
  132. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/tls.d.ts +1210 -0
  133. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/trace_events.d.ts +182 -0
  134. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/tty.d.ts +208 -0
  135. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/url.d.ts +927 -0
  136. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/util.d.ts +2183 -0
  137. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/v8.d.ts +764 -0
  138. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/vm.d.ts +903 -0
  139. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/wasi.d.ts +179 -0
  140. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/worker_threads.d.ts +691 -0
  141. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/zlib.d.ts +517 -0
  142. package/node_modules/@alanszp/errors/node_modules/@types/node/tty.d.ts +208 -0
  143. package/node_modules/@alanszp/errors/node_modules/@types/node/url.d.ts +927 -0
  144. package/node_modules/@alanszp/errors/node_modules/@types/node/util.d.ts +2183 -0
  145. package/node_modules/@alanszp/errors/node_modules/@types/node/v8.d.ts +764 -0
  146. package/node_modules/@alanszp/errors/node_modules/@types/node/vm.d.ts +903 -0
  147. package/node_modules/@alanszp/errors/node_modules/@types/node/wasi.d.ts +179 -0
  148. package/node_modules/@alanszp/errors/node_modules/@types/node/worker_threads.d.ts +691 -0
  149. package/node_modules/@alanszp/errors/node_modules/@types/node/zlib.d.ts +517 -0
  150. package/node_modules/@alanszp/errors/package.json +27 -0
  151. package/node_modules/@alanszp/errors/src/errors/BaseError.ts +14 -0
  152. package/node_modules/@alanszp/errors/src/errors/RenderableError.ts +7 -0
  153. package/node_modules/@alanszp/errors/src/errors/http/BadRequestError.ts +21 -0
  154. package/node_modules/@alanszp/errors/src/errors/http/HttpError.ts +19 -0
  155. package/node_modules/@alanszp/errors/src/errors/http/InternalServerError.ts +34 -0
  156. package/node_modules/@alanszp/errors/src/errors/http/NotFoundError.ts +7 -0
  157. package/node_modules/@alanszp/errors/src/errors/http/UnauthorizedError.ts +21 -0
  158. package/node_modules/@alanszp/errors/src/errors/http/index.ts +5 -0
  159. package/node_modules/@alanszp/errors/src/index.ts +3 -0
  160. package/node_modules/@alanszp/errors/tsconfig.json +15 -0
  161. package/node_modules/@ampproject/remapping/LICENSE +202 -0
  162. package/node_modules/@ampproject/remapping/README.md +218 -0
  163. package/node_modules/@ampproject/remapping/dist/remapping.mjs +191 -0
  164. package/node_modules/@ampproject/remapping/dist/remapping.mjs.map +1 -0
  165. package/node_modules/@ampproject/remapping/dist/remapping.umd.js +196 -0
  166. package/node_modules/@ampproject/remapping/dist/remapping.umd.js.map +1 -0
  167. package/node_modules/@ampproject/remapping/dist/types/build-source-map-tree.d.ts +14 -0
  168. package/node_modules/@ampproject/remapping/dist/types/remapping.d.ts +19 -0
  169. package/node_modules/@ampproject/remapping/dist/types/source-map-tree.d.ts +42 -0
  170. package/node_modules/@ampproject/remapping/dist/types/source-map.d.ts +17 -0
  171. package/node_modules/@ampproject/remapping/dist/types/types.d.ts +14 -0
  172. package/node_modules/@ampproject/remapping/package.json +75 -0
  173. package/node_modules/@babel/code-frame/LICENSE +22 -0
  174. package/node_modules/@babel/code-frame/README.md +19 -0
  175. package/node_modules/@babel/code-frame/lib/index.js +157 -0
  176. package/node_modules/@babel/code-frame/lib/index.js.map +1 -0
  177. package/node_modules/@babel/code-frame/package.json +30 -0
  178. package/node_modules/@babel/compat-data/LICENSE +22 -0
  179. package/node_modules/@babel/compat-data/README.md +19 -0
  180. package/node_modules/@babel/compat-data/corejs2-built-ins.js +2 -0
  181. package/node_modules/@babel/compat-data/corejs3-shipped-proposals.js +2 -0
  182. package/node_modules/@babel/compat-data/data/corejs2-built-ins.json +2081 -0
  183. package/node_modules/@babel/compat-data/data/corejs3-shipped-proposals.json +5 -0
  184. package/node_modules/@babel/compat-data/data/native-modules.json +18 -0
  185. package/node_modules/@babel/compat-data/data/overlapping-plugins.json +31 -0
  186. package/node_modules/@babel/compat-data/data/plugin-bugfixes.json +201 -0
  187. package/node_modules/@babel/compat-data/data/plugins.json +777 -0
  188. package/node_modules/@babel/compat-data/native-modules.js +1 -0
  189. package/node_modules/@babel/compat-data/overlapping-plugins.js +1 -0
  190. package/node_modules/@babel/compat-data/package.json +40 -0
  191. package/node_modules/@babel/compat-data/plugin-bugfixes.js +1 -0
  192. package/node_modules/@babel/compat-data/plugins.js +1 -0
  193. package/node_modules/@babel/core/LICENSE +22 -0
  194. package/node_modules/@babel/core/README.md +19 -0
  195. package/node_modules/@babel/core/cjs-proxy.cjs +53 -0
  196. package/node_modules/@babel/core/lib/config/cache-contexts.js +3 -0
  197. package/node_modules/@babel/core/lib/config/cache-contexts.js.map +1 -0
  198. package/node_modules/@babel/core/lib/config/caching.js +261 -0
  199. package/node_modules/@babel/core/lib/config/caching.js.map +1 -0
  200. package/node_modules/@babel/core/lib/config/config-chain.js +469 -0
  201. package/node_modules/@babel/core/lib/config/config-chain.js.map +1 -0
  202. package/node_modules/@babel/core/lib/config/config-descriptors.js +190 -0
  203. package/node_modules/@babel/core/lib/config/config-descriptors.js.map +1 -0
  204. package/node_modules/@babel/core/lib/config/files/configuration.js +286 -0
  205. package/node_modules/@babel/core/lib/config/files/configuration.js.map +1 -0
  206. package/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
  207. package/node_modules/@babel/core/lib/config/files/import.cjs.map +1 -0
  208. package/node_modules/@babel/core/lib/config/files/index-browser.js +58 -0
  209. package/node_modules/@babel/core/lib/config/files/index-browser.js.map +1 -0
  210. package/node_modules/@babel/core/lib/config/files/index.js +78 -0
  211. package/node_modules/@babel/core/lib/config/files/index.js.map +1 -0
  212. package/node_modules/@babel/core/lib/config/files/module-types.js +173 -0
  213. package/node_modules/@babel/core/lib/config/files/module-types.js.map +1 -0
  214. package/node_modules/@babel/core/lib/config/files/package.js +61 -0
  215. package/node_modules/@babel/core/lib/config/files/package.js.map +1 -0
  216. package/node_modules/@babel/core/lib/config/files/plugins.js +217 -0
  217. package/node_modules/@babel/core/lib/config/files/plugins.js.map +1 -0
  218. package/node_modules/@babel/core/lib/config/files/types.js +3 -0
  219. package/node_modules/@babel/core/lib/config/files/types.js.map +1 -0
  220. package/node_modules/@babel/core/lib/config/files/utils.js +36 -0
  221. package/node_modules/@babel/core/lib/config/files/utils.js.map +1 -0
  222. package/node_modules/@babel/core/lib/config/full.js +310 -0
  223. package/node_modules/@babel/core/lib/config/full.js.map +1 -0
  224. package/node_modules/@babel/core/lib/config/helpers/config-api.js +84 -0
  225. package/node_modules/@babel/core/lib/config/helpers/config-api.js.map +1 -0
  226. package/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
  227. package/node_modules/@babel/core/lib/config/helpers/deep-array.js.map +1 -0
  228. package/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
  229. package/node_modules/@babel/core/lib/config/helpers/environment.js.map +1 -0
  230. package/node_modules/@babel/core/lib/config/index.js +93 -0
  231. package/node_modules/@babel/core/lib/config/index.js.map +1 -0
  232. package/node_modules/@babel/core/lib/config/item.js +67 -0
  233. package/node_modules/@babel/core/lib/config/item.js.map +1 -0
  234. package/node_modules/@babel/core/lib/config/partial.js +158 -0
  235. package/node_modules/@babel/core/lib/config/partial.js.map +1 -0
  236. package/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
  237. package/node_modules/@babel/core/lib/config/pattern-to-regex.js.map +1 -0
  238. package/node_modules/@babel/core/lib/config/plugin.js +33 -0
  239. package/node_modules/@babel/core/lib/config/plugin.js.map +1 -0
  240. package/node_modules/@babel/core/lib/config/printer.js +113 -0
  241. package/node_modules/@babel/core/lib/config/printer.js.map +1 -0
  242. package/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
  243. package/node_modules/@babel/core/lib/config/resolve-targets-browser.js.map +1 -0
  244. package/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
  245. package/node_modules/@babel/core/lib/config/resolve-targets.js.map +1 -0
  246. package/node_modules/@babel/core/lib/config/util.js +31 -0
  247. package/node_modules/@babel/core/lib/config/util.js.map +1 -0
  248. package/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
  249. package/node_modules/@babel/core/lib/config/validation/option-assertions.js.map +1 -0
  250. package/node_modules/@babel/core/lib/config/validation/options.js +192 -0
  251. package/node_modules/@babel/core/lib/config/validation/options.js.map +1 -0
  252. package/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
  253. package/node_modules/@babel/core/lib/config/validation/plugins.js.map +1 -0
  254. package/node_modules/@babel/core/lib/config/validation/removed.js +68 -0
  255. package/node_modules/@babel/core/lib/config/validation/removed.js.map +1 -0
  256. package/node_modules/@babel/core/lib/errors/config-error.js +18 -0
  257. package/node_modules/@babel/core/lib/errors/config-error.js.map +1 -0
  258. package/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
  259. package/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js.map +1 -0
  260. package/node_modules/@babel/core/lib/gensync-utils/async.js +90 -0
  261. package/node_modules/@babel/core/lib/gensync-utils/async.js.map +1 -0
  262. package/node_modules/@babel/core/lib/gensync-utils/fs.js +31 -0
  263. package/node_modules/@babel/core/lib/gensync-utils/fs.js.map +1 -0
  264. package/node_modules/@babel/core/lib/gensync-utils/functional.js +58 -0
  265. package/node_modules/@babel/core/lib/gensync-utils/functional.js.map +1 -0
  266. package/node_modules/@babel/core/lib/index.js +242 -0
  267. package/node_modules/@babel/core/lib/index.js.map +1 -0
  268. package/node_modules/@babel/core/lib/parse.js +47 -0
  269. package/node_modules/@babel/core/lib/parse.js.map +1 -0
  270. package/node_modules/@babel/core/lib/parser/index.js +79 -0
  271. package/node_modules/@babel/core/lib/parser/index.js.map +1 -0
  272. package/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +329 -0
  273. package/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js.map +1 -0
  274. package/node_modules/@babel/core/lib/tools/build-external-helpers.js +143 -0
  275. package/node_modules/@babel/core/lib/tools/build-external-helpers.js.map +1 -0
  276. package/node_modules/@babel/core/lib/transform-ast.js +50 -0
  277. package/node_modules/@babel/core/lib/transform-ast.js.map +1 -0
  278. package/node_modules/@babel/core/lib/transform-file-browser.js +23 -0
  279. package/node_modules/@babel/core/lib/transform-file-browser.js.map +1 -0
  280. package/node_modules/@babel/core/lib/transform-file.js +40 -0
  281. package/node_modules/@babel/core/lib/transform-file.js.map +1 -0
  282. package/node_modules/@babel/core/lib/transform.js +49 -0
  283. package/node_modules/@babel/core/lib/transform.js.map +1 -0
  284. package/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +77 -0
  285. package/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js.map +1 -0
  286. package/node_modules/@babel/core/lib/transformation/file/file.js +211 -0
  287. package/node_modules/@babel/core/lib/transformation/file/file.js.map +1 -0
  288. package/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
  289. package/node_modules/@babel/core/lib/transformation/file/generate.js.map +1 -0
  290. package/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
  291. package/node_modules/@babel/core/lib/transformation/file/merge-map.js.map +1 -0
  292. package/node_modules/@babel/core/lib/transformation/index.js +101 -0
  293. package/node_modules/@babel/core/lib/transformation/index.js.map +1 -0
  294. package/node_modules/@babel/core/lib/transformation/normalize-file.js +129 -0
  295. package/node_modules/@babel/core/lib/transformation/normalize-file.js.map +1 -0
  296. package/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
  297. package/node_modules/@babel/core/lib/transformation/normalize-opts.js.map +1 -0
  298. package/node_modules/@babel/core/lib/transformation/plugin-pass.js +48 -0
  299. package/node_modules/@babel/core/lib/transformation/plugin-pass.js.map +1 -0
  300. package/node_modules/@babel/core/lib/transformation/util/clone-deep.js +36 -0
  301. package/node_modules/@babel/core/lib/transformation/util/clone-deep.js.map +1 -0
  302. package/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1033 -0
  303. package/node_modules/@babel/core/lib/vendor/import-meta-resolve.js.map +1 -0
  304. package/node_modules/@babel/core/package.json +82 -0
  305. package/node_modules/@babel/generator/LICENSE +22 -0
  306. package/node_modules/@babel/generator/README.md +19 -0
  307. package/node_modules/@babel/generator/lib/buffer.js +323 -0
  308. package/node_modules/@babel/generator/lib/buffer.js.map +1 -0
  309. package/node_modules/@babel/generator/lib/generators/base.js +92 -0
  310. package/node_modules/@babel/generator/lib/generators/base.js.map +1 -0
  311. package/node_modules/@babel/generator/lib/generators/classes.js +177 -0
  312. package/node_modules/@babel/generator/lib/generators/classes.js.map +1 -0
  313. package/node_modules/@babel/generator/lib/generators/expressions.js +309 -0
  314. package/node_modules/@babel/generator/lib/generators/expressions.js.map +1 -0
  315. package/node_modules/@babel/generator/lib/generators/flow.js +668 -0
  316. package/node_modules/@babel/generator/lib/generators/flow.js.map +1 -0
  317. package/node_modules/@babel/generator/lib/generators/index.js +128 -0
  318. package/node_modules/@babel/generator/lib/generators/index.js.map +1 -0
  319. package/node_modules/@babel/generator/lib/generators/jsx.js +123 -0
  320. package/node_modules/@babel/generator/lib/generators/jsx.js.map +1 -0
  321. package/node_modules/@babel/generator/lib/generators/methods.js +173 -0
  322. package/node_modules/@babel/generator/lib/generators/methods.js.map +1 -0
  323. package/node_modules/@babel/generator/lib/generators/modules.js +274 -0
  324. package/node_modules/@babel/generator/lib/generators/modules.js.map +1 -0
  325. package/node_modules/@babel/generator/lib/generators/statements.js +275 -0
  326. package/node_modules/@babel/generator/lib/generators/statements.js.map +1 -0
  327. package/node_modules/@babel/generator/lib/generators/template-literals.js +30 -0
  328. package/node_modules/@babel/generator/lib/generators/template-literals.js.map +1 -0
  329. package/node_modules/@babel/generator/lib/generators/types.js +221 -0
  330. package/node_modules/@babel/generator/lib/generators/types.js.map +1 -0
  331. package/node_modules/@babel/generator/lib/generators/typescript.js +687 -0
  332. package/node_modules/@babel/generator/lib/generators/typescript.js.map +1 -0
  333. package/node_modules/@babel/generator/lib/index.js +89 -0
  334. package/node_modules/@babel/generator/lib/index.js.map +1 -0
  335. package/node_modules/@babel/generator/lib/node/index.js +76 -0
  336. package/node_modules/@babel/generator/lib/node/index.js.map +1 -0
  337. package/node_modules/@babel/generator/lib/node/parentheses.js +225 -0
  338. package/node_modules/@babel/generator/lib/node/parentheses.js.map +1 -0
  339. package/node_modules/@babel/generator/lib/node/whitespace.js +145 -0
  340. package/node_modules/@babel/generator/lib/node/whitespace.js.map +1 -0
  341. package/node_modules/@babel/generator/lib/printer.js +684 -0
  342. package/node_modules/@babel/generator/lib/printer.js.map +1 -0
  343. package/node_modules/@babel/generator/lib/source-map.js +85 -0
  344. package/node_modules/@babel/generator/lib/source-map.js.map +1 -0
  345. package/node_modules/@babel/generator/package.json +38 -0
  346. package/node_modules/@babel/helper-annotate-as-pure/LICENSE +22 -0
  347. package/node_modules/@babel/helper-annotate-as-pure/README.md +19 -0
  348. package/node_modules/@babel/helper-annotate-as-pure/lib/index.js +23 -0
  349. package/node_modules/@babel/helper-annotate-as-pure/lib/index.js.map +1 -0
  350. package/node_modules/@babel/helper-annotate-as-pure/package.json +24 -0
  351. package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/LICENSE +22 -0
  352. package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/README.md +19 -0
  353. package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/explode-assignable-expression.js +75 -0
  354. package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/explode-assignable-expression.js.map +1 -0
  355. package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/index.js +42 -0
  356. package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/index.js.map +1 -0
  357. package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/package.json +27 -0
  358. package/node_modules/@babel/helper-compilation-targets/LICENSE +22 -0
  359. package/node_modules/@babel/helper-compilation-targets/README.md +19 -0
  360. package/node_modules/@babel/helper-compilation-targets/lib/debug.js +28 -0
  361. package/node_modules/@babel/helper-compilation-targets/lib/debug.js.map +1 -0
  362. package/node_modules/@babel/helper-compilation-targets/lib/filter-items.js +67 -0
  363. package/node_modules/@babel/helper-compilation-targets/lib/filter-items.js.map +1 -0
  364. package/node_modules/@babel/helper-compilation-targets/lib/index.js +224 -0
  365. package/node_modules/@babel/helper-compilation-targets/lib/index.js.map +1 -0
  366. package/node_modules/@babel/helper-compilation-targets/lib/options.js +24 -0
  367. package/node_modules/@babel/helper-compilation-targets/lib/options.js.map +1 -0
  368. package/node_modules/@babel/helper-compilation-targets/lib/pretty.js +40 -0
  369. package/node_modules/@babel/helper-compilation-targets/lib/pretty.js.map +1 -0
  370. package/node_modules/@babel/helper-compilation-targets/lib/targets.js +28 -0
  371. package/node_modules/@babel/helper-compilation-targets/lib/targets.js.map +1 -0
  372. package/node_modules/@babel/helper-compilation-targets/lib/utils.js +58 -0
  373. package/node_modules/@babel/helper-compilation-targets/lib/utils.js.map +1 -0
  374. package/node_modules/@babel/helper-compilation-targets/package.json +40 -0
  375. package/node_modules/@babel/helper-create-class-features-plugin/LICENSE +22 -0
  376. package/node_modules/@babel/helper-create-class-features-plugin/README.md +19 -0
  377. package/node_modules/@babel/helper-create-class-features-plugin/lib/decorators-2018-09.js +137 -0
  378. package/node_modules/@babel/helper-create-class-features-plugin/lib/decorators-2018-09.js.map +1 -0
  379. package/node_modules/@babel/helper-create-class-features-plugin/lib/decorators.js +950 -0
  380. package/node_modules/@babel/helper-create-class-features-plugin/lib/decorators.js.map +1 -0
  381. package/node_modules/@babel/helper-create-class-features-plugin/lib/features.js +132 -0
  382. package/node_modules/@babel/helper-create-class-features-plugin/lib/features.js.map +1 -0
  383. package/node_modules/@babel/helper-create-class-features-plugin/lib/fields.js +845 -0
  384. package/node_modules/@babel/helper-create-class-features-plugin/lib/fields.js.map +1 -0
  385. package/node_modules/@babel/helper-create-class-features-plugin/lib/index.js +242 -0
  386. package/node_modules/@babel/helper-create-class-features-plugin/lib/index.js.map +1 -0
  387. package/node_modules/@babel/helper-create-class-features-plugin/lib/misc.js +124 -0
  388. package/node_modules/@babel/helper-create-class-features-plugin/lib/misc.js.map +1 -0
  389. package/node_modules/@babel/helper-create-class-features-plugin/lib/typescript.js +13 -0
  390. package/node_modules/@babel/helper-create-class-features-plugin/lib/typescript.js.map +1 -0
  391. package/node_modules/@babel/helper-create-class-features-plugin/package.json +45 -0
  392. package/node_modules/@babel/helper-create-regexp-features-plugin/LICENSE +22 -0
  393. package/node_modules/@babel/helper-create-regexp-features-plugin/README.md +19 -0
  394. package/node_modules/@babel/helper-create-regexp-features-plugin/lib/features.js +33 -0
  395. package/node_modules/@babel/helper-create-regexp-features-plugin/lib/features.js.map +1 -0
  396. package/node_modules/@babel/helper-create-regexp-features-plugin/lib/index.js +116 -0
  397. package/node_modules/@babel/helper-create-regexp-features-plugin/lib/index.js.map +1 -0
  398. package/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js +71 -0
  399. package/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js.map +1 -0
  400. package/node_modules/@babel/helper-create-regexp-features-plugin/package.json +36 -0
  401. package/node_modules/@babel/helper-define-polyfill-provider/LICENSE +22 -0
  402. package/node_modules/@babel/helper-define-polyfill-provider/README.md +15 -0
  403. package/node_modules/@babel/helper-define-polyfill-provider/esm/index.browser.mjs +761 -0
  404. package/node_modules/@babel/helper-define-polyfill-provider/esm/index.browser.mjs.map +1 -0
  405. package/node_modules/@babel/helper-define-polyfill-provider/esm/index.node.mjs +805 -0
  406. package/node_modules/@babel/helper-define-polyfill-provider/esm/index.node.mjs.map +1 -0
  407. package/node_modules/@babel/helper-define-polyfill-provider/lib/browser/dependencies.js +22 -0
  408. package/node_modules/@babel/helper-define-polyfill-provider/lib/debug-utils.js +15 -0
  409. package/node_modules/@babel/helper-define-polyfill-provider/lib/define-provider.js +9 -0
  410. package/node_modules/@babel/helper-define-polyfill-provider/lib/imports-injector.js +107 -0
  411. package/node_modules/@babel/helper-define-polyfill-provider/lib/index.js +278 -0
  412. package/node_modules/@babel/helper-define-polyfill-provider/lib/meta-resolver.js +52 -0
  413. package/node_modules/@babel/helper-define-polyfill-provider/lib/node/dependencies.js +67 -0
  414. package/node_modules/@babel/helper-define-polyfill-provider/lib/normalize-options.js +70 -0
  415. package/node_modules/@babel/helper-define-polyfill-provider/lib/types.js +3 -0
  416. package/node_modules/@babel/helper-define-polyfill-provider/lib/utils.js +165 -0
  417. package/node_modules/@babel/helper-define-polyfill-provider/lib/visitors/entry.js +26 -0
  418. package/node_modules/@babel/helper-define-polyfill-provider/lib/visitors/index.js +9 -0
  419. package/node_modules/@babel/helper-define-polyfill-provider/lib/visitors/usage.js +91 -0
  420. package/node_modules/@babel/helper-define-polyfill-provider/package.json +59 -0
  421. package/node_modules/@babel/helper-environment-visitor/LICENSE +22 -0
  422. package/node_modules/@babel/helper-environment-visitor/README.md +19 -0
  423. package/node_modules/@babel/helper-environment-visitor/lib/index.js +52 -0
  424. package/node_modules/@babel/helper-environment-visitor/lib/index.js.map +1 -0
  425. package/node_modules/@babel/helper-environment-visitor/package.json +29 -0
  426. package/node_modules/@babel/helper-function-name/LICENSE +22 -0
  427. package/node_modules/@babel/helper-function-name/README.md +19 -0
  428. package/node_modules/@babel/helper-function-name/lib/index.js +170 -0
  429. package/node_modules/@babel/helper-function-name/lib/index.js.map +1 -0
  430. package/node_modules/@babel/helper-function-name/package.json +25 -0
  431. package/node_modules/@babel/helper-hoist-variables/LICENSE +22 -0
  432. package/node_modules/@babel/helper-hoist-variables/README.md +19 -0
  433. package/node_modules/@babel/helper-hoist-variables/lib/index.js +50 -0
  434. package/node_modules/@babel/helper-hoist-variables/lib/index.js.map +1 -0
  435. package/node_modules/@babel/helper-hoist-variables/package.json +28 -0
  436. package/node_modules/@babel/helper-member-expression-to-functions/LICENSE +22 -0
  437. package/node_modules/@babel/helper-member-expression-to-functions/README.md +19 -0
  438. package/node_modules/@babel/helper-member-expression-to-functions/lib/index.js +397 -0
  439. package/node_modules/@babel/helper-member-expression-to-functions/lib/index.js.map +1 -0
  440. package/node_modules/@babel/helper-member-expression-to-functions/package.json +27 -0
  441. package/node_modules/@babel/helper-module-imports/LICENSE +22 -0
  442. package/node_modules/@babel/helper-module-imports/README.md +19 -0
  443. package/node_modules/@babel/helper-module-imports/lib/import-builder.js +122 -0
  444. package/node_modules/@babel/helper-module-imports/lib/import-builder.js.map +1 -0
  445. package/node_modules/@babel/helper-module-imports/lib/import-injector.js +240 -0
  446. package/node_modules/@babel/helper-module-imports/lib/import-injector.js.map +1 -0
  447. package/node_modules/@babel/helper-module-imports/lib/index.js +37 -0
  448. package/node_modules/@babel/helper-module-imports/lib/index.js.map +1 -0
  449. package/node_modules/@babel/helper-module-imports/lib/is-module.js +11 -0
  450. package/node_modules/@babel/helper-module-imports/lib/is-module.js.map +1 -0
  451. package/node_modules/@babel/helper-module-imports/package.json +28 -0
  452. package/node_modules/@babel/helper-module-transforms/LICENSE +22 -0
  453. package/node_modules/@babel/helper-module-transforms/README.md +19 -0
  454. package/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js +48 -0
  455. package/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js.map +1 -0
  456. package/node_modules/@babel/helper-module-transforms/lib/get-module-name.js +48 -0
  457. package/node_modules/@babel/helper-module-transforms/lib/get-module-name.js.map +1 -0
  458. package/node_modules/@babel/helper-module-transforms/lib/index.js +380 -0
  459. package/node_modules/@babel/helper-module-transforms/lib/index.js.map +1 -0
  460. package/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js +31 -0
  461. package/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js.map +1 -0
  462. package/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js +358 -0
  463. package/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js.map +1 -0
  464. package/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +376 -0
  465. package/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js.map +1 -0
  466. package/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js +24 -0
  467. package/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js.map +1 -0
  468. package/node_modules/@babel/helper-module-transforms/package.json +35 -0
  469. package/node_modules/@babel/helper-optimise-call-expression/LICENSE +22 -0
  470. package/node_modules/@babel/helper-optimise-call-expression/README.md +19 -0
  471. package/node_modules/@babel/helper-optimise-call-expression/lib/index.js +33 -0
  472. package/node_modules/@babel/helper-optimise-call-expression/lib/index.js.map +1 -0
  473. package/node_modules/@babel/helper-optimise-call-expression/package.json +28 -0
  474. package/node_modules/@babel/helper-plugin-utils/LICENSE +22 -0
  475. package/node_modules/@babel/helper-plugin-utils/README.md +19 -0
  476. package/node_modules/@babel/helper-plugin-utils/lib/index.js +81 -0
  477. package/node_modules/@babel/helper-plugin-utils/lib/index.js.map +1 -0
  478. package/node_modules/@babel/helper-plugin-utils/package.json +21 -0
  479. package/node_modules/@babel/helper-remap-async-to-generator/LICENSE +22 -0
  480. package/node_modules/@babel/helper-remap-async-to-generator/README.md +19 -0
  481. package/node_modules/@babel/helper-remap-async-to-generator/lib/index.js +64 -0
  482. package/node_modules/@babel/helper-remap-async-to-generator/lib/index.js.map +1 -0
  483. package/node_modules/@babel/helper-remap-async-to-generator/package.json +33 -0
  484. package/node_modules/@babel/helper-replace-supers/LICENSE +22 -0
  485. package/node_modules/@babel/helper-replace-supers/README.md +19 -0
  486. package/node_modules/@babel/helper-replace-supers/lib/index.js +227 -0
  487. package/node_modules/@babel/helper-replace-supers/lib/index.js.map +1 -0
  488. package/node_modules/@babel/helper-replace-supers/package.json +32 -0
  489. package/node_modules/@babel/helper-simple-access/LICENSE +22 -0
  490. package/node_modules/@babel/helper-simple-access/README.md +19 -0
  491. package/node_modules/@babel/helper-simple-access/lib/index.js +91 -0
  492. package/node_modules/@babel/helper-simple-access/lib/index.js.map +1 -0
  493. package/node_modules/@babel/helper-simple-access/package.json +28 -0
  494. package/node_modules/@babel/helper-skip-transparent-expression-wrappers/LICENSE +22 -0
  495. package/node_modules/@babel/helper-skip-transparent-expression-wrappers/README.md +19 -0
  496. package/node_modules/@babel/helper-skip-transparent-expression-wrappers/lib/index.js +34 -0
  497. package/node_modules/@babel/helper-skip-transparent-expression-wrappers/lib/index.js.map +1 -0
  498. package/node_modules/@babel/helper-skip-transparent-expression-wrappers/package.json +30 -0
  499. package/node_modules/@babel/helper-split-export-declaration/LICENSE +22 -0
  500. package/node_modules/@babel/helper-split-export-declaration/README.md +19 -0
  501. package/node_modules/@babel/helper-split-export-declaration/lib/index.js +59 -0
  502. package/node_modules/@babel/helper-split-export-declaration/lib/index.js.map +1 -0
  503. package/node_modules/@babel/helper-split-export-declaration/package.json +24 -0
  504. package/node_modules/@babel/helper-string-parser/LICENSE +22 -0
  505. package/node_modules/@babel/helper-string-parser/README.md +19 -0
  506. package/node_modules/@babel/helper-string-parser/lib/index.js +295 -0
  507. package/node_modules/@babel/helper-string-parser/lib/index.js.map +1 -0
  508. package/node_modules/@babel/helper-string-parser/package.json +28 -0
  509. package/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
  510. package/node_modules/@babel/helper-validator-identifier/README.md +19 -0
  511. package/node_modules/@babel/helper-validator-identifier/lib/identifier.js +70 -0
  512. package/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +1 -0
  513. package/node_modules/@babel/helper-validator-identifier/lib/index.js +57 -0
  514. package/node_modules/@babel/helper-validator-identifier/lib/index.js.map +1 -0
  515. package/node_modules/@babel/helper-validator-identifier/lib/keyword.js +35 -0
  516. package/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +1 -0
  517. package/node_modules/@babel/helper-validator-identifier/package.json +28 -0
  518. package/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js +73 -0
  519. package/node_modules/@babel/helper-validator-option/LICENSE +22 -0
  520. package/node_modules/@babel/helper-validator-option/README.md +19 -0
  521. package/node_modules/@babel/helper-validator-option/lib/find-suggestion.js +39 -0
  522. package/node_modules/@babel/helper-validator-option/lib/find-suggestion.js.map +1 -0
  523. package/node_modules/@babel/helper-validator-option/lib/index.js +21 -0
  524. package/node_modules/@babel/helper-validator-option/lib/index.js.map +1 -0
  525. package/node_modules/@babel/helper-validator-option/lib/validator.js +48 -0
  526. package/node_modules/@babel/helper-validator-option/lib/validator.js.map +1 -0
  527. package/node_modules/@babel/helper-validator-option/package.json +24 -0
  528. package/node_modules/@babel/helper-wrap-function/LICENSE +22 -0
  529. package/node_modules/@babel/helper-wrap-function/README.md +19 -0
  530. package/node_modules/@babel/helper-wrap-function/lib/index.js +123 -0
  531. package/node_modules/@babel/helper-wrap-function/lib/index.js.map +1 -0
  532. package/node_modules/@babel/helper-wrap-function/package.json +29 -0
  533. package/node_modules/@babel/helpers/LICENSE +22 -0
  534. package/node_modules/@babel/helpers/README.md +19 -0
  535. package/node_modules/@babel/helpers/lib/helpers/AsyncGenerator.js +92 -0
  536. package/node_modules/@babel/helpers/lib/helpers/AsyncGenerator.js.map +1 -0
  537. package/node_modules/@babel/helpers/lib/helpers/OverloadYield.js +12 -0
  538. package/node_modules/@babel/helpers/lib/helpers/OverloadYield.js.map +1 -0
  539. package/node_modules/@babel/helpers/lib/helpers/applyDecs.js +459 -0
  540. package/node_modules/@babel/helpers/lib/helpers/applyDecs.js.map +1 -0
  541. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js +363 -0
  542. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js.map +1 -0
  543. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js +376 -0
  544. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js.map +1 -0
  545. package/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js +421 -0
  546. package/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js.map +1 -0
  547. package/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js +235 -0
  548. package/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js.map +1 -0
  549. package/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js +52 -0
  550. package/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js.map +1 -0
  551. package/node_modules/@babel/helpers/lib/helpers/asyncIterator.js +70 -0
  552. package/node_modules/@babel/helpers/lib/helpers/asyncIterator.js.map +1 -0
  553. package/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js +12 -0
  554. package/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js.map +1 -0
  555. package/node_modules/@babel/helpers/lib/helpers/callSuper.js +15 -0
  556. package/node_modules/@babel/helpers/lib/helpers/callSuper.js.map +1 -0
  557. package/node_modules/@babel/helpers/lib/helpers/checkInRHS.js +14 -0
  558. package/node_modules/@babel/helpers/lib/helpers/checkInRHS.js.map +1 -0
  559. package/node_modules/@babel/helpers/lib/helpers/construct.js +20 -0
  560. package/node_modules/@babel/helpers/lib/helpers/construct.js.map +1 -0
  561. package/node_modules/@babel/helpers/lib/helpers/defineAccessor.js +16 -0
  562. package/node_modules/@babel/helpers/lib/helpers/defineAccessor.js.map +1 -0
  563. package/node_modules/@babel/helpers/lib/helpers/dispose.js +47 -0
  564. package/node_modules/@babel/helpers/lib/helpers/dispose.js.map +1 -0
  565. package/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js +35 -0
  566. package/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js.map +1 -0
  567. package/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js +49 -0
  568. package/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js.map +1 -0
  569. package/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js +16 -0
  570. package/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js.map +1 -0
  571. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js +41 -0
  572. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js.map +1 -0
  573. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimitLoose.js +18 -0
  574. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimitLoose.js.map +1 -0
  575. package/node_modules/@babel/helpers/lib/helpers/jsx.js +47 -0
  576. package/node_modules/@babel/helpers/lib/helpers/jsx.js.map +1 -0
  577. package/node_modules/@babel/helpers/lib/helpers/objectSpread2.js +39 -0
  578. package/node_modules/@babel/helpers/lib/helpers/objectSpread2.js.map +1 -0
  579. package/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js +499 -0
  580. package/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js.map +1 -0
  581. package/node_modules/@babel/helpers/lib/helpers/setFunctionName.js +21 -0
  582. package/node_modules/@babel/helpers/lib/helpers/setFunctionName.js.map +1 -0
  583. package/node_modules/@babel/helpers/lib/helpers/toPrimitive.js +18 -0
  584. package/node_modules/@babel/helpers/lib/helpers/toPrimitive.js.map +1 -0
  585. package/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js +13 -0
  586. package/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js.map +1 -0
  587. package/node_modules/@babel/helpers/lib/helpers/typeof.js +22 -0
  588. package/node_modules/@babel/helpers/lib/helpers/typeof.js.map +1 -0
  589. package/node_modules/@babel/helpers/lib/helpers/using.js +29 -0
  590. package/node_modules/@babel/helpers/lib/helpers/using.js.map +1 -0
  591. package/node_modules/@babel/helpers/lib/helpers/usingCtx.js +68 -0
  592. package/node_modules/@babel/helpers/lib/helpers/usingCtx.js.map +1 -0
  593. package/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js +66 -0
  594. package/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js.map +1 -0
  595. package/node_modules/@babel/helpers/lib/helpers-generated.js +49 -0
  596. package/node_modules/@babel/helpers/lib/helpers-generated.js.map +1 -0
  597. package/node_modules/@babel/helpers/lib/helpers.js +1677 -0
  598. package/node_modules/@babel/helpers/lib/helpers.js.map +1 -0
  599. package/node_modules/@babel/helpers/lib/index.js +241 -0
  600. package/node_modules/@babel/helpers/lib/index.js.map +1 -0
  601. package/node_modules/@babel/helpers/package.json +32 -0
  602. package/node_modules/@babel/helpers/scripts/generate-helpers.js +119 -0
  603. package/node_modules/@babel/helpers/scripts/generate-regenerator-runtime.js +63 -0
  604. package/node_modules/@babel/helpers/scripts/package.json +1 -0
  605. package/node_modules/@babel/highlight/LICENSE +22 -0
  606. package/node_modules/@babel/highlight/README.md +19 -0
  607. package/node_modules/@babel/highlight/lib/index.js +105 -0
  608. package/node_modules/@babel/highlight/lib/index.js.map +1 -0
  609. package/node_modules/@babel/highlight/package.json +29 -0
  610. package/node_modules/@babel/parser/CHANGELOG.md +1073 -0
  611. package/node_modules/@babel/parser/LICENSE +19 -0
  612. package/node_modules/@babel/parser/README.md +19 -0
  613. package/node_modules/@babel/parser/bin/babel-parser.js +15 -0
  614. package/node_modules/@babel/parser/index.cjs +5 -0
  615. package/node_modules/@babel/parser/lib/index.js +13980 -0
  616. package/node_modules/@babel/parser/lib/index.js.map +1 -0
  617. package/node_modules/@babel/parser/package.json +46 -0
  618. package/node_modules/@babel/parser/typings/babel-parser.d.ts +251 -0
  619. package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/LICENSE +22 -0
  620. package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/README.md +19 -0
  621. package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/lib/index.js +47 -0
  622. package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/lib/index.js.map +1 -0
  623. package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/package.json +41 -0
  624. package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/LICENSE +22 -0
  625. package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/README.md +19 -0
  626. package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/lib/index.js +66 -0
  627. package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/lib/index.js.map +1 -0
  628. package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/package.json +42 -0
  629. package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/LICENSE +22 -0
  630. package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/README.md +19 -0
  631. package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/lib/index.js +172 -0
  632. package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/lib/index.js.map +1 -0
  633. package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/package.json +41 -0
  634. package/node_modules/@babel/plugin-proposal-private-property-in-object/LICENSE +22 -0
  635. package/node_modules/@babel/plugin-proposal-private-property-in-object/README.md +23 -0
  636. package/node_modules/@babel/plugin-proposal-private-property-in-object/lib/index.js +36 -0
  637. package/node_modules/@babel/plugin-proposal-private-property-in-object/lib/index.js.map +1 -0
  638. package/node_modules/@babel/plugin-proposal-private-property-in-object/package.json +27 -0
  639. package/node_modules/@babel/plugin-syntax-async-generators/LICENSE +22 -0
  640. package/node_modules/@babel/plugin-syntax-async-generators/README.md +19 -0
  641. package/node_modules/@babel/plugin-syntax-async-generators/lib/index.js +22 -0
  642. package/node_modules/@babel/plugin-syntax-async-generators/package.json +23 -0
  643. package/node_modules/@babel/plugin-syntax-class-properties/LICENSE +22 -0
  644. package/node_modules/@babel/plugin-syntax-class-properties/README.md +19 -0
  645. package/node_modules/@babel/plugin-syntax-class-properties/lib/index.js +22 -0
  646. package/node_modules/@babel/plugin-syntax-class-properties/package.json +28 -0
  647. package/node_modules/@babel/plugin-syntax-class-static-block/LICENSE +22 -0
  648. package/node_modules/@babel/plugin-syntax-class-static-block/README.md +19 -0
  649. package/node_modules/@babel/plugin-syntax-class-static-block/lib/index.js +22 -0
  650. package/node_modules/@babel/plugin-syntax-class-static-block/package.json +32 -0
  651. package/node_modules/@babel/plugin-syntax-dynamic-import/LICENSE +22 -0
  652. package/node_modules/@babel/plugin-syntax-dynamic-import/README.md +19 -0
  653. package/node_modules/@babel/plugin-syntax-dynamic-import/lib/index.js +22 -0
  654. package/node_modules/@babel/plugin-syntax-dynamic-import/package.json +23 -0
  655. package/node_modules/@babel/plugin-syntax-export-namespace-from/LICENSE +22 -0
  656. package/node_modules/@babel/plugin-syntax-export-namespace-from/README.md +19 -0
  657. package/node_modules/@babel/plugin-syntax-export-namespace-from/lib/index.js +22 -0
  658. package/node_modules/@babel/plugin-syntax-export-namespace-from/package.json +24 -0
  659. package/node_modules/@babel/plugin-syntax-import-assertions/LICENSE +22 -0
  660. package/node_modules/@babel/plugin-syntax-import-assertions/README.md +19 -0
  661. package/node_modules/@babel/plugin-syntax-import-assertions/lib/index.js +18 -0
  662. package/node_modules/@babel/plugin-syntax-import-assertions/lib/index.js.map +1 -0
  663. package/node_modules/@babel/plugin-syntax-import-assertions/package.json +32 -0
  664. package/node_modules/@babel/plugin-syntax-import-attributes/LICENSE +22 -0
  665. package/node_modules/@babel/plugin-syntax-import-attributes/README.md +19 -0
  666. package/node_modules/@babel/plugin-syntax-import-attributes/lib/index.js +30 -0
  667. package/node_modules/@babel/plugin-syntax-import-attributes/lib/index.js.map +1 -0
  668. package/node_modules/@babel/plugin-syntax-import-attributes/package.json +36 -0
  669. package/node_modules/@babel/plugin-syntax-import-meta/LICENSE +22 -0
  670. package/node_modules/@babel/plugin-syntax-import-meta/README.md +19 -0
  671. package/node_modules/@babel/plugin-syntax-import-meta/lib/index.js +22 -0
  672. package/node_modules/@babel/plugin-syntax-import-meta/package.json +28 -0
  673. package/node_modules/@babel/plugin-syntax-json-strings/LICENSE +22 -0
  674. package/node_modules/@babel/plugin-syntax-json-strings/README.md +19 -0
  675. package/node_modules/@babel/plugin-syntax-json-strings/lib/index.js +22 -0
  676. package/node_modules/@babel/plugin-syntax-json-strings/package.json +23 -0
  677. package/node_modules/@babel/plugin-syntax-jsx/LICENSE +22 -0
  678. package/node_modules/@babel/plugin-syntax-jsx/README.md +19 -0
  679. package/node_modules/@babel/plugin-syntax-jsx/lib/index.js +23 -0
  680. package/node_modules/@babel/plugin-syntax-jsx/lib/index.js.map +1 -0
  681. package/node_modules/@babel/plugin-syntax-jsx/package.json +33 -0
  682. package/node_modules/@babel/plugin-syntax-logical-assignment-operators/LICENSE +22 -0
  683. package/node_modules/@babel/plugin-syntax-logical-assignment-operators/README.md +19 -0
  684. package/node_modules/@babel/plugin-syntax-logical-assignment-operators/lib/index.js +22 -0
  685. package/node_modules/@babel/plugin-syntax-logical-assignment-operators/package.json +28 -0
  686. package/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/LICENSE +22 -0
  687. package/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/README.md +19 -0
  688. package/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/lib/index.js +22 -0
  689. package/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/package.json +23 -0
  690. package/node_modules/@babel/plugin-syntax-numeric-separator/LICENSE +22 -0
  691. package/node_modules/@babel/plugin-syntax-numeric-separator/README.md +19 -0
  692. package/node_modules/@babel/plugin-syntax-numeric-separator/lib/index.js +22 -0
  693. package/node_modules/@babel/plugin-syntax-numeric-separator/package.json +28 -0
  694. package/node_modules/@babel/plugin-syntax-object-rest-spread/LICENSE +22 -0
  695. package/node_modules/@babel/plugin-syntax-object-rest-spread/README.md +19 -0
  696. package/node_modules/@babel/plugin-syntax-object-rest-spread/lib/index.js +22 -0
  697. package/node_modules/@babel/plugin-syntax-object-rest-spread/package.json +23 -0
  698. package/node_modules/@babel/plugin-syntax-optional-catch-binding/LICENSE +22 -0
  699. package/node_modules/@babel/plugin-syntax-optional-catch-binding/README.md +19 -0
  700. package/node_modules/@babel/plugin-syntax-optional-catch-binding/lib/index.js +22 -0
  701. package/node_modules/@babel/plugin-syntax-optional-catch-binding/package.json +23 -0
  702. package/node_modules/@babel/plugin-syntax-optional-chaining/LICENSE +22 -0
  703. package/node_modules/@babel/plugin-syntax-optional-chaining/README.md +19 -0
  704. package/node_modules/@babel/plugin-syntax-optional-chaining/lib/index.js +22 -0
  705. package/node_modules/@babel/plugin-syntax-optional-chaining/package.json +23 -0
  706. package/node_modules/@babel/plugin-syntax-private-property-in-object/LICENSE +22 -0
  707. package/node_modules/@babel/plugin-syntax-private-property-in-object/README.md +19 -0
  708. package/node_modules/@babel/plugin-syntax-private-property-in-object/lib/index.js +22 -0
  709. package/node_modules/@babel/plugin-syntax-private-property-in-object/package.json +32 -0
  710. package/node_modules/@babel/plugin-syntax-top-level-await/LICENSE +22 -0
  711. package/node_modules/@babel/plugin-syntax-top-level-await/README.md +19 -0
  712. package/node_modules/@babel/plugin-syntax-top-level-await/lib/index.js +22 -0
  713. package/node_modules/@babel/plugin-syntax-top-level-await/package.json +32 -0
  714. package/node_modules/@babel/plugin-syntax-typescript/LICENSE +22 -0
  715. package/node_modules/@babel/plugin-syntax-typescript/README.md +19 -0
  716. package/node_modules/@babel/plugin-syntax-typescript/lib/index.js +55 -0
  717. package/node_modules/@babel/plugin-syntax-typescript/lib/index.js.map +1 -0
  718. package/node_modules/@babel/plugin-syntax-typescript/package.json +35 -0
  719. package/node_modules/@babel/plugin-syntax-unicode-sets-regex/LICENSE +22 -0
  720. package/node_modules/@babel/plugin-syntax-unicode-sets-regex/README.md +19 -0
  721. package/node_modules/@babel/plugin-syntax-unicode-sets-regex/lib/index.js +25 -0
  722. package/node_modules/@babel/plugin-syntax-unicode-sets-regex/package.json +49 -0
  723. package/node_modules/@babel/plugin-transform-arrow-functions/LICENSE +22 -0
  724. package/node_modules/@babel/plugin-transform-arrow-functions/README.md +19 -0
  725. package/node_modules/@babel/plugin-transform-arrow-functions/lib/index.js +29 -0
  726. package/node_modules/@babel/plugin-transform-arrow-functions/lib/index.js.map +1 -0
  727. package/node_modules/@babel/plugin-transform-arrow-functions/package.json +36 -0
  728. package/node_modules/@babel/plugin-transform-async-generator-functions/LICENSE +22 -0
  729. package/node_modules/@babel/plugin-transform-async-generator-functions/README.md +19 -0
  730. package/node_modules/@babel/plugin-transform-async-generator-functions/lib/for-await.js +77 -0
  731. package/node_modules/@babel/plugin-transform-async-generator-functions/lib/for-await.js.map +1 -0
  732. package/node_modules/@babel/plugin-transform-async-generator-functions/lib/index.js +84 -0
  733. package/node_modules/@babel/plugin-transform-async-generator-functions/lib/index.js.map +1 -0
  734. package/node_modules/@babel/plugin-transform-async-generator-functions/package.json +39 -0
  735. package/node_modules/@babel/plugin-transform-async-to-generator/LICENSE +22 -0
  736. package/node_modules/@babel/plugin-transform-async-to-generator/README.md +19 -0
  737. package/node_modules/@babel/plugin-transform-async-to-generator/lib/index.js +52 -0
  738. package/node_modules/@babel/plugin-transform-async-to-generator/lib/index.js.map +1 -0
  739. package/node_modules/@babel/plugin-transform-async-to-generator/package.json +36 -0
  740. package/node_modules/@babel/plugin-transform-block-scoped-functions/LICENSE +22 -0
  741. package/node_modules/@babel/plugin-transform-block-scoped-functions/README.md +19 -0
  742. package/node_modules/@babel/plugin-transform-block-scoped-functions/lib/index.js +43 -0
  743. package/node_modules/@babel/plugin-transform-block-scoped-functions/lib/index.js.map +1 -0
  744. package/node_modules/@babel/plugin-transform-block-scoped-functions/package.json +34 -0
  745. package/node_modules/@babel/plugin-transform-block-scoping/LICENSE +22 -0
  746. package/node_modules/@babel/plugin-transform-block-scoping/README.md +19 -0
  747. package/node_modules/@babel/plugin-transform-block-scoping/lib/annex-B_3_3.js +100 -0
  748. package/node_modules/@babel/plugin-transform-block-scoping/lib/annex-B_3_3.js.map +1 -0
  749. package/node_modules/@babel/plugin-transform-block-scoping/lib/index.js +184 -0
  750. package/node_modules/@babel/plugin-transform-block-scoping/lib/index.js.map +1 -0
  751. package/node_modules/@babel/plugin-transform-block-scoping/lib/loop.js +294 -0
  752. package/node_modules/@babel/plugin-transform-block-scoping/lib/loop.js.map +1 -0
  753. package/node_modules/@babel/plugin-transform-block-scoping/lib/validation.js +133 -0
  754. package/node_modules/@babel/plugin-transform-block-scoping/lib/validation.js.map +1 -0
  755. package/node_modules/@babel/plugin-transform-block-scoping/package.json +35 -0
  756. package/node_modules/@babel/plugin-transform-class-properties/LICENSE +22 -0
  757. package/node_modules/@babel/plugin-transform-class-properties/README.md +19 -0
  758. package/node_modules/@babel/plugin-transform-class-properties/lib/index.js +22 -0
  759. package/node_modules/@babel/plugin-transform-class-properties/lib/index.js.map +1 -0
  760. package/node_modules/@babel/plugin-transform-class-properties/package.json +35 -0
  761. package/node_modules/@babel/plugin-transform-class-static-block/LICENSE +22 -0
  762. package/node_modules/@babel/plugin-transform-class-static-block/README.md +19 -0
  763. package/node_modules/@babel/plugin-transform-class-static-block/lib/index.js +62 -0
  764. package/node_modules/@babel/plugin-transform-class-static-block/lib/index.js.map +1 -0
  765. package/node_modules/@babel/plugin-transform-class-static-block/package.json +42 -0
  766. package/node_modules/@babel/plugin-transform-classes/LICENSE +22 -0
  767. package/node_modules/@babel/plugin-transform-classes/README.md +19 -0
  768. package/node_modules/@babel/plugin-transform-classes/lib/index.js +72 -0
  769. package/node_modules/@babel/plugin-transform-classes/lib/index.js.map +1 -0
  770. package/node_modules/@babel/plugin-transform-classes/lib/inline-callSuper-helpers.js +73 -0
  771. package/node_modules/@babel/plugin-transform-classes/lib/inline-callSuper-helpers.js.map +1 -0
  772. package/node_modules/@babel/plugin-transform-classes/lib/transformClass.js +511 -0
  773. package/node_modules/@babel/plugin-transform-classes/lib/transformClass.js.map +1 -0
  774. package/node_modules/@babel/plugin-transform-classes/package.json +42 -0
  775. package/node_modules/@babel/plugin-transform-computed-properties/LICENSE +22 -0
  776. package/node_modules/@babel/plugin-transform-computed-properties/README.md +19 -0
  777. package/node_modules/@babel/plugin-transform-computed-properties/lib/index.js +168 -0
  778. package/node_modules/@babel/plugin-transform-computed-properties/lib/index.js.map +1 -0
  779. package/node_modules/@babel/plugin-transform-computed-properties/package.json +35 -0
  780. package/node_modules/@babel/plugin-transform-destructuring/LICENSE +22 -0
  781. package/node_modules/@babel/plugin-transform-destructuring/README.md +19 -0
  782. package/node_modules/@babel/plugin-transform-destructuring/lib/index.js +545 -0
  783. package/node_modules/@babel/plugin-transform-destructuring/lib/index.js.map +1 -0
  784. package/node_modules/@babel/plugin-transform-destructuring/package.json +35 -0
  785. package/node_modules/@babel/plugin-transform-dotall-regex/LICENSE +22 -0
  786. package/node_modules/@babel/plugin-transform-dotall-regex/README.md +19 -0
  787. package/node_modules/@babel/plugin-transform-dotall-regex/lib/index.js +17 -0
  788. package/node_modules/@babel/plugin-transform-dotall-regex/lib/index.js.map +1 -0
  789. package/node_modules/@babel/plugin-transform-dotall-regex/package.json +40 -0
  790. package/node_modules/@babel/plugin-transform-duplicate-keys/LICENSE +22 -0
  791. package/node_modules/@babel/plugin-transform-duplicate-keys/README.md +19 -0
  792. package/node_modules/@babel/plugin-transform-duplicate-keys/lib/index.js +60 -0
  793. package/node_modules/@babel/plugin-transform-duplicate-keys/lib/index.js.map +1 -0
  794. package/node_modules/@babel/plugin-transform-duplicate-keys/package.json +34 -0
  795. package/node_modules/@babel/plugin-transform-dynamic-import/LICENSE +22 -0
  796. package/node_modules/@babel/plugin-transform-dynamic-import/README.md +19 -0
  797. package/node_modules/@babel/plugin-transform-dynamic-import/lib/index.js +40 -0
  798. package/node_modules/@babel/plugin-transform-dynamic-import/lib/index.js.map +1 -0
  799. package/node_modules/@babel/plugin-transform-dynamic-import/package.json +34 -0
  800. package/node_modules/@babel/plugin-transform-exponentiation-operator/LICENSE +22 -0
  801. package/node_modules/@babel/plugin-transform-exponentiation-operator/README.md +19 -0
  802. package/node_modules/@babel/plugin-transform-exponentiation-operator/lib/index.js +23 -0
  803. package/node_modules/@babel/plugin-transform-exponentiation-operator/lib/index.js.map +1 -0
  804. package/node_modules/@babel/plugin-transform-exponentiation-operator/package.json +35 -0
  805. package/node_modules/@babel/plugin-transform-export-namespace-from/LICENSE +22 -0
  806. package/node_modules/@babel/plugin-transform-export-namespace-from/README.md +19 -0
  807. package/node_modules/@babel/plugin-transform-export-namespace-from/lib/index.js +46 -0
  808. package/node_modules/@babel/plugin-transform-export-namespace-from/lib/index.js.map +1 -0
  809. package/node_modules/@babel/plugin-transform-export-namespace-from/package.json +35 -0
  810. package/node_modules/@babel/plugin-transform-for-of/LICENSE +22 -0
  811. package/node_modules/@babel/plugin-transform-for-of/README.md +19 -0
  812. package/node_modules/@babel/plugin-transform-for-of/lib/index.js +194 -0
  813. package/node_modules/@babel/plugin-transform-for-of/lib/index.js.map +1 -0
  814. package/node_modules/@babel/plugin-transform-for-of/lib/no-helper-implementation.js +153 -0
  815. package/node_modules/@babel/plugin-transform-for-of/lib/no-helper-implementation.js.map +1 -0
  816. package/node_modules/@babel/plugin-transform-for-of/package.json +35 -0
  817. package/node_modules/@babel/plugin-transform-function-name/LICENSE +22 -0
  818. package/node_modules/@babel/plugin-transform-function-name/README.md +19 -0
  819. package/node_modules/@babel/plugin-transform-function-name/lib/index.js +35 -0
  820. package/node_modules/@babel/plugin-transform-function-name/lib/index.js.map +1 -0
  821. package/node_modules/@babel/plugin-transform-function-name/package.json +36 -0
  822. package/node_modules/@babel/plugin-transform-json-strings/LICENSE +22 -0
  823. package/node_modules/@babel/plugin-transform-json-strings/README.md +19 -0
  824. package/node_modules/@babel/plugin-transform-json-strings/lib/index.js +33 -0
  825. package/node_modules/@babel/plugin-transform-json-strings/lib/index.js.map +1 -0
  826. package/node_modules/@babel/plugin-transform-json-strings/package.json +35 -0
  827. package/node_modules/@babel/plugin-transform-literals/LICENSE +22 -0
  828. package/node_modules/@babel/plugin-transform-literals/README.md +19 -0
  829. package/node_modules/@babel/plugin-transform-literals/lib/index.js +31 -0
  830. package/node_modules/@babel/plugin-transform-literals/lib/index.js.map +1 -0
  831. package/node_modules/@babel/plugin-transform-literals/package.json +34 -0
  832. package/node_modules/@babel/plugin-transform-logical-assignment-operators/LICENSE +22 -0
  833. package/node_modules/@babel/plugin-transform-logical-assignment-operators/README.md +19 -0
  834. package/node_modules/@babel/plugin-transform-logical-assignment-operators/lib/index.js +55 -0
  835. package/node_modules/@babel/plugin-transform-logical-assignment-operators/lib/index.js.map +1 -0
  836. package/node_modules/@babel/plugin-transform-logical-assignment-operators/package.json +36 -0
  837. package/node_modules/@babel/plugin-transform-member-expression-literals/LICENSE +22 -0
  838. package/node_modules/@babel/plugin-transform-member-expression-literals/README.md +19 -0
  839. package/node_modules/@babel/plugin-transform-member-expression-literals/lib/index.js +29 -0
  840. package/node_modules/@babel/plugin-transform-member-expression-literals/lib/index.js.map +1 -0
  841. package/node_modules/@babel/plugin-transform-member-expression-literals/package.json +34 -0
  842. package/node_modules/@babel/plugin-transform-modules-amd/LICENSE +22 -0
  843. package/node_modules/@babel/plugin-transform-modules-amd/README.md +19 -0
  844. package/node_modules/@babel/plugin-transform-modules-amd/lib/index.js +144 -0
  845. package/node_modules/@babel/plugin-transform-modules-amd/lib/index.js.map +1 -0
  846. package/node_modules/@babel/plugin-transform-modules-amd/package.json +36 -0
  847. package/node_modules/@babel/plugin-transform-modules-commonjs/LICENSE +22 -0
  848. package/node_modules/@babel/plugin-transform-modules-commonjs/README.md +19 -0
  849. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/dynamic-import.js +16 -0
  850. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/dynamic-import.js.map +1 -0
  851. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/hooks.js +37 -0
  852. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/hooks.js.map +1 -0
  853. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/index.js +197 -0
  854. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/index.js.map +1 -0
  855. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/lazy.js +44 -0
  856. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/lazy.js.map +1 -0
  857. package/node_modules/@babel/plugin-transform-modules-commonjs/package.json +37 -0
  858. package/node_modules/@babel/plugin-transform-modules-systemjs/LICENSE +22 -0
  859. package/node_modules/@babel/plugin-transform-modules-systemjs/README.md +19 -0
  860. package/node_modules/@babel/plugin-transform-modules-systemjs/lib/index.js +403 -0
  861. package/node_modules/@babel/plugin-transform-modules-systemjs/lib/index.js.map +1 -0
  862. package/node_modules/@babel/plugin-transform-modules-systemjs/package.json +39 -0
  863. package/node_modules/@babel/plugin-transform-modules-umd/LICENSE +22 -0
  864. package/node_modules/@babel/plugin-transform-modules-umd/README.md +19 -0
  865. package/node_modules/@babel/plugin-transform-modules-umd/lib/index.js +156 -0
  866. package/node_modules/@babel/plugin-transform-modules-umd/lib/index.js.map +1 -0
  867. package/node_modules/@babel/plugin-transform-modules-umd/package.json +36 -0
  868. package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/LICENSE +22 -0
  869. package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/README.md +19 -0
  870. package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/lib/index.js +26 -0
  871. package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/lib/index.js.map +1 -0
  872. package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/package.json +40 -0
  873. package/node_modules/@babel/plugin-transform-new-target/LICENSE +22 -0
  874. package/node_modules/@babel/plugin-transform-new-target/README.md +19 -0
  875. package/node_modules/@babel/plugin-transform-new-target/lib/index.js +71 -0
  876. package/node_modules/@babel/plugin-transform-new-target/lib/index.js.map +1 -0
  877. package/node_modules/@babel/plugin-transform-new-target/package.json +36 -0
  878. package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/LICENSE +22 -0
  879. package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/README.md +19 -0
  880. package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js +48 -0
  881. package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js.map +1 -0
  882. package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/package.json +35 -0
  883. package/node_modules/@babel/plugin-transform-numeric-separator/LICENSE +22 -0
  884. package/node_modules/@babel/plugin-transform-numeric-separator/README.md +19 -0
  885. package/node_modules/@babel/plugin-transform-numeric-separator/lib/index.js +31 -0
  886. package/node_modules/@babel/plugin-transform-numeric-separator/lib/index.js.map +1 -0
  887. package/node_modules/@babel/plugin-transform-numeric-separator/package.json +37 -0
  888. package/node_modules/@babel/plugin-transform-object-rest-spread/LICENSE +22 -0
  889. package/node_modules/@babel/plugin-transform-object-rest-spread/README.md +19 -0
  890. package/node_modules/@babel/plugin-transform-object-rest-spread/lib/index.js +451 -0
  891. package/node_modules/@babel/plugin-transform-object-rest-spread/lib/index.js.map +1 -0
  892. package/node_modules/@babel/plugin-transform-object-rest-spread/package.json +39 -0
  893. package/node_modules/@babel/plugin-transform-object-super/LICENSE +22 -0
  894. package/node_modules/@babel/plugin-transform-object-super/README.md +19 -0
  895. package/node_modules/@babel/plugin-transform-object-super/lib/index.js +67 -0
  896. package/node_modules/@babel/plugin-transform-object-super/lib/index.js.map +1 -0
  897. package/node_modules/@babel/plugin-transform-object-super/package.json +35 -0
  898. package/node_modules/@babel/plugin-transform-optional-catch-binding/LICENSE +22 -0
  899. package/node_modules/@babel/plugin-transform-optional-catch-binding/README.md +19 -0
  900. package/node_modules/@babel/plugin-transform-optional-catch-binding/lib/index.js +25 -0
  901. package/node_modules/@babel/plugin-transform-optional-catch-binding/lib/index.js.map +1 -0
  902. package/node_modules/@babel/plugin-transform-optional-catch-binding/package.json +35 -0
  903. package/node_modules/@babel/plugin-transform-optional-chaining/LICENSE +22 -0
  904. package/node_modules/@babel/plugin-transform-optional-chaining/README.md +19 -0
  905. package/node_modules/@babel/plugin-transform-optional-chaining/lib/index.js +240 -0
  906. package/node_modules/@babel/plugin-transform-optional-chaining/lib/index.js.map +1 -0
  907. package/node_modules/@babel/plugin-transform-optional-chaining/package.json +38 -0
  908. package/node_modules/@babel/plugin-transform-parameters/LICENSE +22 -0
  909. package/node_modules/@babel/plugin-transform-parameters/README.md +19 -0
  910. package/node_modules/@babel/plugin-transform-parameters/lib/index.js +42 -0
  911. package/node_modules/@babel/plugin-transform-parameters/lib/index.js.map +1 -0
  912. package/node_modules/@babel/plugin-transform-parameters/lib/params.js +143 -0
  913. package/node_modules/@babel/plugin-transform-parameters/lib/params.js.map +1 -0
  914. package/node_modules/@babel/plugin-transform-parameters/lib/rest.js +284 -0
  915. package/node_modules/@babel/plugin-transform-parameters/lib/rest.js.map +1 -0
  916. package/node_modules/@babel/plugin-transform-parameters/lib/shadow-utils.js +64 -0
  917. package/node_modules/@babel/plugin-transform-parameters/lib/shadow-utils.js.map +1 -0
  918. package/node_modules/@babel/plugin-transform-parameters/package.json +34 -0
  919. package/node_modules/@babel/plugin-transform-private-methods/LICENSE +22 -0
  920. package/node_modules/@babel/plugin-transform-private-methods/README.md +19 -0
  921. package/node_modules/@babel/plugin-transform-private-methods/lib/index.js +22 -0
  922. package/node_modules/@babel/plugin-transform-private-methods/lib/index.js.map +1 -0
  923. package/node_modules/@babel/plugin-transform-private-methods/package.json +35 -0
  924. package/node_modules/@babel/plugin-transform-private-property-in-object/LICENSE +22 -0
  925. package/node_modules/@babel/plugin-transform-private-property-in-object/README.md +19 -0
  926. package/node_modules/@babel/plugin-transform-private-property-in-object/lib/index.js +126 -0
  927. package/node_modules/@babel/plugin-transform-private-property-in-object/lib/index.js.map +1 -0
  928. package/node_modules/@babel/plugin-transform-private-property-in-object/package.json +37 -0
  929. package/node_modules/@babel/plugin-transform-property-literals/LICENSE +22 -0
  930. package/node_modules/@babel/plugin-transform-property-literals/README.md +19 -0
  931. package/node_modules/@babel/plugin-transform-property-literals/lib/index.js +28 -0
  932. package/node_modules/@babel/plugin-transform-property-literals/lib/index.js.map +1 -0
  933. package/node_modules/@babel/plugin-transform-property-literals/package.json +34 -0
  934. package/node_modules/@babel/plugin-transform-regenerator/LICENSE +22 -0
  935. package/node_modules/@babel/plugin-transform-regenerator/README.md +19 -0
  936. package/node_modules/@babel/plugin-transform-regenerator/lib/index.js +43 -0
  937. package/node_modules/@babel/plugin-transform-regenerator/lib/index.js.map +1 -0
  938. package/node_modules/@babel/plugin-transform-regenerator/package.json +32 -0
  939. package/node_modules/@babel/plugin-transform-reserved-words/LICENSE +22 -0
  940. package/node_modules/@babel/plugin-transform-reserved-words/README.md +19 -0
  941. package/node_modules/@babel/plugin-transform-reserved-words/lib/index.js +23 -0
  942. package/node_modules/@babel/plugin-transform-reserved-words/lib/index.js.map +1 -0
  943. package/node_modules/@babel/plugin-transform-reserved-words/package.json +34 -0
  944. package/node_modules/@babel/plugin-transform-shorthand-properties/LICENSE +22 -0
  945. package/node_modules/@babel/plugin-transform-shorthand-properties/README.md +19 -0
  946. package/node_modules/@babel/plugin-transform-shorthand-properties/lib/index.js +50 -0
  947. package/node_modules/@babel/plugin-transform-shorthand-properties/lib/index.js.map +1 -0
  948. package/node_modules/@babel/plugin-transform-shorthand-properties/package.json +34 -0
  949. package/node_modules/@babel/plugin-transform-spread/LICENSE +22 -0
  950. package/node_modules/@babel/plugin-transform-spread/README.md +19 -0
  951. package/node_modules/@babel/plugin-transform-spread/lib/index.js +144 -0
  952. package/node_modules/@babel/plugin-transform-spread/lib/index.js.map +1 -0
  953. package/node_modules/@babel/plugin-transform-spread/package.json +35 -0
  954. package/node_modules/@babel/plugin-transform-sticky-regex/LICENSE +22 -0
  955. package/node_modules/@babel/plugin-transform-sticky-regex/README.md +19 -0
  956. package/node_modules/@babel/plugin-transform-sticky-regex/lib/index.js +25 -0
  957. package/node_modules/@babel/plugin-transform-sticky-regex/lib/index.js.map +1 -0
  958. package/node_modules/@babel/plugin-transform-sticky-regex/package.json +34 -0
  959. package/node_modules/@babel/plugin-transform-template-literals/LICENSE +22 -0
  960. package/node_modules/@babel/plugin-transform-template-literals/README.md +19 -0
  961. package/node_modules/@babel/plugin-transform-template-literals/lib/index.js +108 -0
  962. package/node_modules/@babel/plugin-transform-template-literals/lib/index.js.map +1 -0
  963. package/node_modules/@babel/plugin-transform-template-literals/package.json +34 -0
  964. package/node_modules/@babel/plugin-transform-typeof-symbol/LICENSE +22 -0
  965. package/node_modules/@babel/plugin-transform-typeof-symbol/README.md +19 -0
  966. package/node_modules/@babel/plugin-transform-typeof-symbol/lib/index.js +61 -0
  967. package/node_modules/@babel/plugin-transform-typeof-symbol/lib/index.js.map +1 -0
  968. package/node_modules/@babel/plugin-transform-typeof-symbol/package.json +37 -0
  969. package/node_modules/@babel/plugin-transform-typescript/LICENSE +22 -0
  970. package/node_modules/@babel/plugin-transform-typescript/README.md +19 -0
  971. package/node_modules/@babel/plugin-transform-typescript/lib/const-enum.js +58 -0
  972. package/node_modules/@babel/plugin-transform-typescript/lib/const-enum.js.map +1 -0
  973. package/node_modules/@babel/plugin-transform-typescript/lib/enum.js +302 -0
  974. package/node_modules/@babel/plugin-transform-typescript/lib/enum.js.map +1 -0
  975. package/node_modules/@babel/plugin-transform-typescript/lib/global-types.js +22 -0
  976. package/node_modules/@babel/plugin-transform-typescript/lib/global-types.js.map +1 -0
  977. package/node_modules/@babel/plugin-transform-typescript/lib/index.js +484 -0
  978. package/node_modules/@babel/plugin-transform-typescript/lib/index.js.map +1 -0
  979. package/node_modules/@babel/plugin-transform-typescript/lib/namespace.js +165 -0
  980. package/node_modules/@babel/plugin-transform-typescript/lib/namespace.js.map +1 -0
  981. package/node_modules/@babel/plugin-transform-typescript/package.json +40 -0
  982. package/node_modules/@babel/plugin-transform-unicode-escapes/LICENSE +22 -0
  983. package/node_modules/@babel/plugin-transform-unicode-escapes/README.md +19 -0
  984. package/node_modules/@babel/plugin-transform-unicode-escapes/lib/index.js +118 -0
  985. package/node_modules/@babel/plugin-transform-unicode-escapes/lib/index.js.map +1 -0
  986. package/node_modules/@babel/plugin-transform-unicode-escapes/package.json +34 -0
  987. package/node_modules/@babel/plugin-transform-unicode-property-regex/LICENSE +22 -0
  988. package/node_modules/@babel/plugin-transform-unicode-property-regex/README.md +19 -0
  989. package/node_modules/@babel/plugin-transform-unicode-property-regex/lib/index.js +26 -0
  990. package/node_modules/@babel/plugin-transform-unicode-property-regex/lib/index.js.map +1 -0
  991. package/node_modules/@babel/plugin-transform-unicode-property-regex/package.json +41 -0
  992. package/node_modules/@babel/plugin-transform-unicode-regex/LICENSE +22 -0
  993. package/node_modules/@babel/plugin-transform-unicode-regex/README.md +19 -0
  994. package/node_modules/@babel/plugin-transform-unicode-regex/lib/index.js +17 -0
  995. package/node_modules/@babel/plugin-transform-unicode-regex/lib/index.js.map +1 -0
  996. package/node_modules/@babel/plugin-transform-unicode-regex/package.json +35 -0
  997. package/node_modules/@babel/plugin-transform-unicode-sets-regex/LICENSE +22 -0
  998. package/node_modules/@babel/plugin-transform-unicode-sets-regex/README.md +19 -0
  999. package/node_modules/@babel/plugin-transform-unicode-sets-regex/lib/index.js +20 -0
  1000. package/node_modules/@babel/plugin-transform-unicode-sets-regex/lib/index.js.map +1 -0
  1001. package/node_modules/@babel/plugin-transform-unicode-sets-regex/package.json +49 -0
  1002. package/node_modules/@babel/preset-env/LICENSE +22 -0
  1003. package/node_modules/@babel/preset-env/README.md +19 -0
  1004. package/node_modules/@babel/preset-env/data/built-in-modules.js +3 -0
  1005. package/node_modules/@babel/preset-env/data/built-in-modules.json.js +3 -0
  1006. package/node_modules/@babel/preset-env/data/built-ins.js +4 -0
  1007. package/node_modules/@babel/preset-env/data/built-ins.json.js +4 -0
  1008. package/node_modules/@babel/preset-env/data/core-js-compat.js +1 -0
  1009. package/node_modules/@babel/preset-env/data/corejs2-built-ins.js +3 -0
  1010. package/node_modules/@babel/preset-env/data/corejs2-built-ins.json.js +3 -0
  1011. package/node_modules/@babel/preset-env/data/package.json +1 -0
  1012. package/node_modules/@babel/preset-env/data/plugins.js +3 -0
  1013. package/node_modules/@babel/preset-env/data/plugins.json.js +3 -0
  1014. package/node_modules/@babel/preset-env/data/shipped-proposals.js +2 -0
  1015. package/node_modules/@babel/preset-env/data/unreleased-labels.js +3 -0
  1016. package/node_modules/@babel/preset-env/lib/available-plugins.js +159 -0
  1017. package/node_modules/@babel/preset-env/lib/available-plugins.js.map +1 -0
  1018. package/node_modules/@babel/preset-env/lib/debug.js +37 -0
  1019. package/node_modules/@babel/preset-env/lib/debug.js.map +1 -0
  1020. package/node_modules/@babel/preset-env/lib/filter-items.js +31 -0
  1021. package/node_modules/@babel/preset-env/lib/filter-items.js.map +1 -0
  1022. package/node_modules/@babel/preset-env/lib/index.js +344 -0
  1023. package/node_modules/@babel/preset-env/lib/index.js.map +1 -0
  1024. package/node_modules/@babel/preset-env/lib/module-transformations.js +15 -0
  1025. package/node_modules/@babel/preset-env/lib/module-transformations.js.map +1 -0
  1026. package/node_modules/@babel/preset-env/lib/normalize-options.js +153 -0
  1027. package/node_modules/@babel/preset-env/lib/normalize-options.js.map +1 -0
  1028. package/node_modules/@babel/preset-env/lib/options.js +43 -0
  1029. package/node_modules/@babel/preset-env/lib/options.js.map +1 -0
  1030. package/node_modules/@babel/preset-env/lib/plugins-compat-data.js +26 -0
  1031. package/node_modules/@babel/preset-env/lib/plugins-compat-data.js.map +1 -0
  1032. package/node_modules/@babel/preset-env/lib/polyfills/babel-7-plugins.cjs +18 -0
  1033. package/node_modules/@babel/preset-env/lib/polyfills/babel-7-plugins.cjs.map +1 -0
  1034. package/node_modules/@babel/preset-env/lib/polyfills/babel-polyfill.cjs +69 -0
  1035. package/node_modules/@babel/preset-env/lib/polyfills/babel-polyfill.cjs.map +1 -0
  1036. package/node_modules/@babel/preset-env/lib/polyfills/regenerator.cjs +44 -0
  1037. package/node_modules/@babel/preset-env/lib/polyfills/regenerator.cjs.map +1 -0
  1038. package/node_modules/@babel/preset-env/lib/polyfills/utils.cjs +22 -0
  1039. package/node_modules/@babel/preset-env/lib/polyfills/utils.cjs.map +1 -0
  1040. package/node_modules/@babel/preset-env/lib/shipped-proposals.js +29 -0
  1041. package/node_modules/@babel/preset-env/lib/shipped-proposals.js.map +1 -0
  1042. package/node_modules/@babel/preset-env/lib/targets-parser.js +20 -0
  1043. package/node_modules/@babel/preset-env/lib/targets-parser.js.map +1 -0
  1044. package/node_modules/@babel/preset-env/package.json +113 -0
  1045. package/node_modules/@babel/preset-modules/LICENSE +21 -0
  1046. package/node_modules/@babel/preset-modules/README.md +171 -0
  1047. package/node_modules/@babel/preset-modules/lib/index.js +27 -0
  1048. package/node_modules/@babel/preset-modules/lib/plugins/transform-async-arrows-in-class/index.js +45 -0
  1049. package/node_modules/@babel/preset-modules/lib/plugins/transform-edge-default-parameters/index.js +36 -0
  1050. package/node_modules/@babel/preset-modules/lib/plugins/transform-edge-function-name/index.js +42 -0
  1051. package/node_modules/@babel/preset-modules/lib/plugins/transform-jsx-spread/index.js +115 -0
  1052. package/node_modules/@babel/preset-modules/lib/plugins/transform-safari-block-shadowing/index.js +47 -0
  1053. package/node_modules/@babel/preset-modules/lib/plugins/transform-safari-for-shadowing/index.js +42 -0
  1054. package/node_modules/@babel/preset-modules/lib/plugins/transform-tagged-template-caching/index.js +75 -0
  1055. package/node_modules/@babel/preset-modules/package.json +104 -0
  1056. package/node_modules/@babel/preset-typescript/LICENSE +22 -0
  1057. package/node_modules/@babel/preset-typescript/README.md +19 -0
  1058. package/node_modules/@babel/preset-typescript/lib/index.js +146 -0
  1059. package/node_modules/@babel/preset-typescript/lib/index.js.map +1 -0
  1060. package/node_modules/@babel/preset-typescript/package.json +40 -0
  1061. package/node_modules/@babel/regjsgen/LICENSE-MIT.txt +22 -0
  1062. package/node_modules/@babel/regjsgen/README.md +44 -0
  1063. package/node_modules/@babel/regjsgen/package.json +43 -0
  1064. package/node_modules/@babel/regjsgen/regjsgen.js +425 -0
  1065. package/node_modules/@babel/runtime/LICENSE +22 -0
  1066. package/node_modules/@babel/runtime/README.md +19 -0
  1067. package/node_modules/@babel/runtime/helpers/AsyncGenerator.js +64 -0
  1068. package/node_modules/@babel/runtime/helpers/AwaitValue.js +4 -0
  1069. package/node_modules/@babel/runtime/helpers/OverloadYield.js +4 -0
  1070. package/node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js +24 -0
  1071. package/node_modules/@babel/runtime/helpers/applyDecs.js +236 -0
  1072. package/node_modules/@babel/runtime/helpers/applyDecs2203.js +184 -0
  1073. package/node_modules/@babel/runtime/helpers/applyDecs2203R.js +191 -0
  1074. package/node_modules/@babel/runtime/helpers/applyDecs2301.js +222 -0
  1075. package/node_modules/@babel/runtime/helpers/applyDecs2305.js +133 -0
  1076. package/node_modules/@babel/runtime/helpers/arrayLikeToArray.js +6 -0
  1077. package/node_modules/@babel/runtime/helpers/arrayWithHoles.js +4 -0
  1078. package/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js +5 -0
  1079. package/node_modules/@babel/runtime/helpers/assertThisInitialized.js +7 -0
  1080. package/node_modules/@babel/runtime/helpers/asyncGeneratorDelegate.js +24 -0
  1081. package/node_modules/@babel/runtime/helpers/asyncIterator.js +45 -0
  1082. package/node_modules/@babel/runtime/helpers/asyncToGenerator.js +31 -0
  1083. package/node_modules/@babel/runtime/helpers/awaitAsyncGenerator.js +5 -0
  1084. package/node_modules/@babel/runtime/helpers/callSuper.js +7 -0
  1085. package/node_modules/@babel/runtime/helpers/checkInRHS.js +6 -0
  1086. package/node_modules/@babel/runtime/helpers/checkPrivateRedeclaration.js +6 -0
  1087. package/node_modules/@babel/runtime/helpers/classApplyDescriptorDestructureSet.js +18 -0
  1088. package/node_modules/@babel/runtime/helpers/classApplyDescriptorGet.js +7 -0
  1089. package/node_modules/@babel/runtime/helpers/classApplyDescriptorSet.js +11 -0
  1090. package/node_modules/@babel/runtime/helpers/classCallCheck.js +6 -0
  1091. package/node_modules/@babel/runtime/helpers/classCheckPrivateStaticAccess.js +6 -0
  1092. package/node_modules/@babel/runtime/helpers/classCheckPrivateStaticFieldDescriptor.js +6 -0
  1093. package/node_modules/@babel/runtime/helpers/classExtractFieldDescriptor.js +7 -0
  1094. package/node_modules/@babel/runtime/helpers/classNameTDZError.js +4 -0
  1095. package/node_modules/@babel/runtime/helpers/classPrivateFieldDestructureSet.js +7 -0
  1096. package/node_modules/@babel/runtime/helpers/classPrivateFieldGet.js +7 -0
  1097. package/node_modules/@babel/runtime/helpers/classPrivateFieldInitSpec.js +6 -0
  1098. package/node_modules/@babel/runtime/helpers/classPrivateFieldLooseBase.js +7 -0
  1099. package/node_modules/@babel/runtime/helpers/classPrivateFieldLooseKey.js +5 -0
  1100. package/node_modules/@babel/runtime/helpers/classPrivateFieldSet.js +8 -0
  1101. package/node_modules/@babel/runtime/helpers/classPrivateMethodGet.js +7 -0
  1102. package/node_modules/@babel/runtime/helpers/classPrivateMethodInitSpec.js +6 -0
  1103. package/node_modules/@babel/runtime/helpers/classPrivateMethodSet.js +4 -0
  1104. package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldDestructureSet.js +9 -0
  1105. package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecGet.js +9 -0
  1106. package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecSet.js +10 -0
  1107. package/node_modules/@babel/runtime/helpers/classStaticPrivateMethodGet.js +6 -0
  1108. package/node_modules/@babel/runtime/helpers/classStaticPrivateMethodSet.js +4 -0
  1109. package/node_modules/@babel/runtime/helpers/construct.js +10 -0
  1110. package/node_modules/@babel/runtime/helpers/createClass.js +19 -0
  1111. package/node_modules/@babel/runtime/helpers/createForOfIteratorHelper.js +53 -0
  1112. package/node_modules/@babel/runtime/helpers/createForOfIteratorHelperLoose.js +20 -0
  1113. package/node_modules/@babel/runtime/helpers/createSuper.js +18 -0
  1114. package/node_modules/@babel/runtime/helpers/decorate.js +343 -0
  1115. package/node_modules/@babel/runtime/helpers/defaults.js +12 -0
  1116. package/node_modules/@babel/runtime/helpers/defineAccessor.js +8 -0
  1117. package/node_modules/@babel/runtime/helpers/defineEnumerableProperties.js +20 -0
  1118. package/node_modules/@babel/runtime/helpers/defineProperty.js +16 -0
  1119. package/node_modules/@babel/runtime/helpers/dispose.js +28 -0
  1120. package/node_modules/@babel/runtime/helpers/esm/AsyncGenerator.js +63 -0
  1121. package/node_modules/@babel/runtime/helpers/esm/AwaitValue.js +3 -0
  1122. package/node_modules/@babel/runtime/helpers/esm/OverloadYield.js +3 -0
  1123. package/node_modules/@babel/runtime/helpers/esm/applyDecoratedDescriptor.js +23 -0
  1124. package/node_modules/@babel/runtime/helpers/esm/applyDecs.js +235 -0
  1125. package/node_modules/@babel/runtime/helpers/esm/applyDecs2203.js +183 -0
  1126. package/node_modules/@babel/runtime/helpers/esm/applyDecs2203R.js +190 -0
  1127. package/node_modules/@babel/runtime/helpers/esm/applyDecs2301.js +221 -0
  1128. package/node_modules/@babel/runtime/helpers/esm/applyDecs2305.js +132 -0
  1129. package/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js +5 -0
  1130. package/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js +3 -0
  1131. package/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js +4 -0
  1132. package/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +6 -0
  1133. package/node_modules/@babel/runtime/helpers/esm/asyncGeneratorDelegate.js +23 -0
  1134. package/node_modules/@babel/runtime/helpers/esm/asyncIterator.js +44 -0
  1135. package/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js +30 -0
  1136. package/node_modules/@babel/runtime/helpers/esm/awaitAsyncGenerator.js +4 -0
  1137. package/node_modules/@babel/runtime/helpers/esm/callSuper.js +6 -0
  1138. package/node_modules/@babel/runtime/helpers/esm/checkInRHS.js +5 -0
  1139. package/node_modules/@babel/runtime/helpers/esm/checkPrivateRedeclaration.js +5 -0
  1140. package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorDestructureSet.js +17 -0
  1141. package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorGet.js +6 -0
  1142. package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorSet.js +10 -0
  1143. package/node_modules/@babel/runtime/helpers/esm/classCallCheck.js +5 -0
  1144. package/node_modules/@babel/runtime/helpers/esm/classCheckPrivateStaticAccess.js +5 -0
  1145. package/node_modules/@babel/runtime/helpers/esm/classCheckPrivateStaticFieldDescriptor.js +5 -0
  1146. package/node_modules/@babel/runtime/helpers/esm/classExtractFieldDescriptor.js +6 -0
  1147. package/node_modules/@babel/runtime/helpers/esm/classNameTDZError.js +3 -0
  1148. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldDestructureSet.js +6 -0
  1149. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldGet.js +6 -0
  1150. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldInitSpec.js +5 -0
  1151. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseBase.js +6 -0
  1152. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseKey.js +4 -0
  1153. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldSet.js +7 -0
  1154. package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodGet.js +6 -0
  1155. package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodInitSpec.js +5 -0
  1156. package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodSet.js +3 -0
  1157. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldDestructureSet.js +8 -0
  1158. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecGet.js +8 -0
  1159. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecSet.js +9 -0
  1160. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodGet.js +5 -0
  1161. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodSet.js +3 -0
  1162. package/node_modules/@babel/runtime/helpers/esm/construct.js +9 -0
  1163. package/node_modules/@babel/runtime/helpers/esm/createClass.js +18 -0
  1164. package/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelper.js +52 -0
  1165. package/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelperLoose.js +19 -0
  1166. package/node_modules/@babel/runtime/helpers/esm/createSuper.js +17 -0
  1167. package/node_modules/@babel/runtime/helpers/esm/decorate.js +342 -0
  1168. package/node_modules/@babel/runtime/helpers/esm/defaults.js +11 -0
  1169. package/node_modules/@babel/runtime/helpers/esm/defineAccessor.js +7 -0
  1170. package/node_modules/@babel/runtime/helpers/esm/defineEnumerableProperties.js +19 -0
  1171. package/node_modules/@babel/runtime/helpers/esm/defineProperty.js +15 -0
  1172. package/node_modules/@babel/runtime/helpers/esm/dispose.js +27 -0
  1173. package/node_modules/@babel/runtime/helpers/esm/extends.js +14 -0
  1174. package/node_modules/@babel/runtime/helpers/esm/get.js +17 -0
  1175. package/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js +6 -0
  1176. package/node_modules/@babel/runtime/helpers/esm/identity.js +3 -0
  1177. package/node_modules/@babel/runtime/helpers/esm/importDeferProxy.js +26 -0
  1178. package/node_modules/@babel/runtime/helpers/esm/inherits.js +17 -0
  1179. package/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js +6 -0
  1180. package/node_modules/@babel/runtime/helpers/esm/initializerDefineProperty.js +9 -0
  1181. package/node_modules/@babel/runtime/helpers/esm/initializerWarningHelper.js +3 -0
  1182. package/node_modules/@babel/runtime/helpers/esm/instanceof.js +7 -0
  1183. package/node_modules/@babel/runtime/helpers/esm/interopRequireDefault.js +5 -0
  1184. package/node_modules/@babel/runtime/helpers/esm/interopRequireWildcard.js +26 -0
  1185. package/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js +7 -0
  1186. package/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js +8 -0
  1187. package/node_modules/@babel/runtime/helpers/esm/iterableToArray.js +3 -0
  1188. package/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +27 -0
  1189. package/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimitLoose.js +9 -0
  1190. package/node_modules/@babel/runtime/helpers/esm/jsx.js +21 -0
  1191. package/node_modules/@babel/runtime/helpers/esm/maybeArrayLike.js +8 -0
  1192. package/node_modules/@babel/runtime/helpers/esm/newArrowCheck.js +5 -0
  1193. package/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js +3 -0
  1194. package/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js +3 -0
  1195. package/node_modules/@babel/runtime/helpers/esm/nullishReceiverError.js +3 -0
  1196. package/node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.js +3 -0
  1197. package/node_modules/@babel/runtime/helpers/esm/objectSpread.js +16 -0
  1198. package/node_modules/@babel/runtime/helpers/esm/objectSpread2.js +22 -0
  1199. package/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js +16 -0
  1200. package/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +12 -0
  1201. package/node_modules/@babel/runtime/helpers/esm/package.json +3 -0
  1202. package/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js +10 -0
  1203. package/node_modules/@babel/runtime/helpers/esm/readOnlyError.js +3 -0
  1204. package/node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js +303 -0
  1205. package/node_modules/@babel/runtime/helpers/esm/set.js +40 -0
  1206. package/node_modules/@babel/runtime/helpers/esm/setFunctionName.js +11 -0
  1207. package/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +7 -0
  1208. package/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js +7 -0
  1209. package/node_modules/@babel/runtime/helpers/esm/slicedToArray.js +7 -0
  1210. package/node_modules/@babel/runtime/helpers/esm/slicedToArrayLoose.js +7 -0
  1211. package/node_modules/@babel/runtime/helpers/esm/superPropBase.js +8 -0
  1212. package/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js +10 -0
  1213. package/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteralLoose.js +7 -0
  1214. package/node_modules/@babel/runtime/helpers/esm/tdz.js +3 -0
  1215. package/node_modules/@babel/runtime/helpers/esm/temporalRef.js +5 -0
  1216. package/node_modules/@babel/runtime/helpers/esm/temporalUndefined.js +1 -0
  1217. package/node_modules/@babel/runtime/helpers/esm/toArray.js +7 -0
  1218. package/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js +7 -0
  1219. package/node_modules/@babel/runtime/helpers/esm/toPrimitive.js +11 -0
  1220. package/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js +6 -0
  1221. package/node_modules/@babel/runtime/helpers/esm/typeof.js +9 -0
  1222. package/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +9 -0
  1223. package/node_modules/@babel/runtime/helpers/esm/using.js +11 -0
  1224. package/node_modules/@babel/runtime/helpers/esm/usingCtx.js +43 -0
  1225. package/node_modules/@babel/runtime/helpers/esm/wrapAsyncGenerator.js +6 -0
  1226. package/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js +30 -0
  1227. package/node_modules/@babel/runtime/helpers/esm/wrapRegExp.js +50 -0
  1228. package/node_modules/@babel/runtime/helpers/esm/writeOnlyError.js +3 -0
  1229. package/node_modules/@babel/runtime/helpers/extends.js +15 -0
  1230. package/node_modules/@babel/runtime/helpers/get.js +18 -0
  1231. package/node_modules/@babel/runtime/helpers/getPrototypeOf.js +7 -0
  1232. package/node_modules/@babel/runtime/helpers/identity.js +4 -0
  1233. package/node_modules/@babel/runtime/helpers/importDeferProxy.js +27 -0
  1234. package/node_modules/@babel/runtime/helpers/inherits.js +18 -0
  1235. package/node_modules/@babel/runtime/helpers/inheritsLoose.js +7 -0
  1236. package/node_modules/@babel/runtime/helpers/initializerDefineProperty.js +10 -0
  1237. package/node_modules/@babel/runtime/helpers/initializerWarningHelper.js +4 -0
  1238. package/node_modules/@babel/runtime/helpers/instanceof.js +8 -0
  1239. package/node_modules/@babel/runtime/helpers/interopRequireDefault.js +6 -0
  1240. package/node_modules/@babel/runtime/helpers/interopRequireWildcard.js +27 -0
  1241. package/node_modules/@babel/runtime/helpers/isNativeFunction.js +8 -0
  1242. package/node_modules/@babel/runtime/helpers/isNativeReflectConstruct.js +9 -0
  1243. package/node_modules/@babel/runtime/helpers/iterableToArray.js +4 -0
  1244. package/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js +28 -0
  1245. package/node_modules/@babel/runtime/helpers/iterableToArrayLimitLoose.js +10 -0
  1246. package/node_modules/@babel/runtime/helpers/jsx.js +22 -0
  1247. package/node_modules/@babel/runtime/helpers/maybeArrayLike.js +9 -0
  1248. package/node_modules/@babel/runtime/helpers/newArrowCheck.js +6 -0
  1249. package/node_modules/@babel/runtime/helpers/nonIterableRest.js +4 -0
  1250. package/node_modules/@babel/runtime/helpers/nonIterableSpread.js +4 -0
  1251. package/node_modules/@babel/runtime/helpers/nullishReceiverError.js +4 -0
  1252. package/node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js +4 -0
  1253. package/node_modules/@babel/runtime/helpers/objectSpread.js +17 -0
  1254. package/node_modules/@babel/runtime/helpers/objectSpread2.js +23 -0
  1255. package/node_modules/@babel/runtime/helpers/objectWithoutProperties.js +17 -0
  1256. package/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js +13 -0
  1257. package/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js +11 -0
  1258. package/node_modules/@babel/runtime/helpers/readOnlyError.js +4 -0
  1259. package/node_modules/@babel/runtime/helpers/regeneratorRuntime.js +304 -0
  1260. package/node_modules/@babel/runtime/helpers/set.js +41 -0
  1261. package/node_modules/@babel/runtime/helpers/setFunctionName.js +12 -0
  1262. package/node_modules/@babel/runtime/helpers/setPrototypeOf.js +8 -0
  1263. package/node_modules/@babel/runtime/helpers/skipFirstGeneratorNext.js +8 -0
  1264. package/node_modules/@babel/runtime/helpers/slicedToArray.js +8 -0
  1265. package/node_modules/@babel/runtime/helpers/slicedToArrayLoose.js +8 -0
  1266. package/node_modules/@babel/runtime/helpers/superPropBase.js +9 -0
  1267. package/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js +11 -0
  1268. package/node_modules/@babel/runtime/helpers/taggedTemplateLiteralLoose.js +8 -0
  1269. package/node_modules/@babel/runtime/helpers/tdz.js +4 -0
  1270. package/node_modules/@babel/runtime/helpers/temporalRef.js +6 -0
  1271. package/node_modules/@babel/runtime/helpers/temporalUndefined.js +2 -0
  1272. package/node_modules/@babel/runtime/helpers/toArray.js +8 -0
  1273. package/node_modules/@babel/runtime/helpers/toConsumableArray.js +8 -0
  1274. package/node_modules/@babel/runtime/helpers/toPrimitive.js +12 -0
  1275. package/node_modules/@babel/runtime/helpers/toPropertyKey.js +7 -0
  1276. package/node_modules/@babel/runtime/helpers/typeof.js +10 -0
  1277. package/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js +10 -0
  1278. package/node_modules/@babel/runtime/helpers/using.js +12 -0
  1279. package/node_modules/@babel/runtime/helpers/usingCtx.js +44 -0
  1280. package/node_modules/@babel/runtime/helpers/wrapAsyncGenerator.js +7 -0
  1281. package/node_modules/@babel/runtime/helpers/wrapNativeSuper.js +31 -0
  1282. package/node_modules/@babel/runtime/helpers/wrapRegExp.js +51 -0
  1283. package/node_modules/@babel/runtime/helpers/writeOnlyError.js +4 -0
  1284. package/node_modules/@babel/runtime/package.json +1002 -0
  1285. package/node_modules/@babel/runtime/regenerator/index.js +15 -0
  1286. package/node_modules/@babel/template/LICENSE +22 -0
  1287. package/node_modules/@babel/template/README.md +19 -0
  1288. package/node_modules/@babel/template/lib/builder.js +69 -0
  1289. package/node_modules/@babel/template/lib/builder.js.map +1 -0
  1290. package/node_modules/@babel/template/lib/formatters.js +61 -0
  1291. package/node_modules/@babel/template/lib/formatters.js.map +1 -0
  1292. package/node_modules/@babel/template/lib/index.js +23 -0
  1293. package/node_modules/@babel/template/lib/index.js.map +1 -0
  1294. package/node_modules/@babel/template/lib/literal.js +69 -0
  1295. package/node_modules/@babel/template/lib/literal.js.map +1 -0
  1296. package/node_modules/@babel/template/lib/options.js +73 -0
  1297. package/node_modules/@babel/template/lib/options.js.map +1 -0
  1298. package/node_modules/@babel/template/lib/parse.js +160 -0
  1299. package/node_modules/@babel/template/lib/parse.js.map +1 -0
  1300. package/node_modules/@babel/template/lib/populate.js +122 -0
  1301. package/node_modules/@babel/template/lib/populate.js.map +1 -0
  1302. package/node_modules/@babel/template/lib/string.js +20 -0
  1303. package/node_modules/@babel/template/lib/string.js.map +1 -0
  1304. package/node_modules/@babel/template/package.json +27 -0
  1305. package/node_modules/@babel/traverse/LICENSE +22 -0
  1306. package/node_modules/@babel/traverse/README.md +19 -0
  1307. package/node_modules/@babel/traverse/lib/cache.js +44 -0
  1308. package/node_modules/@babel/traverse/lib/cache.js.map +1 -0
  1309. package/node_modules/@babel/traverse/lib/context.js +115 -0
  1310. package/node_modules/@babel/traverse/lib/context.js.map +1 -0
  1311. package/node_modules/@babel/traverse/lib/hub.js +19 -0
  1312. package/node_modules/@babel/traverse/lib/hub.js.map +1 -0
  1313. package/node_modules/@babel/traverse/lib/index.js +94 -0
  1314. package/node_modules/@babel/traverse/lib/index.js.map +1 -0
  1315. package/node_modules/@babel/traverse/lib/path/ancestry.js +141 -0
  1316. package/node_modules/@babel/traverse/lib/path/ancestry.js.map +1 -0
  1317. package/node_modules/@babel/traverse/lib/path/comments.js +52 -0
  1318. package/node_modules/@babel/traverse/lib/path/comments.js.map +1 -0
  1319. package/node_modules/@babel/traverse/lib/path/context.js +222 -0
  1320. package/node_modules/@babel/traverse/lib/path/context.js.map +1 -0
  1321. package/node_modules/@babel/traverse/lib/path/conversion.js +468 -0
  1322. package/node_modules/@babel/traverse/lib/path/conversion.js.map +1 -0
  1323. package/node_modules/@babel/traverse/lib/path/evaluation.js +347 -0
  1324. package/node_modules/@babel/traverse/lib/path/evaluation.js.map +1 -0
  1325. package/node_modules/@babel/traverse/lib/path/family.js +336 -0
  1326. package/node_modules/@babel/traverse/lib/path/family.js.map +1 -0
  1327. package/node_modules/@babel/traverse/lib/path/index.js +189 -0
  1328. package/node_modules/@babel/traverse/lib/path/index.js.map +1 -0
  1329. package/node_modules/@babel/traverse/lib/path/inference/index.js +149 -0
  1330. package/node_modules/@babel/traverse/lib/path/inference/index.js.map +1 -0
  1331. package/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +151 -0
  1332. package/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js.map +1 -0
  1333. package/node_modules/@babel/traverse/lib/path/inference/inferers.js +207 -0
  1334. package/node_modules/@babel/traverse/lib/path/inference/inferers.js.map +1 -0
  1335. package/node_modules/@babel/traverse/lib/path/inference/util.js +30 -0
  1336. package/node_modules/@babel/traverse/lib/path/inference/util.js.map +1 -0
  1337. package/node_modules/@babel/traverse/lib/path/introspection.js +384 -0
  1338. package/node_modules/@babel/traverse/lib/path/introspection.js.map +1 -0
  1339. package/node_modules/@babel/traverse/lib/path/lib/hoister.js +171 -0
  1340. package/node_modules/@babel/traverse/lib/path/lib/hoister.js.map +1 -0
  1341. package/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js +37 -0
  1342. package/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js.map +1 -0
  1343. package/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js +161 -0
  1344. package/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js.map +1 -0
  1345. package/node_modules/@babel/traverse/lib/path/lib/virtual-types.js +26 -0
  1346. package/node_modules/@babel/traverse/lib/path/lib/virtual-types.js.map +1 -0
  1347. package/node_modules/@babel/traverse/lib/path/modification.js +225 -0
  1348. package/node_modules/@babel/traverse/lib/path/modification.js.map +1 -0
  1349. package/node_modules/@babel/traverse/lib/path/removal.js +66 -0
  1350. package/node_modules/@babel/traverse/lib/path/removal.js.map +1 -0
  1351. package/node_modules/@babel/traverse/lib/path/replacement.js +264 -0
  1352. package/node_modules/@babel/traverse/lib/path/replacement.js.map +1 -0
  1353. package/node_modules/@babel/traverse/lib/scope/binding.js +83 -0
  1354. package/node_modules/@babel/traverse/lib/scope/binding.js.map +1 -0
  1355. package/node_modules/@babel/traverse/lib/scope/index.js +888 -0
  1356. package/node_modules/@babel/traverse/lib/scope/index.js.map +1 -0
  1357. package/node_modules/@babel/traverse/lib/scope/lib/renamer.js +113 -0
  1358. package/node_modules/@babel/traverse/lib/scope/lib/renamer.js.map +1 -0
  1359. package/node_modules/@babel/traverse/lib/traverse-node.js +29 -0
  1360. package/node_modules/@babel/traverse/lib/traverse-node.js.map +1 -0
  1361. package/node_modules/@babel/traverse/lib/types.js +3 -0
  1362. package/node_modules/@babel/traverse/lib/types.js.map +1 -0
  1363. package/node_modules/@babel/traverse/lib/visitors.js +221 -0
  1364. package/node_modules/@babel/traverse/lib/visitors.js.map +1 -0
  1365. package/node_modules/@babel/traverse/package.json +38 -0
  1366. package/node_modules/@babel/types/LICENSE +22 -0
  1367. package/node_modules/@babel/types/README.md +19 -0
  1368. package/node_modules/@babel/types/lib/asserts/assertNode.js +16 -0
  1369. package/node_modules/@babel/types/lib/asserts/assertNode.js.map +1 -0
  1370. package/node_modules/@babel/types/lib/asserts/generated/index.js +1235 -0
  1371. package/node_modules/@babel/types/lib/asserts/generated/index.js.map +1 -0
  1372. package/node_modules/@babel/types/lib/ast-types/generated/index.js +3 -0
  1373. package/node_modules/@babel/types/lib/ast-types/generated/index.js.map +1 -0
  1374. package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +18 -0
  1375. package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +1 -0
  1376. package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +31 -0
  1377. package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +1 -0
  1378. package/node_modules/@babel/types/lib/builders/generated/index.js +1991 -0
  1379. package/node_modules/@babel/types/lib/builders/generated/index.js.map +1 -0
  1380. package/node_modules/@babel/types/lib/builders/generated/uppercase.js +1532 -0
  1381. package/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +1 -0
  1382. package/node_modules/@babel/types/lib/builders/productions.js +12 -0
  1383. package/node_modules/@babel/types/lib/builders/productions.js.map +1 -0
  1384. package/node_modules/@babel/types/lib/builders/react/buildChildren.js +24 -0
  1385. package/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +1 -0
  1386. package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +22 -0
  1387. package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +1 -0
  1388. package/node_modules/@babel/types/lib/builders/validateNode.js +17 -0
  1389. package/node_modules/@babel/types/lib/builders/validateNode.js.map +1 -0
  1390. package/node_modules/@babel/types/lib/clone/clone.js +12 -0
  1391. package/node_modules/@babel/types/lib/clone/clone.js.map +1 -0
  1392. package/node_modules/@babel/types/lib/clone/cloneDeep.js +12 -0
  1393. package/node_modules/@babel/types/lib/clone/cloneDeep.js.map +1 -0
  1394. package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +12 -0
  1395. package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +1 -0
  1396. package/node_modules/@babel/types/lib/clone/cloneNode.js +100 -0
  1397. package/node_modules/@babel/types/lib/clone/cloneNode.js.map +1 -0
  1398. package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +12 -0
  1399. package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +1 -0
  1400. package/node_modules/@babel/types/lib/comments/addComment.js +15 -0
  1401. package/node_modules/@babel/types/lib/comments/addComment.js.map +1 -0
  1402. package/node_modules/@babel/types/lib/comments/addComments.js +22 -0
  1403. package/node_modules/@babel/types/lib/comments/addComments.js.map +1 -0
  1404. package/node_modules/@babel/types/lib/comments/inheritInnerComments.js +12 -0
  1405. package/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +1 -0
  1406. package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +12 -0
  1407. package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +1 -0
  1408. package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +12 -0
  1409. package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +1 -0
  1410. package/node_modules/@babel/types/lib/comments/inheritsComments.js +17 -0
  1411. package/node_modules/@babel/types/lib/comments/inheritsComments.js.map +1 -0
  1412. package/node_modules/@babel/types/lib/comments/removeComments.js +15 -0
  1413. package/node_modules/@babel/types/lib/comments/removeComments.js.map +1 -0
  1414. package/node_modules/@babel/types/lib/constants/generated/index.js +59 -0
  1415. package/node_modules/@babel/types/lib/constants/generated/index.js.map +1 -0
  1416. package/node_modules/@babel/types/lib/constants/index.js +31 -0
  1417. package/node_modules/@babel/types/lib/constants/index.js.map +1 -0
  1418. package/node_modules/@babel/types/lib/converters/ensureBlock.js +14 -0
  1419. package/node_modules/@babel/types/lib/converters/ensureBlock.js.map +1 -0
  1420. package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +65 -0
  1421. package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +1 -0
  1422. package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +14 -0
  1423. package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +1 -0
  1424. package/node_modules/@babel/types/lib/converters/toBlock.js +29 -0
  1425. package/node_modules/@babel/types/lib/converters/toBlock.js.map +1 -0
  1426. package/node_modules/@babel/types/lib/converters/toComputedKey.js +14 -0
  1427. package/node_modules/@babel/types/lib/converters/toComputedKey.js.map +1 -0
  1428. package/node_modules/@babel/types/lib/converters/toExpression.js +27 -0
  1429. package/node_modules/@babel/types/lib/converters/toExpression.js.map +1 -0
  1430. package/node_modules/@babel/types/lib/converters/toIdentifier.js +25 -0
  1431. package/node_modules/@babel/types/lib/converters/toIdentifier.js.map +1 -0
  1432. package/node_modules/@babel/types/lib/converters/toKeyAlias.js +38 -0
  1433. package/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +1 -0
  1434. package/node_modules/@babel/types/lib/converters/toSequenceExpression.js +20 -0
  1435. package/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +1 -0
  1436. package/node_modules/@babel/types/lib/converters/toStatement.js +39 -0
  1437. package/node_modules/@babel/types/lib/converters/toStatement.js.map +1 -0
  1438. package/node_modules/@babel/types/lib/converters/valueToNode.js +76 -0
  1439. package/node_modules/@babel/types/lib/converters/valueToNode.js.map +1 -0
  1440. package/node_modules/@babel/types/lib/definitions/core.js +1689 -0
  1441. package/node_modules/@babel/types/lib/definitions/core.js.map +1 -0
  1442. package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +11 -0
  1443. package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +1 -0
  1444. package/node_modules/@babel/types/lib/definitions/experimental.js +134 -0
  1445. package/node_modules/@babel/types/lib/definitions/experimental.js.map +1 -0
  1446. package/node_modules/@babel/types/lib/definitions/flow.js +488 -0
  1447. package/node_modules/@babel/types/lib/definitions/flow.js.map +1 -0
  1448. package/node_modules/@babel/types/lib/definitions/index.js +96 -0
  1449. package/node_modules/@babel/types/lib/definitions/index.js.map +1 -0
  1450. package/node_modules/@babel/types/lib/definitions/jsx.js +158 -0
  1451. package/node_modules/@babel/types/lib/definitions/jsx.js.map +1 -0
  1452. package/node_modules/@babel/types/lib/definitions/misc.js +32 -0
  1453. package/node_modules/@babel/types/lib/definitions/misc.js.map +1 -0
  1454. package/node_modules/@babel/types/lib/definitions/placeholders.js +27 -0
  1455. package/node_modules/@babel/types/lib/definitions/placeholders.js.map +1 -0
  1456. package/node_modules/@babel/types/lib/definitions/typescript.js +489 -0
  1457. package/node_modules/@babel/types/lib/definitions/typescript.js.map +1 -0
  1458. package/node_modules/@babel/types/lib/definitions/utils.js +273 -0
  1459. package/node_modules/@babel/types/lib/definitions/utils.js.map +1 -0
  1460. package/node_modules/@babel/types/lib/index-legacy.d.ts +2757 -0
  1461. package/node_modules/@babel/types/lib/index.d.ts +3260 -0
  1462. package/node_modules/@babel/types/lib/index.js +576 -0
  1463. package/node_modules/@babel/types/lib/index.js.flow +2611 -0
  1464. package/node_modules/@babel/types/lib/index.js.map +1 -0
  1465. package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +15 -0
  1466. package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +1 -0
  1467. package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +65 -0
  1468. package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +1 -0
  1469. package/node_modules/@babel/types/lib/modifications/inherits.js +28 -0
  1470. package/node_modules/@babel/types/lib/modifications/inherits.js.map +1 -0
  1471. package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +17 -0
  1472. package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +1 -0
  1473. package/node_modules/@babel/types/lib/modifications/removeProperties.js +24 -0
  1474. package/node_modules/@babel/types/lib/modifications/removeProperties.js.map +1 -0
  1475. package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +14 -0
  1476. package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +1 -0
  1477. package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +65 -0
  1478. package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +1 -0
  1479. package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +96 -0
  1480. package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +1 -0
  1481. package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +13 -0
  1482. package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +1 -0
  1483. package/node_modules/@babel/types/lib/traverse/traverse.js +50 -0
  1484. package/node_modules/@babel/types/lib/traverse/traverse.js.map +1 -0
  1485. package/node_modules/@babel/types/lib/traverse/traverseFast.js +26 -0
  1486. package/node_modules/@babel/types/lib/traverse/traverseFast.js.map +1 -0
  1487. package/node_modules/@babel/types/lib/utils/deprecationWarning.js +44 -0
  1488. package/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +1 -0
  1489. package/node_modules/@babel/types/lib/utils/inherit.js +13 -0
  1490. package/node_modules/@babel/types/lib/utils/inherit.js.map +1 -0
  1491. package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +40 -0
  1492. package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +1 -0
  1493. package/node_modules/@babel/types/lib/utils/shallowEqual.js +17 -0
  1494. package/node_modules/@babel/types/lib/utils/shallowEqual.js.map +1 -0
  1495. package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +13 -0
  1496. package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +1 -0
  1497. package/node_modules/@babel/types/lib/validators/generated/index.js +2752 -0
  1498. package/node_modules/@babel/types/lib/validators/generated/index.js.map +1 -0
  1499. package/node_modules/@babel/types/lib/validators/is.js +27 -0
  1500. package/node_modules/@babel/types/lib/validators/is.js.map +1 -0
  1501. package/node_modules/@babel/types/lib/validators/isBinding.js +27 -0
  1502. package/node_modules/@babel/types/lib/validators/isBinding.js.map +1 -0
  1503. package/node_modules/@babel/types/lib/validators/isBlockScoped.js +13 -0
  1504. package/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +1 -0
  1505. package/node_modules/@babel/types/lib/validators/isImmutable.js +21 -0
  1506. package/node_modules/@babel/types/lib/validators/isImmutable.js.map +1 -0
  1507. package/node_modules/@babel/types/lib/validators/isLet.js +13 -0
  1508. package/node_modules/@babel/types/lib/validators/isLet.js.map +1 -0
  1509. package/node_modules/@babel/types/lib/validators/isNode.js +12 -0
  1510. package/node_modules/@babel/types/lib/validators/isNode.js.map +1 -0
  1511. package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +57 -0
  1512. package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +1 -0
  1513. package/node_modules/@babel/types/lib/validators/isPlaceholderType.js +19 -0
  1514. package/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +1 -0
  1515. package/node_modules/@babel/types/lib/validators/isReferenced.js +96 -0
  1516. package/node_modules/@babel/types/lib/validators/isReferenced.js.map +1 -0
  1517. package/node_modules/@babel/types/lib/validators/isScope.js +18 -0
  1518. package/node_modules/@babel/types/lib/validators/isScope.js.map +1 -0
  1519. package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +14 -0
  1520. package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +1 -0
  1521. package/node_modules/@babel/types/lib/validators/isType.js +22 -0
  1522. package/node_modules/@babel/types/lib/validators/isType.js.map +1 -0
  1523. package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +13 -0
  1524. package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +1 -0
  1525. package/node_modules/@babel/types/lib/validators/isValidIdentifier.js +18 -0
  1526. package/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +1 -0
  1527. package/node_modules/@babel/types/lib/validators/isVar.js +15 -0
  1528. package/node_modules/@babel/types/lib/validators/isVar.js.map +1 -0
  1529. package/node_modules/@babel/types/lib/validators/matchesPattern.js +36 -0
  1530. package/node_modules/@babel/types/lib/validators/matchesPattern.js.map +1 -0
  1531. package/node_modules/@babel/types/lib/validators/react/isCompatTag.js +11 -0
  1532. package/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +1 -0
  1533. package/node_modules/@babel/types/lib/validators/react/isReactComponent.js +11 -0
  1534. package/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +1 -0
  1535. package/node_modules/@babel/types/lib/validators/validate.js +30 -0
  1536. package/node_modules/@babel/types/lib/validators/validate.js.map +1 -0
  1537. package/node_modules/@babel/types/package.json +40 -0
  1538. package/node_modules/@bcoe/v8-coverage/.editorconfig +9 -0
  1539. package/node_modules/@bcoe/v8-coverage/.gitattributes +2 -0
  1540. package/node_modules/@bcoe/v8-coverage/CHANGELOG.md +250 -0
  1541. package/node_modules/@bcoe/v8-coverage/LICENSE.md +21 -0
  1542. package/node_modules/@bcoe/v8-coverage/LICENSE.txt +14 -0
  1543. package/node_modules/@bcoe/v8-coverage/README.md +11 -0
  1544. package/node_modules/@bcoe/v8-coverage/dist/lib/CHANGELOG.md +250 -0
  1545. package/node_modules/@bcoe/v8-coverage/dist/lib/LICENSE.md +21 -0
  1546. package/node_modules/@bcoe/v8-coverage/dist/lib/README.md +11 -0
  1547. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/ascii.ts +146 -0
  1548. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/clone.ts +70 -0
  1549. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/compare.ts +40 -0
  1550. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/index.ts +6 -0
  1551. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/merge.ts +343 -0
  1552. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/normalize.ts +84 -0
  1553. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/range-tree.ts +156 -0
  1554. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/types.ts +26 -0
  1555. package/node_modules/@bcoe/v8-coverage/dist/lib/ascii.d.ts +12 -0
  1556. package/node_modules/@bcoe/v8-coverage/dist/lib/ascii.js +136 -0
  1557. package/node_modules/@bcoe/v8-coverage/dist/lib/ascii.mjs +130 -0
  1558. package/node_modules/@bcoe/v8-coverage/dist/lib/clone.d.ts +29 -0
  1559. package/node_modules/@bcoe/v8-coverage/dist/lib/clone.js +70 -0
  1560. package/node_modules/@bcoe/v8-coverage/dist/lib/clone.mjs +64 -0
  1561. package/node_modules/@bcoe/v8-coverage/dist/lib/compare.d.ts +21 -0
  1562. package/node_modules/@bcoe/v8-coverage/dist/lib/compare.js +46 -0
  1563. package/node_modules/@bcoe/v8-coverage/dist/lib/compare.mjs +41 -0
  1564. package/node_modules/@bcoe/v8-coverage/dist/lib/index.d.ts +6 -0
  1565. package/node_modules/@bcoe/v8-coverage/dist/lib/index.js +24 -0
  1566. package/node_modules/@bcoe/v8-coverage/dist/lib/index.mjs +7 -0
  1567. package/node_modules/@bcoe/v8-coverage/dist/lib/merge.d.ts +39 -0
  1568. package/node_modules/@bcoe/v8-coverage/dist/lib/merge.js +302 -0
  1569. package/node_modules/@bcoe/v8-coverage/dist/lib/merge.mjs +297 -0
  1570. package/node_modules/@bcoe/v8-coverage/dist/lib/normalize.d.ts +53 -0
  1571. package/node_modules/@bcoe/v8-coverage/dist/lib/normalize.js +87 -0
  1572. package/node_modules/@bcoe/v8-coverage/dist/lib/normalize.mjs +79 -0
  1573. package/node_modules/@bcoe/v8-coverage/dist/lib/package.json +44 -0
  1574. package/node_modules/@bcoe/v8-coverage/dist/lib/range-tree.d.ts +24 -0
  1575. package/node_modules/@bcoe/v8-coverage/dist/lib/range-tree.js +139 -0
  1576. package/node_modules/@bcoe/v8-coverage/dist/lib/range-tree.mjs +136 -0
  1577. package/node_modules/@bcoe/v8-coverage/dist/lib/tsconfig.json +62 -0
  1578. package/node_modules/@bcoe/v8-coverage/dist/lib/types.d.ts +22 -0
  1579. package/node_modules/@bcoe/v8-coverage/dist/lib/types.js +4 -0
  1580. package/node_modules/@bcoe/v8-coverage/dist/lib/types.mjs +3 -0
  1581. package/node_modules/@bcoe/v8-coverage/gulpfile.ts +95 -0
  1582. package/node_modules/@bcoe/v8-coverage/package.json +48 -0
  1583. package/node_modules/@bcoe/v8-coverage/tsconfig.json +59 -0
  1584. package/node_modules/@cspotcode/source-map-consumer/README.md +7 -0
  1585. package/node_modules/@cspotcode/source-map-consumer/lib/array-set.js +100 -0
  1586. package/node_modules/@cspotcode/source-map-consumer/lib/binary-search.js +107 -0
  1587. package/node_modules/@cspotcode/source-map-consumer/lib/mappings.wasm +0 -0
  1588. package/node_modules/@cspotcode/source-map-consumer/lib/read-wasm.js +25 -0
  1589. package/node_modules/@cspotcode/source-map-consumer/lib/source-map-consumer.js +1229 -0
  1590. package/node_modules/@cspotcode/source-map-consumer/lib/util.js +546 -0
  1591. package/node_modules/@cspotcode/source-map-consumer/lib/wasm.js +153 -0
  1592. package/node_modules/@cspotcode/source-map-consumer/package.json +91 -0
  1593. package/node_modules/@cspotcode/source-map-consumer/source-map.d.ts +369 -0
  1594. package/node_modules/@cspotcode/source-map-consumer/source-map.js +6 -0
  1595. package/node_modules/@cspotcode/source-map-support/LICENSE.md +21 -0
  1596. package/node_modules/@cspotcode/source-map-support/README.md +289 -0
  1597. package/node_modules/@cspotcode/source-map-support/package.json +46 -0
  1598. package/node_modules/@cspotcode/source-map-support/register-hook-require.d.ts +7 -0
  1599. package/node_modules/@cspotcode/source-map-support/register-hook-require.js +3 -0
  1600. package/node_modules/@cspotcode/source-map-support/register.d.ts +7 -0
  1601. package/node_modules/@cspotcode/source-map-support/register.js +1 -0
  1602. package/node_modules/@cspotcode/source-map-support/source-map-support.d.ts +68 -0
  1603. package/node_modules/@cspotcode/source-map-support/source-map-support.js +806 -0
  1604. package/node_modules/@istanbuljs/load-nyc-config/CHANGELOG.md +41 -0
  1605. package/node_modules/@istanbuljs/load-nyc-config/LICENSE +16 -0
  1606. package/node_modules/@istanbuljs/load-nyc-config/README.md +64 -0
  1607. package/node_modules/@istanbuljs/load-nyc-config/index.js +166 -0
  1608. package/node_modules/@istanbuljs/load-nyc-config/load-esm.js +12 -0
  1609. package/node_modules/@istanbuljs/load-nyc-config/package.json +49 -0
  1610. package/node_modules/@istanbuljs/schema/CHANGELOG.md +44 -0
  1611. package/node_modules/@istanbuljs/schema/LICENSE +21 -0
  1612. package/node_modules/@istanbuljs/schema/README.md +30 -0
  1613. package/node_modules/@istanbuljs/schema/default-exclude.js +22 -0
  1614. package/node_modules/@istanbuljs/schema/default-extension.js +10 -0
  1615. package/node_modules/@istanbuljs/schema/index.js +466 -0
  1616. package/node_modules/@istanbuljs/schema/package.json +30 -0
  1617. package/node_modules/@jest/console/LICENSE +21 -0
  1618. package/node_modules/@jest/console/build/BufferedConsole.js +197 -0
  1619. package/node_modules/@jest/console/build/CustomConsole.js +182 -0
  1620. package/node_modules/@jest/console/build/NullConsole.js +35 -0
  1621. package/node_modules/@jest/console/build/getConsoleOutput.js +70 -0
  1622. package/node_modules/@jest/console/build/index.d.ts +131 -0
  1623. package/node_modules/@jest/console/build/index.js +36 -0
  1624. package/node_modules/@jest/console/build/types.js +1 -0
  1625. package/node_modules/@jest/console/package.json +37 -0
  1626. package/node_modules/@jest/core/LICENSE +21 -0
  1627. package/node_modules/@jest/core/README.md +3 -0
  1628. package/node_modules/@jest/core/build/FailedTestsCache.js +46 -0
  1629. package/node_modules/@jest/core/build/FailedTestsInteractiveMode.js +195 -0
  1630. package/node_modules/@jest/core/build/ReporterDispatcher.js +87 -0
  1631. package/node_modules/@jest/core/build/SearchSource.js +408 -0
  1632. package/node_modules/@jest/core/build/SnapshotInteractiveMode.js +238 -0
  1633. package/node_modules/@jest/core/build/TestNamePatternPrompt.js +39 -0
  1634. package/node_modules/@jest/core/build/TestPathPatternPrompt.js +39 -0
  1635. package/node_modules/@jest/core/build/TestScheduler.js +463 -0
  1636. package/node_modules/@jest/core/build/cli/index.js +417 -0
  1637. package/node_modules/@jest/core/build/collectHandles.js +266 -0
  1638. package/node_modules/@jest/core/build/getChangedFilesPromise.js +65 -0
  1639. package/node_modules/@jest/core/build/getConfigsOfProjectsToRun.js +40 -0
  1640. package/node_modules/@jest/core/build/getNoTestFound.js +80 -0
  1641. package/node_modules/@jest/core/build/getNoTestFoundFailed.js +43 -0
  1642. package/node_modules/@jest/core/build/getNoTestFoundPassWithNoTests.js +26 -0
  1643. package/node_modules/@jest/core/build/getNoTestFoundRelatedToChangedFiles.js +48 -0
  1644. package/node_modules/@jest/core/build/getNoTestFoundVerbose.js +91 -0
  1645. package/node_modules/@jest/core/build/getNoTestsFoundMessage.js +64 -0
  1646. package/node_modules/@jest/core/build/getProjectDisplayName.js +16 -0
  1647. package/node_modules/@jest/core/build/getProjectNamesMissingWarning.js +49 -0
  1648. package/node_modules/@jest/core/build/getSelectProjectsMessage.js +71 -0
  1649. package/node_modules/@jest/core/build/index.d.ts +118 -0
  1650. package/node_modules/@jest/core/build/index.js +36 -0
  1651. package/node_modules/@jest/core/build/lib/activeFiltersMessage.js +52 -0
  1652. package/node_modules/@jest/core/build/lib/createContext.js +31 -0
  1653. package/node_modules/@jest/core/build/lib/handleDeprecationWarnings.js +65 -0
  1654. package/node_modules/@jest/core/build/lib/isValidPath.js +26 -0
  1655. package/node_modules/@jest/core/build/lib/logDebugMessages.js +24 -0
  1656. package/node_modules/@jest/core/build/lib/updateGlobalConfig.js +95 -0
  1657. package/node_modules/@jest/core/build/lib/watchPluginsHelpers.js +56 -0
  1658. package/node_modules/@jest/core/build/plugins/FailedTestsInteractive.js +96 -0
  1659. package/node_modules/@jest/core/build/plugins/Quit.js +42 -0
  1660. package/node_modules/@jest/core/build/plugins/TestNamePattern.js +70 -0
  1661. package/node_modules/@jest/core/build/plugins/TestPathPattern.js +70 -0
  1662. package/node_modules/@jest/core/build/plugins/UpdateSnapshots.js +51 -0
  1663. package/node_modules/@jest/core/build/plugins/UpdateSnapshotsInteractive.js +99 -0
  1664. package/node_modules/@jest/core/build/runGlobalHook.js +133 -0
  1665. package/node_modules/@jest/core/build/runJest.js +391 -0
  1666. package/node_modules/@jest/core/build/testSchedulerHelper.js +57 -0
  1667. package/node_modules/@jest/core/build/types.js +1 -0
  1668. package/node_modules/@jest/core/build/version.js +18 -0
  1669. package/node_modules/@jest/core/build/watch.js +666 -0
  1670. package/node_modules/@jest/core/package.json +102 -0
  1671. package/node_modules/@jest/environment/LICENSE +21 -0
  1672. package/node_modules/@jest/environment/build/index.d.ts +418 -0
  1673. package/node_modules/@jest/environment/build/index.js +1 -0
  1674. package/node_modules/@jest/environment/package.json +32 -0
  1675. package/node_modules/@jest/expect/LICENSE +21 -0
  1676. package/node_modules/@jest/expect/README.md +5 -0
  1677. package/node_modules/@jest/expect/build/index.d.ts +68 -0
  1678. package/node_modules/@jest/expect/build/index.js +40 -0
  1679. package/node_modules/@jest/expect/build/types.js +1 -0
  1680. package/node_modules/@jest/expect/package.json +34 -0
  1681. package/node_modules/@jest/expect-utils/LICENSE +21 -0
  1682. package/node_modules/@jest/expect-utils/README.md +5 -0
  1683. package/node_modules/@jest/expect-utils/build/immutableUtils.js +66 -0
  1684. package/node_modules/@jest/expect-utils/build/index.d.ts +93 -0
  1685. package/node_modules/@jest/expect-utils/build/index.js +34 -0
  1686. package/node_modules/@jest/expect-utils/build/jasmineUtils.js +210 -0
  1687. package/node_modules/@jest/expect-utils/build/types.js +1 -0
  1688. package/node_modules/@jest/expect-utils/build/utils.js +394 -0
  1689. package/node_modules/@jest/expect-utils/package.json +35 -0
  1690. package/node_modules/@jest/fake-timers/LICENSE +21 -0
  1691. package/node_modules/@jest/fake-timers/build/index.d.ts +110 -0
  1692. package/node_modules/@jest/fake-timers/build/index.js +22 -0
  1693. package/node_modules/@jest/fake-timers/build/legacyFakeTimers.js +545 -0
  1694. package/node_modules/@jest/fake-timers/build/modernFakeTimers.js +191 -0
  1695. package/node_modules/@jest/fake-timers/package.json +38 -0
  1696. package/node_modules/@jest/globals/LICENSE +21 -0
  1697. package/node_modules/@jest/globals/build/index.d.ts +71 -0
  1698. package/node_modules/@jest/globals/build/index.js +14 -0
  1699. package/node_modules/@jest/globals/package.json +32 -0
  1700. package/node_modules/@jest/reporters/LICENSE +21 -0
  1701. package/node_modules/@jest/reporters/assets/jest_logo.png +0 -0
  1702. package/node_modules/@jest/reporters/build/BaseReporter.js +48 -0
  1703. package/node_modules/@jest/reporters/build/CoverageReporter.js +561 -0
  1704. package/node_modules/@jest/reporters/build/CoverageWorker.js +89 -0
  1705. package/node_modules/@jest/reporters/build/DefaultReporter.js +229 -0
  1706. package/node_modules/@jest/reporters/build/GitHubActionsReporter.js +381 -0
  1707. package/node_modules/@jest/reporters/build/NotifyReporter.js +218 -0
  1708. package/node_modules/@jest/reporters/build/Status.js +214 -0
  1709. package/node_modules/@jest/reporters/build/SummaryReporter.js +239 -0
  1710. package/node_modules/@jest/reporters/build/VerboseReporter.js +175 -0
  1711. package/node_modules/@jest/reporters/build/formatTestPath.js +84 -0
  1712. package/node_modules/@jest/reporters/build/generateEmptyCoverage.js +151 -0
  1713. package/node_modules/@jest/reporters/build/getResultHeader.js +65 -0
  1714. package/node_modules/@jest/reporters/build/getSnapshotStatus.js +92 -0
  1715. package/node_modules/@jest/reporters/build/getSnapshotSummary.js +169 -0
  1716. package/node_modules/@jest/reporters/build/getSummary.js +206 -0
  1717. package/node_modules/@jest/reporters/build/getWatermarks.js +38 -0
  1718. package/node_modules/@jest/reporters/build/index.d.ts +325 -0
  1719. package/node_modules/@jest/reporters/build/index.js +88 -0
  1720. package/node_modules/@jest/reporters/build/printDisplayName.js +35 -0
  1721. package/node_modules/@jest/reporters/build/relativePath.js +72 -0
  1722. package/node_modules/@jest/reporters/build/trimAndFormatPath.js +118 -0
  1723. package/node_modules/@jest/reporters/build/types.js +1 -0
  1724. package/node_modules/@jest/reporters/build/wrapAnsiString.js +69 -0
  1725. package/node_modules/@jest/reporters/package.json +82 -0
  1726. package/node_modules/@jest/schemas/LICENSE +21 -0
  1727. package/node_modules/@jest/schemas/README.md +3 -0
  1728. package/node_modules/@jest/schemas/build/index.d.ts +72 -0
  1729. package/node_modules/@jest/schemas/build/index.js +65 -0
  1730. package/node_modules/@jest/schemas/package.json +29 -0
  1731. package/node_modules/@jest/source-map/LICENSE +21 -0
  1732. package/node_modules/@jest/source-map/build/getCallsite.js +85 -0
  1733. package/node_modules/@jest/source-map/build/index.d.ts +16 -0
  1734. package/node_modules/@jest/source-map/build/index.js +15 -0
  1735. package/node_modules/@jest/source-map/build/types.js +1 -0
  1736. package/node_modules/@jest/source-map/package.json +34 -0
  1737. package/node_modules/@jest/test-result/LICENSE +21 -0
  1738. package/node_modules/@jest/test-result/build/formatTestResults.js +69 -0
  1739. package/node_modules/@jest/test-result/build/helpers.js +175 -0
  1740. package/node_modules/@jest/test-result/build/index.d.ts +232 -0
  1741. package/node_modules/@jest/test-result/build/index.js +40 -0
  1742. package/node_modules/@jest/test-result/build/types.js +1 -0
  1743. package/node_modules/@jest/test-result/package.json +36 -0
  1744. package/node_modules/@jest/test-sequencer/LICENSE +21 -0
  1745. package/node_modules/@jest/test-sequencer/build/index.d.ts +91 -0
  1746. package/node_modules/@jest/test-sequencer/build/index.js +287 -0
  1747. package/node_modules/@jest/test-sequencer/package.json +36 -0
  1748. package/node_modules/@jest/transform/LICENSE +21 -0
  1749. package/node_modules/@jest/transform/build/ScriptTransformer.js +1000 -0
  1750. package/node_modules/@jest/transform/build/enhanceUnexpectedTokenMessage.js +76 -0
  1751. package/node_modules/@jest/transform/build/index.d.ts +240 -0
  1752. package/node_modules/@jest/transform/build/index.js +37 -0
  1753. package/node_modules/@jest/transform/build/runtimeErrorsAndWarnings.js +94 -0
  1754. package/node_modules/@jest/transform/build/shouldInstrument.js +177 -0
  1755. package/node_modules/@jest/transform/build/types.js +1 -0
  1756. package/node_modules/@jest/transform/package.json +52 -0
  1757. package/node_modules/@jest/types/LICENSE +21 -0
  1758. package/node_modules/@jest/types/README.md +30 -0
  1759. package/node_modules/@jest/types/build/Circus.js +1 -0
  1760. package/node_modules/@jest/types/build/Config.js +1 -0
  1761. package/node_modules/@jest/types/build/Global.js +1 -0
  1762. package/node_modules/@jest/types/build/TestResult.js +1 -0
  1763. package/node_modules/@jest/types/build/Transform.js +1 -0
  1764. package/node_modules/@jest/types/build/index.d.ts +1204 -0
  1765. package/node_modules/@jest/types/build/index.js +1 -0
  1766. package/node_modules/@jest/types/package.json +38 -0
  1767. package/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
  1768. package/node_modules/@jridgewell/gen-mapping/README.md +227 -0
  1769. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs +230 -0
  1770. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs.map +1 -0
  1771. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js +236 -0
  1772. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js.map +1 -0
  1773. package/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts +90 -0
  1774. package/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts +12 -0
  1775. package/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts +35 -0
  1776. package/node_modules/@jridgewell/gen-mapping/package.json +77 -0
  1777. package/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
  1778. package/node_modules/@jridgewell/resolve-uri/README.md +40 -0
  1779. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs +242 -0
  1780. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs.map +1 -0
  1781. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js +250 -0
  1782. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js.map +1 -0
  1783. package/node_modules/@jridgewell/resolve-uri/dist/types/resolve-uri.d.ts +4 -0
  1784. package/node_modules/@jridgewell/resolve-uri/package.json +69 -0
  1785. package/node_modules/@jridgewell/set-array/LICENSE +19 -0
  1786. package/node_modules/@jridgewell/set-array/README.md +37 -0
  1787. package/node_modules/@jridgewell/set-array/dist/set-array.mjs +48 -0
  1788. package/node_modules/@jridgewell/set-array/dist/set-array.mjs.map +1 -0
  1789. package/node_modules/@jridgewell/set-array/dist/set-array.umd.js +58 -0
  1790. package/node_modules/@jridgewell/set-array/dist/set-array.umd.js.map +1 -0
  1791. package/node_modules/@jridgewell/set-array/dist/types/set-array.d.ts +26 -0
  1792. package/node_modules/@jridgewell/set-array/package.json +66 -0
  1793. package/node_modules/@jridgewell/sourcemap-codec/LICENSE +21 -0
  1794. package/node_modules/@jridgewell/sourcemap-codec/README.md +200 -0
  1795. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +164 -0
  1796. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +1 -0
  1797. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +175 -0
  1798. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
  1799. package/node_modules/@jridgewell/sourcemap-codec/dist/types/sourcemap-codec.d.ts +6 -0
  1800. package/node_modules/@jridgewell/sourcemap-codec/package.json +75 -0
  1801. package/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
  1802. package/node_modules/@jridgewell/trace-mapping/README.md +252 -0
  1803. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +552 -0
  1804. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +1 -0
  1805. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +560 -0
  1806. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +1 -0
  1807. package/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts +8 -0
  1808. package/node_modules/@jridgewell/trace-mapping/dist/types/binary-search.d.ts +32 -0
  1809. package/node_modules/@jridgewell/trace-mapping/dist/types/by-source.d.ts +7 -0
  1810. package/node_modules/@jridgewell/trace-mapping/dist/types/resolve.d.ts +1 -0
  1811. package/node_modules/@jridgewell/trace-mapping/dist/types/sort.d.ts +2 -0
  1812. package/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts +16 -0
  1813. package/node_modules/@jridgewell/trace-mapping/dist/types/strip-filename.d.ts +4 -0
  1814. package/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts +74 -0
  1815. package/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts +92 -0
  1816. package/node_modules/@jridgewell/trace-mapping/package.json +75 -0
  1817. package/node_modules/@sinclair/typebox/compiler/compiler.d.ts +28 -0
  1818. package/node_modules/@sinclair/typebox/compiler/compiler.js +404 -0
  1819. package/node_modules/@sinclair/typebox/compiler/index.d.ts +2 -0
  1820. package/node_modules/@sinclair/typebox/compiler/index.js +47 -0
  1821. package/node_modules/@sinclair/typebox/conditional/conditional.d.ts +17 -0
  1822. package/node_modules/@sinclair/typebox/conditional/conditional.js +91 -0
  1823. package/node_modules/@sinclair/typebox/conditional/index.d.ts +2 -0
  1824. package/node_modules/@sinclair/typebox/conditional/index.js +45 -0
  1825. package/node_modules/@sinclair/typebox/conditional/structural.d.ts +11 -0
  1826. package/node_modules/@sinclair/typebox/conditional/structural.js +657 -0
  1827. package/node_modules/@sinclair/typebox/errors/errors.d.ts +59 -0
  1828. package/node_modules/@sinclair/typebox/errors/errors.js +382 -0
  1829. package/node_modules/@sinclair/typebox/errors/index.d.ts +1 -0
  1830. package/node_modules/@sinclair/typebox/errors/index.js +44 -0
  1831. package/node_modules/@sinclair/typebox/format/format.d.ts +12 -0
  1832. package/node_modules/@sinclair/typebox/format/format.js +55 -0
  1833. package/node_modules/@sinclair/typebox/format/index.d.ts +1 -0
  1834. package/node_modules/@sinclair/typebox/format/index.js +44 -0
  1835. package/node_modules/@sinclair/typebox/guard/guard.d.ts +56 -0
  1836. package/node_modules/@sinclair/typebox/guard/guard.js +348 -0
  1837. package/node_modules/@sinclair/typebox/guard/index.d.ts +1 -0
  1838. package/node_modules/@sinclair/typebox/guard/index.js +44 -0
  1839. package/node_modules/@sinclair/typebox/license +23 -0
  1840. package/node_modules/@sinclair/typebox/package.json +40 -0
  1841. package/node_modules/@sinclair/typebox/readme.md +1152 -0
  1842. package/node_modules/@sinclair/typebox/typebox.d.ts +406 -0
  1843. package/node_modules/@sinclair/typebox/typebox.js +383 -0
  1844. package/node_modules/@sinclair/typebox/value/cast.d.ts +26 -0
  1845. package/node_modules/@sinclair/typebox/value/cast.js +355 -0
  1846. package/node_modules/@sinclair/typebox/value/check.d.ts +8 -0
  1847. package/node_modules/@sinclair/typebox/value/check.js +322 -0
  1848. package/node_modules/@sinclair/typebox/value/clone.d.ts +3 -0
  1849. package/node_modules/@sinclair/typebox/value/clone.js +65 -0
  1850. package/node_modules/@sinclair/typebox/value/create.d.ts +14 -0
  1851. package/node_modules/@sinclair/typebox/value/create.js +357 -0
  1852. package/node_modules/@sinclair/typebox/value/delta.d.ts +22 -0
  1853. package/node_modules/@sinclair/typebox/value/delta.js +168 -0
  1854. package/node_modules/@sinclair/typebox/value/equal.d.ts +3 -0
  1855. package/node_modules/@sinclair/typebox/value/equal.js +74 -0
  1856. package/node_modules/@sinclair/typebox/value/index.d.ts +3 -0
  1857. package/node_modules/@sinclair/typebox/value/index.js +48 -0
  1858. package/node_modules/@sinclair/typebox/value/is.d.ts +10 -0
  1859. package/node_modules/@sinclair/typebox/value/is.js +49 -0
  1860. package/node_modules/@sinclair/typebox/value/pointer.d.ts +24 -0
  1861. package/node_modules/@sinclair/typebox/value/pointer.js +142 -0
  1862. package/node_modules/@sinclair/typebox/value/value.d.ts +31 -0
  1863. package/node_modules/@sinclair/typebox/value/value.js +81 -0
  1864. package/node_modules/@sinonjs/commons/LICENSE +29 -0
  1865. package/node_modules/@sinonjs/commons/README.md +16 -0
  1866. package/node_modules/@sinonjs/commons/lib/called-in-order.js +55 -0
  1867. package/node_modules/@sinonjs/commons/lib/called-in-order.test.js +121 -0
  1868. package/node_modules/@sinonjs/commons/lib/class-name.js +13 -0
  1869. package/node_modules/@sinonjs/commons/lib/class-name.test.js +37 -0
  1870. package/node_modules/@sinonjs/commons/lib/deprecated.js +48 -0
  1871. package/node_modules/@sinonjs/commons/lib/deprecated.test.js +101 -0
  1872. package/node_modules/@sinonjs/commons/lib/every.js +26 -0
  1873. package/node_modules/@sinonjs/commons/lib/every.test.js +41 -0
  1874. package/node_modules/@sinonjs/commons/lib/function-name.js +28 -0
  1875. package/node_modules/@sinonjs/commons/lib/function-name.test.js +76 -0
  1876. package/node_modules/@sinonjs/commons/lib/global.js +21 -0
  1877. package/node_modules/@sinonjs/commons/lib/global.test.js +16 -0
  1878. package/node_modules/@sinonjs/commons/lib/index.js +14 -0
  1879. package/node_modules/@sinonjs/commons/lib/index.test.js +31 -0
  1880. package/node_modules/@sinonjs/commons/lib/order-by-first-call.js +34 -0
  1881. package/node_modules/@sinonjs/commons/lib/order-by-first-call.test.js +52 -0
  1882. package/node_modules/@sinonjs/commons/lib/prototypes/README.md +43 -0
  1883. package/node_modules/@sinonjs/commons/lib/prototypes/array.js +5 -0
  1884. package/node_modules/@sinonjs/commons/lib/prototypes/copy-prototype-methods.js +40 -0
  1885. package/node_modules/@sinonjs/commons/lib/prototypes/copy-prototype-methods.test.js +12 -0
  1886. package/node_modules/@sinonjs/commons/lib/prototypes/function.js +5 -0
  1887. package/node_modules/@sinonjs/commons/lib/prototypes/index.js +10 -0
  1888. package/node_modules/@sinonjs/commons/lib/prototypes/index.test.js +61 -0
  1889. package/node_modules/@sinonjs/commons/lib/prototypes/map.js +5 -0
  1890. package/node_modules/@sinonjs/commons/lib/prototypes/object.js +5 -0
  1891. package/node_modules/@sinonjs/commons/lib/prototypes/set.js +5 -0
  1892. package/node_modules/@sinonjs/commons/lib/prototypes/string.js +5 -0
  1893. package/node_modules/@sinonjs/commons/lib/prototypes/throws-on-proto.js +24 -0
  1894. package/node_modules/@sinonjs/commons/lib/type-of.js +12 -0
  1895. package/node_modules/@sinonjs/commons/lib/type-of.test.js +51 -0
  1896. package/node_modules/@sinonjs/commons/lib/value-to-string.js +16 -0
  1897. package/node_modules/@sinonjs/commons/lib/value-to-string.test.js +20 -0
  1898. package/node_modules/@sinonjs/commons/package.json +57 -0
  1899. package/node_modules/@sinonjs/commons/types/called-in-order.d.ts +34 -0
  1900. package/node_modules/@sinonjs/commons/types/class-name.d.ts +7 -0
  1901. package/node_modules/@sinonjs/commons/types/deprecated.d.ts +3 -0
  1902. package/node_modules/@sinonjs/commons/types/every.d.ts +2 -0
  1903. package/node_modules/@sinonjs/commons/types/function-name.d.ts +2 -0
  1904. package/node_modules/@sinonjs/commons/types/global.d.ts +6 -0
  1905. package/node_modules/@sinonjs/commons/types/index.d.ts +17 -0
  1906. package/node_modules/@sinonjs/commons/types/order-by-first-call.d.ts +24 -0
  1907. package/node_modules/@sinonjs/commons/types/prototypes/array.d.ts +2 -0
  1908. package/node_modules/@sinonjs/commons/types/prototypes/copy-prototype-methods.d.ts +2 -0
  1909. package/node_modules/@sinonjs/commons/types/prototypes/function.d.ts +2 -0
  1910. package/node_modules/@sinonjs/commons/types/prototypes/index.d.ts +7 -0
  1911. package/node_modules/@sinonjs/commons/types/prototypes/map.d.ts +2 -0
  1912. package/node_modules/@sinonjs/commons/types/prototypes/object.d.ts +2 -0
  1913. package/node_modules/@sinonjs/commons/types/prototypes/set.d.ts +2 -0
  1914. package/node_modules/@sinonjs/commons/types/prototypes/string.d.ts +2 -0
  1915. package/node_modules/@sinonjs/commons/types/prototypes/throws-on-proto.d.ts +10 -0
  1916. package/node_modules/@sinonjs/commons/types/type-of.d.ts +2 -0
  1917. package/node_modules/@sinonjs/commons/types/value-to-string.d.ts +7 -0
  1918. package/node_modules/@sinonjs/fake-timers/LICENSE +11 -0
  1919. package/node_modules/@sinonjs/fake-timers/README.md +358 -0
  1920. package/node_modules/@sinonjs/fake-timers/package.json +65 -0
  1921. package/node_modules/@tsconfig/node10/LICENSE +21 -0
  1922. package/node_modules/@tsconfig/node10/README.md +39 -0
  1923. package/node_modules/@tsconfig/node10/package.json +1 -0
  1924. package/node_modules/@tsconfig/node10/tsconfig.json +15 -0
  1925. package/node_modules/@tsconfig/node12/LICENSE +21 -0
  1926. package/node_modules/@tsconfig/node12/README.md +39 -0
  1927. package/node_modules/@tsconfig/node12/package.json +1 -0
  1928. package/node_modules/@tsconfig/node12/tsconfig.json +15 -0
  1929. package/node_modules/@tsconfig/node14/LICENSE +21 -0
  1930. package/node_modules/@tsconfig/node14/README.md +39 -0
  1931. package/node_modules/@tsconfig/node14/package.json +1 -0
  1932. package/node_modules/@tsconfig/node14/tsconfig.json +15 -0
  1933. package/node_modules/@tsconfig/node16/LICENSE +21 -0
  1934. package/node_modules/@tsconfig/node16/README.md +39 -0
  1935. package/node_modules/@tsconfig/node16/package.json +1 -0
  1936. package/node_modules/@tsconfig/node16/tsconfig.json +15 -0
  1937. package/node_modules/@types/babel__core/LICENSE +21 -0
  1938. package/node_modules/@types/babel__core/README.md +16 -0
  1939. package/node_modules/@types/babel__core/index.d.ts +799 -0
  1940. package/node_modules/@types/babel__core/package.json +51 -0
  1941. package/node_modules/@types/babel__generator/LICENSE +21 -0
  1942. package/node_modules/@types/babel__generator/README.md +16 -0
  1943. package/node_modules/@types/babel__generator/index.d.ts +211 -0
  1944. package/node_modules/@types/babel__generator/package.json +42 -0
  1945. package/node_modules/@types/babel__template/LICENSE +21 -0
  1946. package/node_modules/@types/babel__template/README.md +16 -0
  1947. package/node_modules/@types/babel__template/index.d.ts +100 -0
  1948. package/node_modules/@types/babel__template/package.json +43 -0
  1949. package/node_modules/@types/babel__traverse/LICENSE +21 -0
  1950. package/node_modules/@types/babel__traverse/README.md +16 -0
  1951. package/node_modules/@types/babel__traverse/index.d.ts +1172 -0
  1952. package/node_modules/@types/babel__traverse/package.json +69 -0
  1953. package/node_modules/@types/babel__traverse/ts4.1/index.d.ts +1160 -0
  1954. package/node_modules/@types/graceful-fs/LICENSE +21 -0
  1955. package/node_modules/@types/graceful-fs/README.md +16 -0
  1956. package/node_modules/@types/graceful-fs/index.d.ts +19 -0
  1957. package/node_modules/@types/graceful-fs/package.json +31 -0
  1958. package/node_modules/@types/istanbul-lib-coverage/LICENSE +21 -0
  1959. package/node_modules/@types/istanbul-lib-coverage/README.md +16 -0
  1960. package/node_modules/@types/istanbul-lib-coverage/index.d.ts +117 -0
  1961. package/node_modules/@types/istanbul-lib-coverage/package.json +25 -0
  1962. package/node_modules/@types/istanbul-lib-report/LICENSE +21 -0
  1963. package/node_modules/@types/istanbul-lib-report/README.md +16 -0
  1964. package/node_modules/@types/istanbul-lib-report/index.d.ts +191 -0
  1965. package/node_modules/@types/istanbul-lib-report/package.json +31 -0
  1966. package/node_modules/@types/istanbul-reports/LICENSE +21 -0
  1967. package/node_modules/@types/istanbul-reports/README.md +94 -0
  1968. package/node_modules/@types/istanbul-reports/index.d.ts +74 -0
  1969. package/node_modules/@types/istanbul-reports/package.json +32 -0
  1970. package/node_modules/@types/jest/LICENSE +21 -0
  1971. package/node_modules/@types/jest/README.md +16 -0
  1972. package/node_modules/@types/jest/index.d.ts +1748 -0
  1973. package/node_modules/@types/jest/package.json +159 -0
  1974. package/node_modules/@types/lru-cache/LICENSE +21 -0
  1975. package/node_modules/@types/lru-cache/README.md +16 -0
  1976. package/node_modules/@types/lru-cache/index.d.ts +193 -0
  1977. package/node_modules/@types/lru-cache/package.json +30 -0
  1978. package/node_modules/@types/node/LICENSE +21 -0
  1979. package/node_modules/@types/node/README.md +15 -0
  1980. package/node_modules/@types/node/assert/strict.d.ts +8 -0
  1981. package/node_modules/@types/node/assert.d.ts +996 -0
  1982. package/node_modules/@types/node/async_hooks.d.ts +539 -0
  1983. package/node_modules/@types/node/buffer.d.ts +2362 -0
  1984. package/node_modules/@types/node/child_process.d.ts +1540 -0
  1985. package/node_modules/@types/node/cluster.d.ts +432 -0
  1986. package/node_modules/@types/node/console.d.ts +415 -0
  1987. package/node_modules/@types/node/constants.d.ts +19 -0
  1988. package/node_modules/@types/node/crypto.d.ts +4487 -0
  1989. package/node_modules/@types/node/dgram.d.ts +596 -0
  1990. package/node_modules/@types/node/diagnostics_channel.d.ts +545 -0
  1991. package/node_modules/@types/node/dns/promises.d.ts +425 -0
  1992. package/node_modules/@types/node/dns.d.ts +809 -0
  1993. package/node_modules/@types/node/dom-events.d.ts +122 -0
  1994. package/node_modules/@types/node/domain.d.ts +170 -0
  1995. package/node_modules/@types/node/events.d.ts +879 -0
  1996. package/node_modules/@types/node/fs/promises.d.ts +1239 -0
  1997. package/node_modules/@types/node/fs.d.ts +4311 -0
  1998. package/node_modules/@types/node/globals.d.ts +411 -0
  1999. package/node_modules/@types/node/globals.global.d.ts +1 -0
  2000. package/node_modules/@types/node/http.d.ts +1887 -0
  2001. package/node_modules/@types/node/http2.d.ts +2382 -0
  2002. package/node_modules/@types/node/https.d.ts +550 -0
  2003. package/node_modules/@types/node/index.d.ts +88 -0
  2004. package/node_modules/@types/node/inspector.d.ts +2747 -0
  2005. package/node_modules/@types/node/module.d.ts +315 -0
  2006. package/node_modules/@types/node/net.d.ts +949 -0
  2007. package/node_modules/@types/node/os.d.ts +478 -0
  2008. package/node_modules/@types/node/package.json +229 -0
  2009. package/node_modules/@types/node/path.d.ts +191 -0
  2010. package/node_modules/@types/node/perf_hooks.d.ts +645 -0
  2011. package/node_modules/@types/node/process.d.ts +1561 -0
  2012. package/node_modules/@types/node/punycode.d.ts +117 -0
  2013. package/node_modules/@types/node/querystring.d.ts +141 -0
  2014. package/node_modules/@types/node/readline/promises.d.ts +150 -0
  2015. package/node_modules/@types/node/readline.d.ts +539 -0
  2016. package/node_modules/@types/node/repl.d.ts +430 -0
  2017. package/node_modules/@types/node/stream/consumers.d.ts +12 -0
  2018. package/node_modules/@types/node/stream/promises.d.ts +83 -0
  2019. package/node_modules/@types/node/stream/web.d.ts +366 -0
  2020. package/node_modules/@types/node/stream.d.ts +1701 -0
  2021. package/node_modules/@types/node/string_decoder.d.ts +67 -0
  2022. package/node_modules/@types/node/test.d.ts +1465 -0
  2023. package/node_modules/@types/node/timers/promises.d.ts +93 -0
  2024. package/node_modules/@types/node/timers.d.ts +240 -0
  2025. package/node_modules/@types/node/tls.d.ts +1210 -0
  2026. package/node_modules/@types/node/trace_events.d.ts +182 -0
  2027. package/node_modules/@types/node/ts4.8/assert/strict.d.ts +8 -0
  2028. package/node_modules/@types/node/ts4.8/assert.d.ts +996 -0
  2029. package/node_modules/@types/node/ts4.8/async_hooks.d.ts +539 -0
  2030. package/node_modules/@types/node/ts4.8/buffer.d.ts +2362 -0
  2031. package/node_modules/@types/node/ts4.8/child_process.d.ts +1540 -0
  2032. package/node_modules/@types/node/ts4.8/cluster.d.ts +432 -0
  2033. package/node_modules/@types/node/ts4.8/console.d.ts +415 -0
  2034. package/node_modules/@types/node/ts4.8/constants.d.ts +19 -0
  2035. package/node_modules/@types/node/ts4.8/crypto.d.ts +4487 -0
  2036. package/node_modules/@types/node/ts4.8/dgram.d.ts +596 -0
  2037. package/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +545 -0
  2038. package/node_modules/@types/node/ts4.8/dns/promises.d.ts +425 -0
  2039. package/node_modules/@types/node/ts4.8/dns.d.ts +809 -0
  2040. package/node_modules/@types/node/ts4.8/dom-events.d.ts +122 -0
  2041. package/node_modules/@types/node/ts4.8/domain.d.ts +170 -0
  2042. package/node_modules/@types/node/ts4.8/events.d.ts +879 -0
  2043. package/node_modules/@types/node/ts4.8/fs/promises.d.ts +1239 -0
  2044. package/node_modules/@types/node/ts4.8/fs.d.ts +4311 -0
  2045. package/node_modules/@types/node/ts4.8/globals.d.ts +411 -0
  2046. package/node_modules/@types/node/ts4.8/globals.global.d.ts +1 -0
  2047. package/node_modules/@types/node/ts4.8/http.d.ts +1887 -0
  2048. package/node_modules/@types/node/ts4.8/http2.d.ts +2382 -0
  2049. package/node_modules/@types/node/ts4.8/https.d.ts +550 -0
  2050. package/node_modules/@types/node/ts4.8/index.d.ts +88 -0
  2051. package/node_modules/@types/node/ts4.8/inspector.d.ts +2747 -0
  2052. package/node_modules/@types/node/ts4.8/module.d.ts +315 -0
  2053. package/node_modules/@types/node/ts4.8/net.d.ts +949 -0
  2054. package/node_modules/@types/node/ts4.8/os.d.ts +478 -0
  2055. package/node_modules/@types/node/ts4.8/path.d.ts +191 -0
  2056. package/node_modules/@types/node/ts4.8/perf_hooks.d.ts +645 -0
  2057. package/node_modules/@types/node/ts4.8/process.d.ts +1561 -0
  2058. package/node_modules/@types/node/ts4.8/punycode.d.ts +117 -0
  2059. package/node_modules/@types/node/ts4.8/querystring.d.ts +141 -0
  2060. package/node_modules/@types/node/ts4.8/readline/promises.d.ts +150 -0
  2061. package/node_modules/@types/node/ts4.8/readline.d.ts +539 -0
  2062. package/node_modules/@types/node/ts4.8/repl.d.ts +430 -0
  2063. package/node_modules/@types/node/ts4.8/stream/consumers.d.ts +12 -0
  2064. package/node_modules/@types/node/ts4.8/stream/promises.d.ts +83 -0
  2065. package/node_modules/@types/node/ts4.8/stream/web.d.ts +366 -0
  2066. package/node_modules/@types/node/ts4.8/stream.d.ts +1701 -0
  2067. package/node_modules/@types/node/ts4.8/string_decoder.d.ts +67 -0
  2068. package/node_modules/@types/node/ts4.8/test.d.ts +1465 -0
  2069. package/node_modules/@types/node/ts4.8/timers/promises.d.ts +93 -0
  2070. package/node_modules/@types/node/ts4.8/timers.d.ts +240 -0
  2071. package/node_modules/@types/node/ts4.8/tls.d.ts +1210 -0
  2072. package/node_modules/@types/node/ts4.8/trace_events.d.ts +182 -0
  2073. package/node_modules/@types/node/ts4.8/tty.d.ts +208 -0
  2074. package/node_modules/@types/node/ts4.8/url.d.ts +927 -0
  2075. package/node_modules/@types/node/ts4.8/util.d.ts +2183 -0
  2076. package/node_modules/@types/node/ts4.8/v8.d.ts +764 -0
  2077. package/node_modules/@types/node/ts4.8/vm.d.ts +903 -0
  2078. package/node_modules/@types/node/ts4.8/wasi.d.ts +179 -0
  2079. package/node_modules/@types/node/ts4.8/worker_threads.d.ts +691 -0
  2080. package/node_modules/@types/node/ts4.8/zlib.d.ts +517 -0
  2081. package/node_modules/@types/node/tty.d.ts +208 -0
  2082. package/node_modules/@types/node/url.d.ts +927 -0
  2083. package/node_modules/@types/node/util.d.ts +2183 -0
  2084. package/node_modules/@types/node/v8.d.ts +764 -0
  2085. package/node_modules/@types/node/vm.d.ts +903 -0
  2086. package/node_modules/@types/node/wasi.d.ts +179 -0
  2087. package/node_modules/@types/node/worker_threads.d.ts +691 -0
  2088. package/node_modules/@types/node/zlib.d.ts +517 -0
  2089. package/node_modules/@types/stack-utils/LICENSE +21 -0
  2090. package/node_modules/@types/stack-utils/README.md +85 -0
  2091. package/node_modules/@types/stack-utils/index.d.ts +65 -0
  2092. package/node_modules/@types/stack-utils/package.json +25 -0
  2093. package/node_modules/@types/yargs/LICENSE +21 -0
  2094. package/node_modules/@types/yargs/README.md +16 -0
  2095. package/node_modules/@types/yargs/helpers.d.mts +1 -0
  2096. package/node_modules/@types/yargs/helpers.d.ts +5 -0
  2097. package/node_modules/@types/yargs/index.d.mts +43 -0
  2098. package/node_modules/@types/yargs/index.d.ts +906 -0
  2099. package/node_modules/@types/yargs/package.json +94 -0
  2100. package/node_modules/@types/yargs/ts4.1/index.d.ts +857 -0
  2101. package/node_modules/@types/yargs/yargs.d.ts +9 -0
  2102. package/node_modules/@types/yargs-parser/LICENSE +21 -0
  2103. package/node_modules/@types/yargs-parser/README.md +16 -0
  2104. package/node_modules/@types/yargs-parser/index.d.ts +112 -0
  2105. package/node_modules/@types/yargs-parser/package.json +25 -0
  2106. package/package.json +10 -4
  2107. package/src/cache/index.ts +4 -3
  2108. package/src/utils/withNonBusinessDays.test.ts +3 -2
  2109. package/src/utils/withNonBusinessDays.ts +10 -8
@@ -0,0 +1,384 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports._guessExecutionStatusRelativeTo = _guessExecutionStatusRelativeTo;
7
+ exports._resolve = _resolve;
8
+ exports.canHaveVariableDeclarationOrExpression = canHaveVariableDeclarationOrExpression;
9
+ exports.canSwapBetweenExpressionAndStatement = canSwapBetweenExpressionAndStatement;
10
+ exports.equals = equals;
11
+ exports.getSource = getSource;
12
+ exports.has = has;
13
+ exports.is = void 0;
14
+ exports.isCompletionRecord = isCompletionRecord;
15
+ exports.isConstantExpression = isConstantExpression;
16
+ exports.isInStrictMode = isInStrictMode;
17
+ exports.isNodeType = isNodeType;
18
+ exports.isStatementOrBlock = isStatementOrBlock;
19
+ exports.isStatic = isStatic;
20
+ exports.isnt = isnt;
21
+ exports.matchesPattern = matchesPattern;
22
+ exports.referencesImport = referencesImport;
23
+ exports.resolve = resolve;
24
+ exports.willIMaybeExecuteBefore = willIMaybeExecuteBefore;
25
+ var _t = require("@babel/types");
26
+ const {
27
+ STATEMENT_OR_BLOCK_KEYS,
28
+ VISITOR_KEYS,
29
+ isBlockStatement,
30
+ isExpression,
31
+ isIdentifier,
32
+ isLiteral,
33
+ isStringLiteral,
34
+ isType,
35
+ matchesPattern: _matchesPattern
36
+ } = _t;
37
+ function matchesPattern(pattern, allowPartial) {
38
+ return _matchesPattern(this.node, pattern, allowPartial);
39
+ }
40
+ function has(key) {
41
+ const val = this.node && this.node[key];
42
+ if (val && Array.isArray(val)) {
43
+ return !!val.length;
44
+ } else {
45
+ return !!val;
46
+ }
47
+ }
48
+ function isStatic() {
49
+ return this.scope.isStatic(this.node);
50
+ }
51
+ const is = exports.is = has;
52
+ function isnt(key) {
53
+ return !this.has(key);
54
+ }
55
+ function equals(key, value) {
56
+ return this.node[key] === value;
57
+ }
58
+ function isNodeType(type) {
59
+ return isType(this.type, type);
60
+ }
61
+ function canHaveVariableDeclarationOrExpression() {
62
+ return (this.key === "init" || this.key === "left") && this.parentPath.isFor();
63
+ }
64
+ function canSwapBetweenExpressionAndStatement(replacement) {
65
+ if (this.key !== "body" || !this.parentPath.isArrowFunctionExpression()) {
66
+ return false;
67
+ }
68
+ if (this.isExpression()) {
69
+ return isBlockStatement(replacement);
70
+ } else if (this.isBlockStatement()) {
71
+ return isExpression(replacement);
72
+ }
73
+ return false;
74
+ }
75
+ function isCompletionRecord(allowInsideFunction) {
76
+ let path = this;
77
+ let first = true;
78
+ do {
79
+ const {
80
+ type,
81
+ container
82
+ } = path;
83
+ if (!first && (path.isFunction() || type === "StaticBlock")) {
84
+ return !!allowInsideFunction;
85
+ }
86
+ first = false;
87
+ if (Array.isArray(container) && path.key !== container.length - 1) {
88
+ return false;
89
+ }
90
+ } while ((path = path.parentPath) && !path.isProgram() && !path.isDoExpression());
91
+ return true;
92
+ }
93
+ function isStatementOrBlock() {
94
+ if (this.parentPath.isLabeledStatement() || isBlockStatement(this.container)) {
95
+ return false;
96
+ } else {
97
+ return STATEMENT_OR_BLOCK_KEYS.includes(this.key);
98
+ }
99
+ }
100
+ function referencesImport(moduleSource, importName) {
101
+ if (!this.isReferencedIdentifier()) {
102
+ if (this.isJSXMemberExpression() && this.node.property.name === importName || (this.isMemberExpression() || this.isOptionalMemberExpression()) && (this.node.computed ? isStringLiteral(this.node.property, {
103
+ value: importName
104
+ }) : this.node.property.name === importName)) {
105
+ const object = this.get("object");
106
+ return object.isReferencedIdentifier() && object.referencesImport(moduleSource, "*");
107
+ }
108
+ return false;
109
+ }
110
+ const binding = this.scope.getBinding(this.node.name);
111
+ if (!binding || binding.kind !== "module") return false;
112
+ const path = binding.path;
113
+ const parent = path.parentPath;
114
+ if (!parent.isImportDeclaration()) return false;
115
+ if (parent.node.source.value === moduleSource) {
116
+ if (!importName) return true;
117
+ } else {
118
+ return false;
119
+ }
120
+ if (path.isImportDefaultSpecifier() && importName === "default") {
121
+ return true;
122
+ }
123
+ if (path.isImportNamespaceSpecifier() && importName === "*") {
124
+ return true;
125
+ }
126
+ if (path.isImportSpecifier() && isIdentifier(path.node.imported, {
127
+ name: importName
128
+ })) {
129
+ return true;
130
+ }
131
+ return false;
132
+ }
133
+ function getSource() {
134
+ const node = this.node;
135
+ if (node.end) {
136
+ const code = this.hub.getCode();
137
+ if (code) return code.slice(node.start, node.end);
138
+ }
139
+ return "";
140
+ }
141
+ function willIMaybeExecuteBefore(target) {
142
+ return this._guessExecutionStatusRelativeTo(target) !== "after";
143
+ }
144
+ function getOuterFunction(path) {
145
+ return path.isProgram() ? path : (path.parentPath.scope.getFunctionParent() || path.parentPath.scope.getProgramParent()).path;
146
+ }
147
+ function isExecutionUncertain(type, key) {
148
+ switch (type) {
149
+ case "LogicalExpression":
150
+ return key === "right";
151
+ case "ConditionalExpression":
152
+ case "IfStatement":
153
+ return key === "consequent" || key === "alternate";
154
+ case "WhileStatement":
155
+ case "DoWhileStatement":
156
+ case "ForInStatement":
157
+ case "ForOfStatement":
158
+ return key === "body";
159
+ case "ForStatement":
160
+ return key === "body" || key === "update";
161
+ case "SwitchStatement":
162
+ return key === "cases";
163
+ case "TryStatement":
164
+ return key === "handler";
165
+ case "AssignmentPattern":
166
+ return key === "right";
167
+ case "OptionalMemberExpression":
168
+ return key === "property";
169
+ case "OptionalCallExpression":
170
+ return key === "arguments";
171
+ default:
172
+ return false;
173
+ }
174
+ }
175
+ function isExecutionUncertainInList(paths, maxIndex) {
176
+ for (let i = 0; i < maxIndex; i++) {
177
+ const path = paths[i];
178
+ if (isExecutionUncertain(path.parent.type, path.parentKey)) {
179
+ return true;
180
+ }
181
+ }
182
+ return false;
183
+ }
184
+ const SYMBOL_CHECKING = Symbol();
185
+ function _guessExecutionStatusRelativeTo(target) {
186
+ return _guessExecutionStatusRelativeToCached(this, target, new Map());
187
+ }
188
+ function _guessExecutionStatusRelativeToCached(base, target, cache) {
189
+ const funcParent = {
190
+ this: getOuterFunction(base),
191
+ target: getOuterFunction(target)
192
+ };
193
+ if (funcParent.target.node !== funcParent.this.node) {
194
+ return _guessExecutionStatusRelativeToDifferentFunctionsCached(base, funcParent.target, cache);
195
+ }
196
+ const paths = {
197
+ target: target.getAncestry(),
198
+ this: base.getAncestry()
199
+ };
200
+ if (paths.target.indexOf(base) >= 0) return "after";
201
+ if (paths.this.indexOf(target) >= 0) return "before";
202
+ let commonPath;
203
+ const commonIndex = {
204
+ target: 0,
205
+ this: 0
206
+ };
207
+ while (!commonPath && commonIndex.this < paths.this.length) {
208
+ const path = paths.this[commonIndex.this];
209
+ commonIndex.target = paths.target.indexOf(path);
210
+ if (commonIndex.target >= 0) {
211
+ commonPath = path;
212
+ } else {
213
+ commonIndex.this++;
214
+ }
215
+ }
216
+ if (!commonPath) {
217
+ throw new Error("Internal Babel error - The two compared nodes" + " don't appear to belong to the same program.");
218
+ }
219
+ if (isExecutionUncertainInList(paths.this, commonIndex.this - 1) || isExecutionUncertainInList(paths.target, commonIndex.target - 1)) {
220
+ return "unknown";
221
+ }
222
+ const divergence = {
223
+ this: paths.this[commonIndex.this - 1],
224
+ target: paths.target[commonIndex.target - 1]
225
+ };
226
+ if (divergence.target.listKey && divergence.this.listKey && divergence.target.container === divergence.this.container) {
227
+ return divergence.target.key > divergence.this.key ? "before" : "after";
228
+ }
229
+ const keys = VISITOR_KEYS[commonPath.type];
230
+ const keyPosition = {
231
+ this: keys.indexOf(divergence.this.parentKey),
232
+ target: keys.indexOf(divergence.target.parentKey)
233
+ };
234
+ return keyPosition.target > keyPosition.this ? "before" : "after";
235
+ }
236
+ function _guessExecutionStatusRelativeToDifferentFunctionsInternal(base, target, cache) {
237
+ if (!target.isFunctionDeclaration()) {
238
+ if (_guessExecutionStatusRelativeToCached(base, target, cache) === "before") {
239
+ return "before";
240
+ }
241
+ return "unknown";
242
+ } else if (target.parentPath.isExportDeclaration()) {
243
+ return "unknown";
244
+ }
245
+ const binding = target.scope.getBinding(target.node.id.name);
246
+ if (!binding.references) return "before";
247
+ const referencePaths = binding.referencePaths;
248
+ let allStatus;
249
+ for (const path of referencePaths) {
250
+ const childOfFunction = !!path.find(path => path.node === target.node);
251
+ if (childOfFunction) continue;
252
+ if (path.key !== "callee" || !path.parentPath.isCallExpression()) {
253
+ return "unknown";
254
+ }
255
+ const status = _guessExecutionStatusRelativeToCached(base, path, cache);
256
+ if (allStatus && allStatus !== status) {
257
+ return "unknown";
258
+ } else {
259
+ allStatus = status;
260
+ }
261
+ }
262
+ return allStatus;
263
+ }
264
+ function _guessExecutionStatusRelativeToDifferentFunctionsCached(base, target, cache) {
265
+ let nodeMap = cache.get(base.node);
266
+ let cached;
267
+ if (!nodeMap) {
268
+ cache.set(base.node, nodeMap = new Map());
269
+ } else if (cached = nodeMap.get(target.node)) {
270
+ if (cached === SYMBOL_CHECKING) {
271
+ return "unknown";
272
+ }
273
+ return cached;
274
+ }
275
+ nodeMap.set(target.node, SYMBOL_CHECKING);
276
+ const result = _guessExecutionStatusRelativeToDifferentFunctionsInternal(base, target, cache);
277
+ nodeMap.set(target.node, result);
278
+ return result;
279
+ }
280
+ function resolve(dangerous, resolved) {
281
+ return this._resolve(dangerous, resolved) || this;
282
+ }
283
+ function _resolve(dangerous, resolved) {
284
+ if (resolved && resolved.indexOf(this) >= 0) return;
285
+ resolved = resolved || [];
286
+ resolved.push(this);
287
+ if (this.isVariableDeclarator()) {
288
+ if (this.get("id").isIdentifier()) {
289
+ return this.get("init").resolve(dangerous, resolved);
290
+ } else {}
291
+ } else if (this.isReferencedIdentifier()) {
292
+ const binding = this.scope.getBinding(this.node.name);
293
+ if (!binding) return;
294
+ if (!binding.constant) return;
295
+ if (binding.kind === "module") return;
296
+ if (binding.path !== this) {
297
+ const ret = binding.path.resolve(dangerous, resolved);
298
+ if (this.find(parent => parent.node === ret.node)) return;
299
+ return ret;
300
+ }
301
+ } else if (this.isTypeCastExpression()) {
302
+ return this.get("expression").resolve(dangerous, resolved);
303
+ } else if (dangerous && this.isMemberExpression()) {
304
+ const targetKey = this.toComputedKey();
305
+ if (!isLiteral(targetKey)) return;
306
+ const targetName = targetKey.value;
307
+ const target = this.get("object").resolve(dangerous, resolved);
308
+ if (target.isObjectExpression()) {
309
+ const props = target.get("properties");
310
+ for (const prop of props) {
311
+ if (!prop.isProperty()) continue;
312
+ const key = prop.get("key");
313
+ let match = prop.isnt("computed") && key.isIdentifier({
314
+ name: targetName
315
+ });
316
+ match = match || key.isLiteral({
317
+ value: targetName
318
+ });
319
+ if (match) return prop.get("value").resolve(dangerous, resolved);
320
+ }
321
+ } else if (target.isArrayExpression() && !isNaN(+targetName)) {
322
+ const elems = target.get("elements");
323
+ const elem = elems[targetName];
324
+ if (elem) return elem.resolve(dangerous, resolved);
325
+ }
326
+ }
327
+ }
328
+ function isConstantExpression() {
329
+ if (this.isIdentifier()) {
330
+ const binding = this.scope.getBinding(this.node.name);
331
+ if (!binding) return false;
332
+ return binding.constant;
333
+ }
334
+ if (this.isLiteral()) {
335
+ if (this.isRegExpLiteral()) {
336
+ return false;
337
+ }
338
+ if (this.isTemplateLiteral()) {
339
+ return this.get("expressions").every(expression => expression.isConstantExpression());
340
+ }
341
+ return true;
342
+ }
343
+ if (this.isUnaryExpression()) {
344
+ if (this.node.operator !== "void") {
345
+ return false;
346
+ }
347
+ return this.get("argument").isConstantExpression();
348
+ }
349
+ if (this.isBinaryExpression()) {
350
+ const {
351
+ operator
352
+ } = this.node;
353
+ return operator !== "in" && operator !== "instanceof" && this.get("left").isConstantExpression() && this.get("right").isConstantExpression();
354
+ }
355
+ return false;
356
+ }
357
+ function isInStrictMode() {
358
+ const start = this.isProgram() ? this : this.parentPath;
359
+ const strictParent = start.find(path => {
360
+ if (path.isProgram({
361
+ sourceType: "module"
362
+ })) return true;
363
+ if (path.isClass()) return true;
364
+ if (path.isArrowFunctionExpression() && !path.get("body").isBlockStatement()) {
365
+ return false;
366
+ }
367
+ let body;
368
+ if (path.isFunction()) {
369
+ body = path.node.body;
370
+ } else if (path.isProgram()) {
371
+ body = path.node;
372
+ } else {
373
+ return false;
374
+ }
375
+ for (const directive of body.directives) {
376
+ if (directive.value.value === "use strict") {
377
+ return true;
378
+ }
379
+ }
380
+ });
381
+ return !!strictParent;
382
+ }
383
+
384
+ //# sourceMappingURL=introspection.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_t","require","STATEMENT_OR_BLOCK_KEYS","VISITOR_KEYS","isBlockStatement","isExpression","isIdentifier","isLiteral","isStringLiteral","isType","matchesPattern","_matchesPattern","pattern","allowPartial","node","has","key","val","Array","isArray","length","isStatic","scope","is","exports","isnt","equals","value","isNodeType","type","canHaveVariableDeclarationOrExpression","parentPath","isFor","canSwapBetweenExpressionAndStatement","replacement","isArrowFunctionExpression","isCompletionRecord","allowInsideFunction","path","first","container","isFunction","isProgram","isDoExpression","isStatementOrBlock","isLabeledStatement","includes","referencesImport","moduleSource","importName","isReferencedIdentifier","isJSXMemberExpression","property","name","isMemberExpression","isOptionalMemberExpression","computed","object","get","binding","getBinding","kind","parent","isImportDeclaration","source","isImportDefaultSpecifier","isImportNamespaceSpecifier","isImportSpecifier","imported","getSource","end","code","hub","getCode","slice","start","willIMaybeExecuteBefore","target","_guessExecutionStatusRelativeTo","getOuterFunction","getFunctionParent","getProgramParent","isExecutionUncertain","isExecutionUncertainInList","paths","maxIndex","i","parentKey","SYMBOL_CHECKING","Symbol","_guessExecutionStatusRelativeToCached","Map","base","cache","funcParent","this","_guessExecutionStatusRelativeToDifferentFunctionsCached","getAncestry","indexOf","commonPath","commonIndex","Error","divergence","listKey","keys","keyPosition","_guessExecutionStatusRelativeToDifferentFunctionsInternal","isFunctionDeclaration","isExportDeclaration","id","references","referencePaths","allStatus","childOfFunction","find","isCallExpression","status","nodeMap","cached","set","result","resolve","dangerous","resolved","_resolve","push","isVariableDeclarator","constant","ret","isTypeCastExpression","targetKey","toComputedKey","targetName","isObjectExpression","props","prop","isProperty","match","isArrayExpression","isNaN","elems","elem","isConstantExpression","isRegExpLiteral","isTemplateLiteral","every","expression","isUnaryExpression","operator","isBinaryExpression","isInStrictMode","strictParent","sourceType","isClass","body","directive","directives"],"sources":["../../src/path/introspection.ts"],"sourcesContent":["// This file contains methods responsible for introspecting the current path for certain values.\n\nimport type NodePath from \"./index.ts\";\nimport {\n STATEMENT_OR_BLOCK_KEYS,\n VISITOR_KEYS,\n isBlockStatement,\n isExpression,\n isIdentifier,\n isLiteral,\n isStringLiteral,\n isType,\n matchesPattern as _matchesPattern,\n} from \"@babel/types\";\nimport type * as t from \"@babel/types\";\n\n/**\n * Match the current node if it matches the provided `pattern`.\n *\n * For example, given the match `React.createClass` it would match the\n * parsed nodes of `React.createClass` and `React[\"createClass\"]`.\n */\n\nexport function matchesPattern(\n this: NodePath,\n pattern: string,\n allowPartial?: boolean,\n): boolean {\n return _matchesPattern(this.node, pattern, allowPartial);\n}\n\n/**\n * Check whether we have the input `key`. If the `key` references an array then we check\n * if the array has any items, otherwise we just check if it's falsy.\n */\n\nexport function has<N extends t.Node>(\n this: NodePath<N>,\n key: keyof N,\n): boolean {\n const val = this.node && this.node[key];\n if (val && Array.isArray(val)) {\n return !!val.length;\n } else {\n return !!val;\n }\n}\n\n/**\n * Description\n */\n\nexport function isStatic(this: NodePath): boolean {\n return this.scope.isStatic(this.node);\n}\n\n/**\n * Alias of `has`.\n */\n\nexport const is = has;\n\n/**\n * Opposite of `has`.\n */\n\nexport function isnt<N extends t.Node>(\n this: NodePath<N>,\n key: keyof N,\n): boolean {\n return !this.has(key);\n}\n\n/**\n * Check whether the path node `key` strict equals `value`.\n */\n\nexport function equals<N extends t.Node>(\n this: NodePath<N>,\n key: keyof N,\n value: any,\n): boolean {\n return this.node[key] === value;\n}\n\n/**\n * Check the type against our stored internal type of the node. This is handy when a node has\n * been removed yet we still internally know the type and need it to calculate node replacement.\n */\n\nexport function isNodeType(this: NodePath, type: string): boolean {\n return isType(this.type, type);\n}\n\n/**\n * This checks whether or not we're in one of the following positions:\n *\n * for (KEY in right);\n * for (KEY;;);\n *\n * This is because these spots allow VariableDeclarations AND normal expressions so we need\n * to tell the path replacement that it's ok to replace this with an expression.\n */\n\nexport function canHaveVariableDeclarationOrExpression(this: NodePath) {\n return (\n (this.key === \"init\" || this.key === \"left\") && this.parentPath.isFor()\n );\n}\n\n/**\n * This checks whether we are swapping an arrow function's body between an\n * expression and a block statement (or vice versa).\n *\n * This is because arrow functions may implicitly return an expression, which\n * is the same as containing a block statement.\n */\n\nexport function canSwapBetweenExpressionAndStatement(\n this: NodePath,\n replacement: t.Node,\n): boolean {\n if (this.key !== \"body\" || !this.parentPath.isArrowFunctionExpression()) {\n return false;\n }\n\n if (this.isExpression()) {\n return isBlockStatement(replacement);\n } else if (this.isBlockStatement()) {\n return isExpression(replacement);\n }\n\n return false;\n}\n\n/**\n * Check whether the current path references a completion record\n */\n\nexport function isCompletionRecord(\n this: NodePath,\n allowInsideFunction?: boolean,\n): boolean {\n let path = this;\n let first = true;\n\n do {\n const { type, container } = path;\n\n // we're in a function so can't be a completion record\n if (!first && (path.isFunction() || type === \"StaticBlock\")) {\n return !!allowInsideFunction;\n }\n\n first = false;\n\n // check to see if we're the last item in the container and if we are\n // we're a completion record!\n if (Array.isArray(container) && path.key !== container.length - 1) {\n return false;\n }\n } while (\n (path = path.parentPath) &&\n !path.isProgram() &&\n !path.isDoExpression()\n );\n\n return true;\n}\n\n/**\n * Check whether or not the current `key` allows either a single statement or block statement\n * so we can explode it if necessary.\n */\n\nexport function isStatementOrBlock(this: NodePath): boolean {\n if (\n this.parentPath.isLabeledStatement() ||\n isBlockStatement(this.container as t.Node)\n ) {\n return false;\n } else {\n return STATEMENT_OR_BLOCK_KEYS.includes(this.key as string);\n }\n}\n\n/**\n * Check if the currently assigned path references the `importName` of `moduleSource`.\n */\n\nexport function referencesImport(\n this: NodePath,\n moduleSource: string,\n importName: string,\n): boolean {\n if (!this.isReferencedIdentifier()) {\n if (\n (this.isJSXMemberExpression() &&\n this.node.property.name === importName) ||\n ((this.isMemberExpression() || this.isOptionalMemberExpression()) &&\n (this.node.computed\n ? isStringLiteral(this.node.property, { value: importName })\n : (this.node.property as t.Identifier).name === importName))\n ) {\n const object = (\n this as NodePath<t.MemberExpression | t.OptionalMemberExpression>\n ).get(\"object\");\n return (\n object.isReferencedIdentifier() &&\n object.referencesImport(moduleSource, \"*\")\n );\n }\n\n return false;\n }\n\n const binding = this.scope.getBinding((this.node as t.Identifier).name);\n if (!binding || binding.kind !== \"module\") return false;\n\n const path = binding.path;\n const parent = path.parentPath;\n if (!parent.isImportDeclaration()) return false;\n\n // check moduleSource\n if (parent.node.source.value === moduleSource) {\n if (!importName) return true;\n } else {\n return false;\n }\n\n if (path.isImportDefaultSpecifier() && importName === \"default\") {\n return true;\n }\n\n if (path.isImportNamespaceSpecifier() && importName === \"*\") {\n return true;\n }\n\n if (\n path.isImportSpecifier() &&\n isIdentifier(path.node.imported, { name: importName })\n ) {\n return true;\n }\n\n return false;\n}\n\n/**\n * Get the source code associated with this node.\n */\n\nexport function getSource(this: NodePath): string {\n const node = this.node;\n if (node.end) {\n const code = this.hub.getCode();\n if (code) return code.slice(node.start, node.end);\n }\n return \"\";\n}\n\nexport function willIMaybeExecuteBefore(\n this: NodePath,\n target: NodePath,\n): boolean {\n return this._guessExecutionStatusRelativeTo(target) !== \"after\";\n}\n\nfunction getOuterFunction(path: NodePath) {\n return path.isProgram()\n ? path\n : (\n path.parentPath.scope.getFunctionParent() ||\n path.parentPath.scope.getProgramParent()\n ).path;\n}\n\nfunction isExecutionUncertain(type: t.Node[\"type\"], key: string) {\n switch (type) {\n // a && FOO\n // a || FOO\n case \"LogicalExpression\":\n return key === \"right\";\n\n // a ? FOO : FOO\n // if (a) FOO; else FOO;\n case \"ConditionalExpression\":\n case \"IfStatement\":\n return key === \"consequent\" || key === \"alternate\";\n\n // while (a) FOO;\n case \"WhileStatement\":\n case \"DoWhileStatement\":\n case \"ForInStatement\":\n case \"ForOfStatement\":\n return key === \"body\";\n\n // for (a; b; FOO) FOO;\n case \"ForStatement\":\n return key === \"body\" || key === \"update\";\n\n // switch (a) { FOO }\n case \"SwitchStatement\":\n return key === \"cases\";\n\n // try { a } catch FOO finally { b }\n case \"TryStatement\":\n return key === \"handler\";\n\n // var [ x = FOO ]\n case \"AssignmentPattern\":\n return key === \"right\";\n\n // a?.[FOO]\n case \"OptionalMemberExpression\":\n return key === \"property\";\n\n // a?.(FOO)\n case \"OptionalCallExpression\":\n return key === \"arguments\";\n\n default:\n return false;\n }\n}\n\nfunction isExecutionUncertainInList(paths: NodePath[], maxIndex: number) {\n for (let i = 0; i < maxIndex; i++) {\n const path = paths[i];\n if (isExecutionUncertain(path.parent.type, path.parentKey)) {\n return true;\n }\n }\n return false;\n}\n\n// TODO(Babel 8)\n// This can be { before: boolean, after: boolean, unknown: boolean }.\n// This allows transforms like the tdz one to treat cases when the status\n// is both before and unknown/after like if it were before.\ntype RelativeExecutionStatus = \"before\" | \"after\" | \"unknown\";\n\n// Used to avoid infinite recursion in cases like\n// function f() { if (false) f(); }\n// f();\n// It also works with indirect recursion.\nconst SYMBOL_CHECKING = Symbol();\n\ntype ExecutionStatusCache = Map<\n t.Node,\n Map<t.Node, RelativeExecutionStatus | typeof SYMBOL_CHECKING>\n>;\n\n/**\n * Given a `target` check the execution status of it relative to the current path.\n *\n * \"Execution status\" simply refers to where or not we **think** this will execute\n * before or after the input `target` element.\n */\n\nexport function _guessExecutionStatusRelativeTo(\n this: NodePath,\n target: NodePath,\n): RelativeExecutionStatus {\n return _guessExecutionStatusRelativeToCached(this, target, new Map());\n}\n\nfunction _guessExecutionStatusRelativeToCached(\n base: NodePath,\n target: NodePath,\n cache: ExecutionStatusCache,\n): RelativeExecutionStatus {\n // check if the two paths are in different functions, we can't track execution of these\n const funcParent = {\n this: getOuterFunction(base),\n target: getOuterFunction(target),\n };\n\n // here we check the `node` equality as sometimes we may have different paths for the\n // same node due to path thrashing\n if (funcParent.target.node !== funcParent.this.node) {\n return _guessExecutionStatusRelativeToDifferentFunctionsCached(\n base,\n funcParent.target,\n cache,\n );\n }\n\n const paths = {\n target: target.getAncestry(),\n this: base.getAncestry(),\n };\n\n // If this is an ancestor of the target path,\n // e.g. f(g); where this is f and target is g.\n if (paths.target.indexOf(base) >= 0) return \"after\";\n if (paths.this.indexOf(target) >= 0) return \"before\";\n\n // get ancestor where the branches intersect\n let commonPath;\n const commonIndex = { target: 0, this: 0 };\n\n while (!commonPath && commonIndex.this < paths.this.length) {\n const path = paths.this[commonIndex.this];\n commonIndex.target = paths.target.indexOf(path);\n if (commonIndex.target >= 0) {\n commonPath = path;\n } else {\n commonIndex.this++;\n }\n }\n\n if (!commonPath) {\n throw new Error(\n \"Internal Babel error - The two compared nodes\" +\n \" don't appear to belong to the same program.\",\n );\n }\n\n if (\n isExecutionUncertainInList(paths.this, commonIndex.this - 1) ||\n isExecutionUncertainInList(paths.target, commonIndex.target - 1)\n ) {\n return \"unknown\";\n }\n\n const divergence = {\n this: paths.this[commonIndex.this - 1],\n target: paths.target[commonIndex.target - 1],\n };\n\n // container list so let's see which one is after the other\n // e.g. [ THIS, TARGET ]\n if (\n divergence.target.listKey &&\n divergence.this.listKey &&\n divergence.target.container === divergence.this.container\n ) {\n return divergence.target.key > divergence.this.key ? \"before\" : \"after\";\n }\n\n // otherwise we're associated by a parent node, check which key comes before the other\n const keys = VISITOR_KEYS[commonPath.type];\n const keyPosition = {\n this: keys.indexOf(divergence.this.parentKey),\n target: keys.indexOf(divergence.target.parentKey),\n };\n return keyPosition.target > keyPosition.this ? \"before\" : \"after\";\n}\n\nfunction _guessExecutionStatusRelativeToDifferentFunctionsInternal(\n base: NodePath,\n target: NodePath,\n cache: ExecutionStatusCache,\n): RelativeExecutionStatus {\n if (!target.isFunctionDeclaration()) {\n if (\n _guessExecutionStatusRelativeToCached(base, target, cache) === \"before\"\n ) {\n return \"before\";\n }\n return \"unknown\";\n } else if (target.parentPath.isExportDeclaration()) {\n return \"unknown\";\n }\n\n // so we're in a completely different function, if this is a function declaration\n // then we can be a bit smarter and handle cases where the function is either\n // a. not called at all (part of an export)\n // b. called directly\n const binding = target.scope.getBinding(target.node.id.name);\n\n // no references!\n if (!binding.references) return \"before\";\n\n const referencePaths: Array<NodePath> = binding.referencePaths;\n\n let allStatus;\n\n // verify that all the calls have the same execution status\n for (const path of referencePaths) {\n // if a reference is a child of the function we're checking against then we can\n // safely ignore it\n const childOfFunction = !!path.find(path => path.node === target.node);\n if (childOfFunction) continue;\n\n if (path.key !== \"callee\" || !path.parentPath.isCallExpression()) {\n // This function is passed as a reference, so we don't\n // know when it will be called.\n return \"unknown\";\n }\n\n const status = _guessExecutionStatusRelativeToCached(base, path, cache);\n\n if (allStatus && allStatus !== status) {\n return \"unknown\";\n } else {\n allStatus = status;\n }\n }\n\n return allStatus;\n}\n\nfunction _guessExecutionStatusRelativeToDifferentFunctionsCached(\n base: NodePath,\n target: NodePath,\n cache: ExecutionStatusCache,\n): RelativeExecutionStatus {\n let nodeMap = cache.get(base.node);\n let cached;\n\n if (!nodeMap) {\n cache.set(base.node, (nodeMap = new Map()));\n } else if ((cached = nodeMap.get(target.node))) {\n if (cached === SYMBOL_CHECKING) {\n return \"unknown\";\n }\n return cached;\n }\n\n nodeMap.set(target.node, SYMBOL_CHECKING);\n\n const result = _guessExecutionStatusRelativeToDifferentFunctionsInternal(\n base,\n target,\n cache,\n );\n\n nodeMap.set(target.node, result);\n return result;\n}\n\n/**\n * Resolve a \"pointer\" `NodePath` to it's absolute path.\n */\nexport function resolve(\n this: NodePath,\n dangerous?: boolean,\n resolved?: NodePath[],\n) {\n return this._resolve(dangerous, resolved) || this;\n}\n\nexport function _resolve(\n this: NodePath,\n dangerous?: boolean,\n resolved?: NodePath[],\n): NodePath | undefined | null {\n // detect infinite recursion\n // todo: possibly have a max length on this just to be safe\n if (resolved && resolved.indexOf(this) >= 0) return;\n\n // we store all the paths we've \"resolved\" in this array to prevent infinite recursion\n resolved = resolved || [];\n resolved.push(this);\n\n if (this.isVariableDeclarator()) {\n if (this.get(\"id\").isIdentifier()) {\n return this.get(\"init\").resolve(dangerous, resolved);\n } else {\n // otherwise it's a request for a pattern and that's a bit more tricky\n }\n } else if (this.isReferencedIdentifier()) {\n const binding = this.scope.getBinding(this.node.name);\n if (!binding) return;\n\n // reassigned so we can't really resolve it\n if (!binding.constant) return;\n\n // todo - lookup module in dependency graph\n if (binding.kind === \"module\") return;\n\n if (binding.path !== this) {\n const ret = binding.path.resolve(dangerous, resolved);\n // If the identifier resolves to parent node then we can't really resolve it.\n if (this.find(parent => parent.node === ret.node)) return;\n return ret;\n }\n } else if (this.isTypeCastExpression()) {\n // @ ts-ignore todo: babel-types\n return this.get(\"expression\").resolve(dangerous, resolved);\n } else if (dangerous && this.isMemberExpression()) {\n // this is dangerous, as non-direct target assignments will mutate it's state\n // making this resolution inaccurate\n\n const targetKey = this.toComputedKey();\n if (!isLiteral(targetKey)) return;\n\n // @ts-expect-error todo(flow->ts): NullLiteral\n const targetName = targetKey.value;\n\n const target = this.get(\"object\").resolve(dangerous, resolved);\n\n if (target.isObjectExpression()) {\n const props = target.get(\"properties\");\n for (const prop of props as any[]) {\n if (!prop.isProperty()) continue;\n\n const key = prop.get(\"key\");\n\n // { foo: obj }\n let match =\n prop.isnt(\"computed\") && key.isIdentifier({ name: targetName });\n\n // { \"foo\": \"obj\" } or { [\"foo\"]: \"obj\" }\n match = match || key.isLiteral({ value: targetName });\n\n if (match) return prop.get(\"value\").resolve(dangerous, resolved);\n }\n } else if (target.isArrayExpression() && !isNaN(+targetName)) {\n const elems = target.get(\"elements\");\n const elem = elems[targetName];\n if (elem) return elem.resolve(dangerous, resolved);\n }\n }\n}\n\nexport function isConstantExpression(this: NodePath): boolean {\n if (this.isIdentifier()) {\n const binding = this.scope.getBinding(this.node.name);\n if (!binding) return false;\n return binding.constant;\n }\n\n if (this.isLiteral()) {\n if (this.isRegExpLiteral()) {\n return false;\n }\n\n if (this.isTemplateLiteral()) {\n return this.get(\"expressions\").every(expression =>\n expression.isConstantExpression(),\n );\n }\n\n return true;\n }\n\n if (this.isUnaryExpression()) {\n if (this.node.operator !== \"void\") {\n return false;\n }\n\n return this.get(\"argument\").isConstantExpression();\n }\n\n if (this.isBinaryExpression()) {\n const { operator } = this.node;\n return (\n operator !== \"in\" &&\n operator !== \"instanceof\" &&\n this.get(\"left\").isConstantExpression() &&\n this.get(\"right\").isConstantExpression()\n );\n }\n\n return false;\n}\n\nexport function isInStrictMode(this: NodePath) {\n const start = this.isProgram() ? this : this.parentPath;\n\n const strictParent = start.find(path => {\n if (path.isProgram({ sourceType: \"module\" })) return true;\n\n if (path.isClass()) return true;\n\n if (\n path.isArrowFunctionExpression() &&\n !path.get(\"body\").isBlockStatement()\n ) {\n return false;\n }\n\n let body: t.BlockStatement | t.Program;\n if (path.isFunction()) {\n body = path.node.body as t.BlockStatement;\n } else if (path.isProgram()) {\n body = path.node;\n } else {\n return false;\n }\n\n for (const directive of body.directives) {\n if (directive.value.value === \"use strict\") {\n return true;\n }\n }\n });\n\n return !!strictParent;\n}\n"],"mappings":"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"}
@@ -0,0 +1,171 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _t = require("@babel/types");
8
+ var _t2 = _t;
9
+ const {
10
+ react
11
+ } = _t;
12
+ const {
13
+ cloneNode,
14
+ jsxExpressionContainer,
15
+ variableDeclaration,
16
+ variableDeclarator
17
+ } = _t2;
18
+ const referenceVisitor = {
19
+ ReferencedIdentifier(path, state) {
20
+ if (path.isJSXIdentifier() && react.isCompatTag(path.node.name) && !path.parentPath.isJSXMemberExpression()) {
21
+ return;
22
+ }
23
+ if (path.node.name === "this") {
24
+ let scope = path.scope;
25
+ do {
26
+ if (scope.path.isFunction() && !scope.path.isArrowFunctionExpression()) {
27
+ break;
28
+ }
29
+ } while (scope = scope.parent);
30
+ if (scope) state.breakOnScopePaths.push(scope.path);
31
+ }
32
+ const binding = path.scope.getBinding(path.node.name);
33
+ if (!binding) return;
34
+ for (const violation of binding.constantViolations) {
35
+ if (violation.scope !== binding.path.scope) {
36
+ state.mutableBinding = true;
37
+ path.stop();
38
+ return;
39
+ }
40
+ }
41
+ if (binding !== state.scope.getBinding(path.node.name)) return;
42
+ state.bindings[path.node.name] = binding;
43
+ }
44
+ };
45
+ class PathHoister {
46
+ constructor(path, scope) {
47
+ this.breakOnScopePaths = void 0;
48
+ this.bindings = void 0;
49
+ this.mutableBinding = void 0;
50
+ this.scopes = void 0;
51
+ this.scope = void 0;
52
+ this.path = void 0;
53
+ this.attachAfter = void 0;
54
+ this.breakOnScopePaths = [];
55
+ this.bindings = {};
56
+ this.mutableBinding = false;
57
+ this.scopes = [];
58
+ this.scope = scope;
59
+ this.path = path;
60
+ this.attachAfter = false;
61
+ }
62
+ isCompatibleScope(scope) {
63
+ for (const key of Object.keys(this.bindings)) {
64
+ const binding = this.bindings[key];
65
+ if (!scope.bindingIdentifierEquals(key, binding.identifier)) {
66
+ return false;
67
+ }
68
+ }
69
+ return true;
70
+ }
71
+ getCompatibleScopes() {
72
+ let scope = this.path.scope;
73
+ do {
74
+ if (this.isCompatibleScope(scope)) {
75
+ this.scopes.push(scope);
76
+ } else {
77
+ break;
78
+ }
79
+ if (this.breakOnScopePaths.indexOf(scope.path) >= 0) {
80
+ break;
81
+ }
82
+ } while (scope = scope.parent);
83
+ }
84
+ getAttachmentPath() {
85
+ let path = this._getAttachmentPath();
86
+ if (!path) return;
87
+ let targetScope = path.scope;
88
+ if (targetScope.path === path) {
89
+ targetScope = path.scope.parent;
90
+ }
91
+ if (targetScope.path.isProgram() || targetScope.path.isFunction()) {
92
+ for (const name of Object.keys(this.bindings)) {
93
+ if (!targetScope.hasOwnBinding(name)) continue;
94
+ const binding = this.bindings[name];
95
+ if (binding.kind === "param" || binding.path.parentKey === "params") {
96
+ continue;
97
+ }
98
+ const bindingParentPath = this.getAttachmentParentForPath(binding.path);
99
+ if (bindingParentPath.key >= path.key) {
100
+ this.attachAfter = true;
101
+ path = binding.path;
102
+ for (const violationPath of binding.constantViolations) {
103
+ if (this.getAttachmentParentForPath(violationPath).key > path.key) {
104
+ path = violationPath;
105
+ }
106
+ }
107
+ }
108
+ }
109
+ }
110
+ return path;
111
+ }
112
+ _getAttachmentPath() {
113
+ const scopes = this.scopes;
114
+ const scope = scopes.pop();
115
+ if (!scope) return;
116
+ if (scope.path.isFunction()) {
117
+ if (this.hasOwnParamBindings(scope)) {
118
+ if (this.scope === scope) return;
119
+ const bodies = scope.path.get("body").get("body");
120
+ for (let i = 0; i < bodies.length; i++) {
121
+ if (bodies[i].node._blockHoist) continue;
122
+ return bodies[i];
123
+ }
124
+ } else {
125
+ return this.getNextScopeAttachmentParent();
126
+ }
127
+ } else if (scope.path.isProgram()) {
128
+ return this.getNextScopeAttachmentParent();
129
+ }
130
+ }
131
+ getNextScopeAttachmentParent() {
132
+ const scope = this.scopes.pop();
133
+ if (scope) return this.getAttachmentParentForPath(scope.path);
134
+ }
135
+ getAttachmentParentForPath(path) {
136
+ do {
137
+ if (!path.parentPath || Array.isArray(path.container) && path.isStatement()) {
138
+ return path;
139
+ }
140
+ } while (path = path.parentPath);
141
+ }
142
+ hasOwnParamBindings(scope) {
143
+ for (const name of Object.keys(this.bindings)) {
144
+ if (!scope.hasOwnBinding(name)) continue;
145
+ const binding = this.bindings[name];
146
+ if (binding.kind === "param" && binding.constant) return true;
147
+ }
148
+ return false;
149
+ }
150
+ run() {
151
+ this.path.traverse(referenceVisitor, this);
152
+ if (this.mutableBinding) return;
153
+ this.getCompatibleScopes();
154
+ const attachTo = this.getAttachmentPath();
155
+ if (!attachTo) return;
156
+ if (attachTo.getFunctionParent() === this.path.getFunctionParent()) return;
157
+ let uid = attachTo.scope.generateUidIdentifier("ref");
158
+ const declarator = variableDeclarator(uid, this.path.node);
159
+ const insertFn = this.attachAfter ? "insertAfter" : "insertBefore";
160
+ const [attached] = attachTo[insertFn]([attachTo.isVariableDeclarator() ? declarator : variableDeclaration("var", [declarator])]);
161
+ const parent = this.path.parentPath;
162
+ if (parent.isJSXElement() && this.path.container === parent.node.children) {
163
+ uid = jsxExpressionContainer(uid);
164
+ }
165
+ this.path.replaceWith(cloneNode(uid));
166
+ return attachTo.isVariableDeclarator() ? attached.get("init") : attached.get("declarations.0.init");
167
+ }
168
+ }
169
+ exports.default = PathHoister;
170
+
171
+ //# sourceMappingURL=hoister.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_t","require","_t2","react","cloneNode","jsxExpressionContainer","variableDeclaration","variableDeclarator","referenceVisitor","ReferencedIdentifier","path","state","isJSXIdentifier","isCompatTag","node","name","parentPath","isJSXMemberExpression","scope","isFunction","isArrowFunctionExpression","parent","breakOnScopePaths","push","binding","getBinding","violation","constantViolations","mutableBinding","stop","bindings","PathHoister","constructor","scopes","attachAfter","isCompatibleScope","key","Object","keys","bindingIdentifierEquals","identifier","getCompatibleScopes","indexOf","getAttachmentPath","_getAttachmentPath","targetScope","isProgram","hasOwnBinding","kind","parentKey","bindingParentPath","getAttachmentParentForPath","violationPath","pop","hasOwnParamBindings","bodies","get","i","length","_blockHoist","getNextScopeAttachmentParent","Array","isArray","container","isStatement","constant","run","traverse","attachTo","getFunctionParent","uid","generateUidIdentifier","declarator","insertFn","attached","isVariableDeclarator","isJSXElement","children","replaceWith","exports","default"],"sources":["../../../src/path/lib/hoister.ts"],"sourcesContent":["import { react } from \"@babel/types\";\nimport {\n cloneNode,\n jsxExpressionContainer,\n variableDeclaration,\n variableDeclarator,\n} from \"@babel/types\";\nimport type * as t from \"@babel/types\";\nimport type Scope from \"../../scope/index.ts\";\nimport type NodePath from \"../index.ts\";\nimport type Binding from \"../../scope/binding.ts\";\nimport type { Visitor } from \"../../types.ts\";\n\nconst referenceVisitor: Visitor<PathHoister> = {\n // This visitor looks for bindings to establish a topmost scope for hoisting.\n ReferencedIdentifier(path, state) {\n // Don't hoist regular JSX identifiers ('div', 'span', etc).\n // We do have to consider member expressions for hoisting (e.g. `this.component`)\n if (\n path.isJSXIdentifier() &&\n react.isCompatTag(path.node.name) &&\n !path.parentPath.isJSXMemberExpression()\n ) {\n return;\n }\n\n // If the identifier refers to `this`, we need to break on the closest non-arrow scope.\n if (path.node.name === \"this\") {\n let scope = path.scope;\n do {\n if (\n scope.path.isFunction() &&\n !scope.path.isArrowFunctionExpression()\n ) {\n break;\n }\n } while ((scope = scope.parent));\n if (scope) state.breakOnScopePaths.push(scope.path);\n }\n\n // direct references that we need to track to hoist this to the highest scope we can\n const binding = path.scope.getBinding(path.node.name);\n if (!binding) return;\n\n // we can handle reassignments only if they happen in the same scope as the declaration\n for (const violation of binding.constantViolations) {\n if (violation.scope !== binding.path.scope) {\n state.mutableBinding = true;\n path.stop();\n return;\n }\n }\n\n // this binding isn't accessible from the parent scope so we can safely ignore it\n // eg. it's in a closure etc\n if (binding !== state.scope.getBinding(path.node.name)) return;\n\n state.bindings[path.node.name] = binding;\n },\n};\n\nexport default class PathHoister<T extends t.Node = t.Node> {\n breakOnScopePaths: NodePath[];\n bindings: { [k: string]: Binding };\n mutableBinding: boolean;\n private scopes: Scope[];\n scope: Scope;\n private path: NodePath<T>;\n private attachAfter: boolean;\n\n constructor(path: NodePath<T>, scope: Scope) {\n // Storage for scopes we can't hoist above.\n this.breakOnScopePaths = [];\n // Storage for bindings that may affect what path we can hoist to.\n this.bindings = {};\n // \"true\" if the current path contains a reference to a binding whose\n // value can change and thus can't be safely hoisted.\n this.mutableBinding = false;\n // Storage for eligible scopes.\n this.scopes = [];\n // Our original scope and path.\n this.scope = scope;\n this.path = path;\n // By default, we attach as far up as we can; but if we're trying\n // to avoid referencing a binding, we may have to go after.\n this.attachAfter = false;\n }\n\n // A scope is compatible if all required bindings are reachable.\n isCompatibleScope(scope: Scope) {\n for (const key of Object.keys(this.bindings)) {\n const binding = this.bindings[key];\n if (!scope.bindingIdentifierEquals(key, binding.identifier)) {\n return false;\n }\n }\n\n return true;\n }\n\n // Look through all scopes and push compatible ones.\n getCompatibleScopes() {\n let scope = this.path.scope;\n do {\n if (this.isCompatibleScope(scope)) {\n this.scopes.push(scope);\n } else {\n break;\n }\n\n // deopt: These scopes are set in the visitor on const violations\n if (this.breakOnScopePaths.indexOf(scope.path) >= 0) {\n break;\n }\n } while ((scope = scope.parent));\n }\n\n getAttachmentPath() {\n let path = this._getAttachmentPath();\n if (!path) return;\n\n let targetScope = path.scope;\n\n // don't allow paths that have their own lexical environments to pollute\n if (targetScope.path === path) {\n targetScope = path.scope.parent;\n }\n\n // avoid hoisting to a scope that contains bindings that are executed after our attachment path\n if (targetScope.path.isProgram() || targetScope.path.isFunction()) {\n for (const name of Object.keys(this.bindings)) {\n // check binding is a direct child of this paths scope\n if (!targetScope.hasOwnBinding(name)) continue;\n\n const binding = this.bindings[name];\n\n // allow parameter references and expressions in params (like destructuring rest)\n if (binding.kind === \"param\" || binding.path.parentKey === \"params\") {\n continue;\n }\n\n // For each binding, get its attachment parent. This gives us an idea of where we might\n // introduce conflicts.\n const bindingParentPath = this.getAttachmentParentForPath(binding.path);\n\n // If the binding's attachment appears at or after our attachment point, then we move after it.\n if (bindingParentPath.key >= path.key) {\n this.attachAfter = true;\n path = binding.path;\n\n // We also move past any constant violations.\n for (const violationPath of binding.constantViolations) {\n if (this.getAttachmentParentForPath(violationPath).key > path.key) {\n path = violationPath;\n }\n }\n }\n }\n }\n\n return path;\n }\n\n _getAttachmentPath() {\n const scopes = this.scopes;\n\n const scope = scopes.pop();\n // deopt: no compatible scopes\n if (!scope) return;\n\n if (scope.path.isFunction()) {\n if (this.hasOwnParamBindings(scope)) {\n // deopt: should ignore this scope since it's ourselves\n if (this.scope === scope) return;\n\n // needs to be attached to the body\n const bodies = scope.path.get(\"body\").get(\"body\") as NodePath[];\n for (let i = 0; i < bodies.length; i++) {\n // Don't attach to something that's going to get hoisted,\n // like a default parameter\n // @ts-expect-error todo(flow->ts): avoid mutating the node, introducing new fields\n if (bodies[i].node._blockHoist) continue;\n return bodies[i];\n }\n // deopt: If here, no attachment path found\n } else {\n // doesn't need to be be attached to this scope\n return this.getNextScopeAttachmentParent();\n }\n } else if (scope.path.isProgram()) {\n return this.getNextScopeAttachmentParent();\n }\n }\n\n getNextScopeAttachmentParent() {\n const scope = this.scopes.pop();\n if (scope) return this.getAttachmentParentForPath(scope.path);\n }\n\n // Find an attachment for this path.\n getAttachmentParentForPath(path: NodePath) {\n do {\n if (\n // Beginning of the scope\n !path.parentPath ||\n // Has siblings and is a statement\n (Array.isArray(path.container) && path.isStatement())\n ) {\n return path;\n }\n } while ((path = path.parentPath));\n }\n\n // Returns true if a scope has param bindings.\n hasOwnParamBindings(scope: Scope) {\n for (const name of Object.keys(this.bindings)) {\n if (!scope.hasOwnBinding(name)) continue;\n\n const binding = this.bindings[name];\n // Ensure constant; without it we could place behind a reassignment\n if (binding.kind === \"param\" && binding.constant) return true;\n }\n return false;\n }\n\n run(): NodePath<t.Expression> | undefined {\n this.path.traverse(referenceVisitor, this);\n\n if (this.mutableBinding) return;\n\n this.getCompatibleScopes();\n\n const attachTo = this.getAttachmentPath();\n if (!attachTo) return;\n\n // don't bother hoisting to the same function as this will cause multiple branches to be\n // evaluated more than once leading to a bad optimisation\n if (attachTo.getFunctionParent() === this.path.getFunctionParent()) return;\n\n // generate declaration and insert it to our point\n let uid: t.Identifier | t.JSXExpressionContainer =\n attachTo.scope.generateUidIdentifier(\"ref\");\n\n // @ts-expect-error todo(flow->ts): more specific type for this.path\n const declarator = variableDeclarator(uid, this.path.node);\n\n const insertFn = this.attachAfter ? \"insertAfter\" : \"insertBefore\";\n const [attached] = attachTo[insertFn]([\n attachTo.isVariableDeclarator()\n ? declarator\n : variableDeclaration(\"var\", [declarator]),\n ]);\n\n const parent = this.path.parentPath;\n if (parent.isJSXElement() && this.path.container === parent.node.children) {\n // turning the `span` in `<div><span /></div>` to an expression so we need to wrap it with\n // an expression container\n uid = jsxExpressionContainer(uid);\n }\n\n this.path.replaceWith(cloneNode(uid));\n\n return attachTo.isVariableDeclarator()\n ? attached.get(\"init\")\n : attached.get(\"declarations.0.init\");\n }\n}\n"],"mappings":"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"}