@alanszp/business-days-date-fns 9.0.0 → 10.0.1

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 +15 -9
  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 @@
1
+ {"version":3,"names":["_t","require","_modules","_types2","isDeclareExportDeclaration","isStatement","AnyTypeAnnotation","word","ArrayTypeAnnotation","node","print","elementType","token","BooleanTypeAnnotation","BooleanLiteralTypeAnnotation","value","NullLiteralTypeAnnotation","DeclareClass","parent","space","_interfaceish","DeclareFunction","id","typeAnnotation","predicate","semicolon","InferredPredicate","DeclaredPredicate","DeclareInterface","InterfaceDeclaration","DeclareModule","body","DeclareModuleExports","DeclareTypeAlias","TypeAlias","DeclareOpaqueType","OpaqueType","DeclareVariable","DeclareExportDeclaration","default","FlowExportDeclaration","call","DeclareExportAllDeclaration","ExportAllDeclaration","EnumDeclaration","enumExplicitType","context","name","hasExplicitType","enumBody","members","indent","newline","member","hasUnknownMembers","dedent","EnumBooleanBody","explicitType","EnumNumberBody","EnumStringBody","EnumSymbolBody","EnumDefaultedMember","enumInitializedMember","init","EnumBooleanMember","EnumNumberMember","EnumStringMember","declaration","declar","specifiers","length","printList","source","ExistsTypeAnnotation","FunctionTypeAnnotation","typeParameters","this","params","rest","type","method","returnType","FunctionTypeParam","optional","InterfaceExtends","_node$extends","extends","_node$mixins","_node$implements","mixins","implements","_variance","_node$variance","kind","variance","andSeparator","InterfaceTypeAnnotation","_node$extends2","IntersectionTypeAnnotation","printJoin","types","separator","MixedTypeAnnotation","EmptyTypeAnnotation","NullableTypeAnnotation","NumberTypeAnnotation","StringTypeAnnotation","ThisTypeAnnotation","TupleTypeAnnotation","TypeofTypeAnnotation","argument","right","TypeAnnotation","TypeParameterInstantiation","TypeParameter","bound","supertype","impltype","ObjectTypeAnnotation","exact","props","properties","callProperties","indexers","internalSlots","addNewlines","leading","statement","iterator","inexact","ObjectTypeInternalSlot","static","ObjectTypeCallProperty","ObjectTypeIndexer","key","ObjectTypeProperty","proto","ObjectTypeSpreadProperty","QualifiedTypeIdentifier","qualification","SymbolTypeAnnotation","orSeparator","UnionTypeAnnotation","TypeCastExpression","expression","Variance","VoidTypeAnnotation","IndexedAccessType","objectType","indexType","OptionalIndexedAccessType"],"sources":["../../src/generators/flow.ts"],"sourcesContent":["import type Printer from \"../printer.ts\";\nimport { isDeclareExportDeclaration, isStatement } from \"@babel/types\";\nimport type * as t from \"@babel/types\";\nimport { ExportAllDeclaration } from \"./modules.ts\";\n\nexport function AnyTypeAnnotation(this: Printer) {\n this.word(\"any\");\n}\n\nexport function ArrayTypeAnnotation(\n this: Printer,\n node: t.ArrayTypeAnnotation,\n) {\n this.print(node.elementType, node, true);\n this.token(\"[\");\n this.token(\"]\");\n}\n\nexport function BooleanTypeAnnotation(this: Printer) {\n this.word(\"boolean\");\n}\n\nexport function BooleanLiteralTypeAnnotation(\n this: Printer,\n node: t.BooleanLiteralTypeAnnotation,\n) {\n this.word(node.value ? \"true\" : \"false\");\n}\n\nexport function NullLiteralTypeAnnotation(this: Printer) {\n this.word(\"null\");\n}\n\nexport function DeclareClass(\n this: Printer,\n node: t.DeclareClass,\n parent: t.Node,\n) {\n if (!isDeclareExportDeclaration(parent)) {\n this.word(\"declare\");\n this.space();\n }\n this.word(\"class\");\n this.space();\n this._interfaceish(node);\n}\n\nexport function DeclareFunction(\n this: Printer,\n node: t.DeclareFunction,\n parent: t.Node,\n) {\n if (!isDeclareExportDeclaration(parent)) {\n this.word(\"declare\");\n this.space();\n }\n this.word(\"function\");\n this.space();\n this.print(node.id, node);\n // @ts-ignore(Babel 7 vs Babel 8) TODO(Babel 8) Remove this comment, since we'll remove the Noop node\n this.print(node.id.typeAnnotation.typeAnnotation, node);\n\n if (node.predicate) {\n this.space();\n this.print(node.predicate, node);\n }\n\n this.semicolon();\n}\n\nexport function InferredPredicate(this: Printer) {\n this.token(\"%\");\n this.word(\"checks\");\n}\n\nexport function DeclaredPredicate(this: Printer, node: t.DeclaredPredicate) {\n this.token(\"%\");\n this.word(\"checks\");\n this.token(\"(\");\n this.print(node.value, node);\n this.token(\")\");\n}\n\nexport function DeclareInterface(this: Printer, node: t.DeclareInterface) {\n this.word(\"declare\");\n this.space();\n this.InterfaceDeclaration(node);\n}\n\nexport function DeclareModule(this: Printer, node: t.DeclareModule) {\n this.word(\"declare\");\n this.space();\n this.word(\"module\");\n this.space();\n this.print(node.id, node);\n this.space();\n this.print(node.body, node);\n}\n\nexport function DeclareModuleExports(\n this: Printer,\n node: t.DeclareModuleExports,\n) {\n this.word(\"declare\");\n this.space();\n this.word(\"module\");\n this.token(\".\");\n this.word(\"exports\");\n this.print(node.typeAnnotation, node);\n}\n\nexport function DeclareTypeAlias(this: Printer, node: t.DeclareTypeAlias) {\n this.word(\"declare\");\n this.space();\n this.TypeAlias(node);\n}\n\nexport function DeclareOpaqueType(\n this: Printer,\n node: t.DeclareOpaqueType,\n parent: t.Node,\n) {\n if (!isDeclareExportDeclaration(parent)) {\n this.word(\"declare\");\n this.space();\n }\n this.OpaqueType(node);\n}\n\nexport function DeclareVariable(\n this: Printer,\n node: t.DeclareVariable,\n parent: t.Node,\n) {\n if (!isDeclareExportDeclaration(parent)) {\n this.word(\"declare\");\n this.space();\n }\n this.word(\"var\");\n this.space();\n this.print(node.id, node);\n this.print(node.id.typeAnnotation, node);\n this.semicolon();\n}\n\nexport function DeclareExportDeclaration(\n this: Printer,\n node: t.DeclareExportDeclaration,\n) {\n this.word(\"declare\");\n this.space();\n this.word(\"export\");\n this.space();\n if (node.default) {\n this.word(\"default\");\n this.space();\n }\n\n FlowExportDeclaration.call(this, node);\n}\n\nexport function DeclareExportAllDeclaration(\n this: Printer,\n node: t.DeclareExportAllDeclaration,\n) {\n this.word(\"declare\");\n this.space();\n ExportAllDeclaration.call(this, node);\n}\n\nexport function EnumDeclaration(this: Printer, node: t.EnumDeclaration) {\n const { id, body } = node;\n this.word(\"enum\");\n this.space();\n this.print(id, node);\n this.print(body, node);\n}\n\nfunction enumExplicitType(\n context: Printer,\n name: string,\n hasExplicitType: boolean,\n) {\n if (hasExplicitType) {\n context.space();\n context.word(\"of\");\n context.space();\n context.word(name);\n }\n context.space();\n}\n\nfunction enumBody(context: Printer, node: t.EnumBody) {\n const { members } = node;\n context.token(\"{\");\n context.indent();\n context.newline();\n for (const member of members) {\n context.print(member, node);\n context.newline();\n }\n if (node.hasUnknownMembers) {\n context.token(\"...\");\n context.newline();\n }\n context.dedent();\n context.token(\"}\");\n}\n\nexport function EnumBooleanBody(this: Printer, node: t.EnumBooleanBody) {\n const { explicitType } = node;\n enumExplicitType(this, \"boolean\", explicitType);\n enumBody(this, node);\n}\n\nexport function EnumNumberBody(this: Printer, node: t.EnumNumberBody) {\n const { explicitType } = node;\n enumExplicitType(this, \"number\", explicitType);\n enumBody(this, node);\n}\n\nexport function EnumStringBody(this: Printer, node: t.EnumStringBody) {\n const { explicitType } = node;\n enumExplicitType(this, \"string\", explicitType);\n enumBody(this, node);\n}\n\nexport function EnumSymbolBody(this: Printer, node: t.EnumSymbolBody) {\n enumExplicitType(this, \"symbol\", true);\n enumBody(this, node);\n}\n\nexport function EnumDefaultedMember(\n this: Printer,\n node: t.EnumDefaultedMember,\n) {\n const { id } = node;\n this.print(id, node);\n this.token(\",\");\n}\n\nfunction enumInitializedMember(\n context: Printer,\n node: t.EnumBooleanMember | t.EnumNumberMember | t.EnumStringMember,\n) {\n const { id, init } = node;\n context.print(id, node);\n context.space();\n context.token(\"=\");\n context.space();\n context.print(init, node);\n context.token(\",\");\n}\n\nexport function EnumBooleanMember(this: Printer, node: t.EnumBooleanMember) {\n enumInitializedMember(this, node);\n}\n\nexport function EnumNumberMember(this: Printer, node: t.EnumNumberMember) {\n enumInitializedMember(this, node);\n}\n\nexport function EnumStringMember(this: Printer, node: t.EnumStringMember) {\n enumInitializedMember(this, node);\n}\n\nfunction FlowExportDeclaration(\n this: Printer,\n node: t.DeclareExportDeclaration,\n) {\n if (node.declaration) {\n const declar = node.declaration;\n this.print(declar, node);\n if (!isStatement(declar)) this.semicolon();\n } else {\n this.token(\"{\");\n if (node.specifiers.length) {\n this.space();\n this.printList(node.specifiers, node);\n this.space();\n }\n this.token(\"}\");\n\n if (node.source) {\n this.space();\n this.word(\"from\");\n this.space();\n this.print(node.source, node);\n }\n\n this.semicolon();\n }\n}\n\nexport function ExistsTypeAnnotation(this: Printer) {\n this.token(\"*\");\n}\n\nexport function FunctionTypeAnnotation(\n this: Printer,\n node: t.FunctionTypeAnnotation,\n parent?: t.Node,\n) {\n this.print(node.typeParameters, node);\n this.token(\"(\");\n\n if (node.this) {\n this.word(\"this\");\n this.token(\":\");\n this.space();\n this.print(node.this.typeAnnotation, node);\n if (node.params.length || node.rest) {\n this.token(\",\");\n this.space();\n }\n }\n\n this.printList(node.params, node);\n\n if (node.rest) {\n if (node.params.length) {\n this.token(\",\");\n this.space();\n }\n this.token(\"...\");\n this.print(node.rest, node);\n }\n\n this.token(\")\");\n\n // this node type is overloaded, not sure why but it makes it EXTREMELY annoying\n\n const type = parent?.type;\n if (\n type != null &&\n (type === \"ObjectTypeCallProperty\" ||\n type === \"ObjectTypeInternalSlot\" ||\n type === \"DeclareFunction\" ||\n (type === \"ObjectTypeProperty\" && parent.method))\n ) {\n this.token(\":\");\n } else {\n this.space();\n this.token(\"=>\");\n }\n\n this.space();\n this.print(node.returnType, node);\n}\n\nexport function FunctionTypeParam(this: Printer, node: t.FunctionTypeParam) {\n this.print(node.name, node);\n if (node.optional) this.token(\"?\");\n if (node.name) {\n this.token(\":\");\n this.space();\n }\n this.print(node.typeAnnotation, node);\n}\n\nexport function InterfaceExtends(this: Printer, node: t.InterfaceExtends) {\n this.print(node.id, node);\n this.print(node.typeParameters, node, true);\n}\n\nexport {\n InterfaceExtends as ClassImplements,\n InterfaceExtends as GenericTypeAnnotation,\n};\n\nexport function _interfaceish(\n this: Printer,\n node: t.InterfaceDeclaration | t.DeclareInterface | t.DeclareClass,\n) {\n this.print(node.id, node);\n this.print(node.typeParameters, node);\n if (node.extends?.length) {\n this.space();\n this.word(\"extends\");\n this.space();\n this.printList(node.extends, node);\n }\n if (node.type === \"DeclareClass\") {\n if (node.mixins?.length) {\n this.space();\n this.word(\"mixins\");\n this.space();\n this.printList(node.mixins, node);\n }\n if (node.implements?.length) {\n this.space();\n this.word(\"implements\");\n this.space();\n this.printList(node.implements, node);\n }\n }\n this.space();\n this.print(node.body, node);\n}\n\nexport function _variance(\n this: Printer,\n node:\n | t.TypeParameter\n | t.ObjectTypeIndexer\n | t.ObjectTypeProperty\n | t.ClassProperty\n | t.ClassPrivateProperty\n | t.ClassAccessorProperty,\n) {\n const kind = node.variance?.kind;\n if (kind != null) {\n if (kind === \"plus\") {\n this.token(\"+\");\n } else if (kind === \"minus\") {\n this.token(\"-\");\n }\n }\n}\n\nexport function InterfaceDeclaration(\n this: Printer,\n node: t.InterfaceDeclaration | t.DeclareInterface,\n) {\n this.word(\"interface\");\n this.space();\n this._interfaceish(node);\n}\n\nfunction andSeparator(this: Printer) {\n this.space();\n this.token(\"&\");\n this.space();\n}\n\nexport function InterfaceTypeAnnotation(\n this: Printer,\n node: t.InterfaceTypeAnnotation,\n) {\n this.word(\"interface\");\n if (node.extends?.length) {\n this.space();\n this.word(\"extends\");\n this.space();\n this.printList(node.extends, node);\n }\n this.space();\n this.print(node.body, node);\n}\n\nexport function IntersectionTypeAnnotation(\n this: Printer,\n node: t.IntersectionTypeAnnotation,\n) {\n this.printJoin(node.types, node, { separator: andSeparator });\n}\n\nexport function MixedTypeAnnotation(this: Printer) {\n this.word(\"mixed\");\n}\n\nexport function EmptyTypeAnnotation(this: Printer) {\n this.word(\"empty\");\n}\n\nexport function NullableTypeAnnotation(\n this: Printer,\n node: t.NullableTypeAnnotation,\n) {\n this.token(\"?\");\n this.print(node.typeAnnotation, node);\n}\n\nexport {\n NumericLiteral as NumberLiteralTypeAnnotation,\n StringLiteral as StringLiteralTypeAnnotation,\n} from \"./types.ts\";\n\nexport function NumberTypeAnnotation(this: Printer) {\n this.word(\"number\");\n}\n\nexport function StringTypeAnnotation(this: Printer) {\n this.word(\"string\");\n}\n\nexport function ThisTypeAnnotation(this: Printer) {\n this.word(\"this\");\n}\n\nexport function TupleTypeAnnotation(\n this: Printer,\n node: t.TupleTypeAnnotation,\n) {\n this.token(\"[\");\n this.printList(node.types, node);\n this.token(\"]\");\n}\n\nexport function TypeofTypeAnnotation(\n this: Printer,\n node: t.TypeofTypeAnnotation,\n) {\n this.word(\"typeof\");\n this.space();\n this.print(node.argument, node);\n}\n\nexport function TypeAlias(\n this: Printer,\n node: t.TypeAlias | t.DeclareTypeAlias,\n) {\n this.word(\"type\");\n this.space();\n this.print(node.id, node);\n this.print(node.typeParameters, node);\n this.space();\n this.token(\"=\");\n this.space();\n this.print(node.right, node);\n this.semicolon();\n}\n\nexport function TypeAnnotation(this: Printer, node: t.TypeAnnotation) {\n this.token(\":\");\n this.space();\n // @ts-expect-error todo(flow->ts) can this be removed? `.optional` looks to be not existing property\n if (node.optional) this.token(\"?\");\n this.print(node.typeAnnotation, node);\n}\n\nexport function TypeParameterInstantiation(\n this: Printer,\n node: t.TypeParameterInstantiation,\n): void {\n this.token(\"<\");\n this.printList(node.params, node, {});\n this.token(\">\");\n}\n\nexport { TypeParameterInstantiation as TypeParameterDeclaration };\n\nexport function TypeParameter(this: Printer, node: t.TypeParameter) {\n this._variance(node);\n\n this.word(node.name);\n\n if (node.bound) {\n this.print(node.bound, node);\n }\n\n if (node.default) {\n this.space();\n this.token(\"=\");\n this.space();\n this.print(node.default, node);\n }\n}\n\nexport function OpaqueType(\n this: Printer,\n node: t.OpaqueType | t.DeclareOpaqueType,\n) {\n this.word(\"opaque\");\n this.space();\n this.word(\"type\");\n this.space();\n this.print(node.id, node);\n this.print(node.typeParameters, node);\n if (node.supertype) {\n this.token(\":\");\n this.space();\n this.print(node.supertype, node);\n }\n\n if (node.impltype) {\n this.space();\n this.token(\"=\");\n this.space();\n this.print(node.impltype, node);\n }\n this.semicolon();\n}\n\nexport function ObjectTypeAnnotation(\n this: Printer,\n node: t.ObjectTypeAnnotation,\n) {\n if (node.exact) {\n this.token(\"{|\");\n } else {\n this.token(\"{\");\n }\n\n // TODO: remove the array fallbacks and instead enforce the types to require an array\n const props = [\n ...node.properties,\n ...(node.callProperties || []),\n ...(node.indexers || []),\n ...(node.internalSlots || []),\n ];\n\n if (props.length) {\n this.newline();\n\n this.space();\n\n this.printJoin(props, node, {\n addNewlines(leading) {\n if (leading && !props[0]) return 1;\n },\n indent: true,\n statement: true,\n iterator: () => {\n if (props.length !== 1 || node.inexact) {\n this.token(\",\");\n this.space();\n }\n },\n });\n\n this.space();\n }\n\n if (node.inexact) {\n this.indent();\n this.token(\"...\");\n if (props.length) {\n this.newline();\n }\n this.dedent();\n }\n\n if (node.exact) {\n this.token(\"|}\");\n } else {\n this.token(\"}\");\n }\n}\n\nexport function ObjectTypeInternalSlot(\n this: Printer,\n node: t.ObjectTypeInternalSlot,\n) {\n if (node.static) {\n this.word(\"static\");\n this.space();\n }\n this.token(\"[\");\n this.token(\"[\");\n this.print(node.id, node);\n this.token(\"]\");\n this.token(\"]\");\n if (node.optional) this.token(\"?\");\n if (!node.method) {\n this.token(\":\");\n this.space();\n }\n this.print(node.value, node);\n}\n\nexport function ObjectTypeCallProperty(\n this: Printer,\n node: t.ObjectTypeCallProperty,\n) {\n if (node.static) {\n this.word(\"static\");\n this.space();\n }\n this.print(node.value, node);\n}\n\nexport function ObjectTypeIndexer(this: Printer, node: t.ObjectTypeIndexer) {\n if (node.static) {\n this.word(\"static\");\n this.space();\n }\n this._variance(node);\n this.token(\"[\");\n if (node.id) {\n this.print(node.id, node);\n this.token(\":\");\n this.space();\n }\n this.print(node.key, node);\n this.token(\"]\");\n this.token(\":\");\n this.space();\n this.print(node.value, node);\n}\n\nexport function ObjectTypeProperty(this: Printer, node: t.ObjectTypeProperty) {\n if (node.proto) {\n this.word(\"proto\");\n this.space();\n }\n if (node.static) {\n this.word(\"static\");\n this.space();\n }\n if (node.kind === \"get\" || node.kind === \"set\") {\n this.word(node.kind);\n this.space();\n }\n this._variance(node);\n this.print(node.key, node);\n if (node.optional) this.token(\"?\");\n if (!node.method) {\n this.token(\":\");\n this.space();\n }\n this.print(node.value, node);\n}\n\nexport function ObjectTypeSpreadProperty(\n this: Printer,\n node: t.ObjectTypeSpreadProperty,\n) {\n this.token(\"...\");\n this.print(node.argument, node);\n}\n\nexport function QualifiedTypeIdentifier(\n this: Printer,\n node: t.QualifiedTypeIdentifier,\n) {\n this.print(node.qualification, node);\n this.token(\".\");\n this.print(node.id, node);\n}\n\nexport function SymbolTypeAnnotation(this: Printer) {\n this.word(\"symbol\");\n}\n\nfunction orSeparator(this: Printer) {\n this.space();\n this.token(\"|\");\n this.space();\n}\n\nexport function UnionTypeAnnotation(\n this: Printer,\n node: t.UnionTypeAnnotation,\n) {\n this.printJoin(node.types, node, { separator: orSeparator });\n}\n\nexport function TypeCastExpression(this: Printer, node: t.TypeCastExpression) {\n this.token(\"(\");\n this.print(node.expression, node);\n this.print(node.typeAnnotation, node);\n this.token(\")\");\n}\n\nexport function Variance(this: Printer, node: t.Variance) {\n if (node.kind === \"plus\") {\n this.token(\"+\");\n } else {\n this.token(\"-\");\n }\n}\n\nexport function VoidTypeAnnotation(this: Printer) {\n this.word(\"void\");\n}\n\nexport function IndexedAccessType(this: Printer, node: t.IndexedAccessType) {\n this.print(node.objectType, node, true);\n this.token(\"[\");\n this.print(node.indexType, node);\n this.token(\"]\");\n}\n\nexport function OptionalIndexedAccessType(\n this: Printer,\n node: t.OptionalIndexedAccessType,\n) {\n this.print(node.objectType, node);\n if (node.optional) {\n this.token(\"?.\");\n }\n this.token(\"[\");\n this.print(node.indexType, node);\n this.token(\"]\");\n}\n"],"mappings":"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"}
@@ -0,0 +1,128 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _templateLiterals = require("./template-literals.js");
7
+ Object.keys(_templateLiterals).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _templateLiterals[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _templateLiterals[key];
14
+ }
15
+ });
16
+ });
17
+ var _expressions = require("./expressions.js");
18
+ Object.keys(_expressions).forEach(function (key) {
19
+ if (key === "default" || key === "__esModule") return;
20
+ if (key in exports && exports[key] === _expressions[key]) return;
21
+ Object.defineProperty(exports, key, {
22
+ enumerable: true,
23
+ get: function () {
24
+ return _expressions[key];
25
+ }
26
+ });
27
+ });
28
+ var _statements = require("./statements.js");
29
+ Object.keys(_statements).forEach(function (key) {
30
+ if (key === "default" || key === "__esModule") return;
31
+ if (key in exports && exports[key] === _statements[key]) return;
32
+ Object.defineProperty(exports, key, {
33
+ enumerable: true,
34
+ get: function () {
35
+ return _statements[key];
36
+ }
37
+ });
38
+ });
39
+ var _classes = require("./classes.js");
40
+ Object.keys(_classes).forEach(function (key) {
41
+ if (key === "default" || key === "__esModule") return;
42
+ if (key in exports && exports[key] === _classes[key]) return;
43
+ Object.defineProperty(exports, key, {
44
+ enumerable: true,
45
+ get: function () {
46
+ return _classes[key];
47
+ }
48
+ });
49
+ });
50
+ var _methods = require("./methods.js");
51
+ Object.keys(_methods).forEach(function (key) {
52
+ if (key === "default" || key === "__esModule") return;
53
+ if (key in exports && exports[key] === _methods[key]) return;
54
+ Object.defineProperty(exports, key, {
55
+ enumerable: true,
56
+ get: function () {
57
+ return _methods[key];
58
+ }
59
+ });
60
+ });
61
+ var _modules = require("./modules.js");
62
+ Object.keys(_modules).forEach(function (key) {
63
+ if (key === "default" || key === "__esModule") return;
64
+ if (key in exports && exports[key] === _modules[key]) return;
65
+ Object.defineProperty(exports, key, {
66
+ enumerable: true,
67
+ get: function () {
68
+ return _modules[key];
69
+ }
70
+ });
71
+ });
72
+ var _types = require("./types.js");
73
+ Object.keys(_types).forEach(function (key) {
74
+ if (key === "default" || key === "__esModule") return;
75
+ if (key in exports && exports[key] === _types[key]) return;
76
+ Object.defineProperty(exports, key, {
77
+ enumerable: true,
78
+ get: function () {
79
+ return _types[key];
80
+ }
81
+ });
82
+ });
83
+ var _flow = require("./flow.js");
84
+ Object.keys(_flow).forEach(function (key) {
85
+ if (key === "default" || key === "__esModule") return;
86
+ if (key in exports && exports[key] === _flow[key]) return;
87
+ Object.defineProperty(exports, key, {
88
+ enumerable: true,
89
+ get: function () {
90
+ return _flow[key];
91
+ }
92
+ });
93
+ });
94
+ var _base = require("./base.js");
95
+ Object.keys(_base).forEach(function (key) {
96
+ if (key === "default" || key === "__esModule") return;
97
+ if (key in exports && exports[key] === _base[key]) return;
98
+ Object.defineProperty(exports, key, {
99
+ enumerable: true,
100
+ get: function () {
101
+ return _base[key];
102
+ }
103
+ });
104
+ });
105
+ var _jsx = require("./jsx.js");
106
+ Object.keys(_jsx).forEach(function (key) {
107
+ if (key === "default" || key === "__esModule") return;
108
+ if (key in exports && exports[key] === _jsx[key]) return;
109
+ Object.defineProperty(exports, key, {
110
+ enumerable: true,
111
+ get: function () {
112
+ return _jsx[key];
113
+ }
114
+ });
115
+ });
116
+ var _typescript = require("./typescript.js");
117
+ Object.keys(_typescript).forEach(function (key) {
118
+ if (key === "default" || key === "__esModule") return;
119
+ if (key in exports && exports[key] === _typescript[key]) return;
120
+ Object.defineProperty(exports, key, {
121
+ enumerable: true,
122
+ get: function () {
123
+ return _typescript[key];
124
+ }
125
+ });
126
+ });
127
+
128
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_templateLiterals","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get","_expressions","_statements","_classes","_methods","_modules","_types","_flow","_base","_jsx","_typescript"],"sources":["../../src/generators/index.ts"],"sourcesContent":["export * from \"./template-literals.ts\";\nexport * from \"./expressions.ts\";\nexport * from \"./statements.ts\";\nexport * from \"./classes.ts\";\nexport * from \"./methods.ts\";\nexport * from \"./modules.ts\";\nexport * from \"./types.ts\";\nexport * from \"./flow.ts\";\nexport * from \"./base.ts\";\nexport * from \"./jsx.ts\";\nexport * from \"./typescript.ts\";\n"],"mappings":"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"}
@@ -0,0 +1,123 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.JSXAttribute = JSXAttribute;
7
+ exports.JSXClosingElement = JSXClosingElement;
8
+ exports.JSXClosingFragment = JSXClosingFragment;
9
+ exports.JSXElement = JSXElement;
10
+ exports.JSXEmptyExpression = JSXEmptyExpression;
11
+ exports.JSXExpressionContainer = JSXExpressionContainer;
12
+ exports.JSXFragment = JSXFragment;
13
+ exports.JSXIdentifier = JSXIdentifier;
14
+ exports.JSXMemberExpression = JSXMemberExpression;
15
+ exports.JSXNamespacedName = JSXNamespacedName;
16
+ exports.JSXOpeningElement = JSXOpeningElement;
17
+ exports.JSXOpeningFragment = JSXOpeningFragment;
18
+ exports.JSXSpreadAttribute = JSXSpreadAttribute;
19
+ exports.JSXSpreadChild = JSXSpreadChild;
20
+ exports.JSXText = JSXText;
21
+ function JSXAttribute(node) {
22
+ this.print(node.name, node);
23
+ if (node.value) {
24
+ this.tokenChar(61);
25
+ this.print(node.value, node);
26
+ }
27
+ }
28
+ function JSXIdentifier(node) {
29
+ this.word(node.name);
30
+ }
31
+ function JSXNamespacedName(node) {
32
+ this.print(node.namespace, node);
33
+ this.tokenChar(58);
34
+ this.print(node.name, node);
35
+ }
36
+ function JSXMemberExpression(node) {
37
+ this.print(node.object, node);
38
+ this.tokenChar(46);
39
+ this.print(node.property, node);
40
+ }
41
+ function JSXSpreadAttribute(node) {
42
+ this.tokenChar(123);
43
+ this.token("...");
44
+ this.print(node.argument, node);
45
+ this.tokenChar(125);
46
+ }
47
+ function JSXExpressionContainer(node) {
48
+ this.tokenChar(123);
49
+ this.print(node.expression, node);
50
+ this.tokenChar(125);
51
+ }
52
+ function JSXSpreadChild(node) {
53
+ this.tokenChar(123);
54
+ this.token("...");
55
+ this.print(node.expression, node);
56
+ this.tokenChar(125);
57
+ }
58
+ function JSXText(node) {
59
+ const raw = this.getPossibleRaw(node);
60
+ if (raw !== undefined) {
61
+ this.token(raw, true);
62
+ } else {
63
+ this.token(node.value, true);
64
+ }
65
+ }
66
+ function JSXElement(node) {
67
+ const open = node.openingElement;
68
+ this.print(open, node);
69
+ if (open.selfClosing) return;
70
+ this.indent();
71
+ for (const child of node.children) {
72
+ this.print(child, node);
73
+ }
74
+ this.dedent();
75
+ this.print(node.closingElement, node);
76
+ }
77
+ function spaceSeparator() {
78
+ this.space();
79
+ }
80
+ function JSXOpeningElement(node) {
81
+ this.tokenChar(60);
82
+ this.print(node.name, node);
83
+ this.print(node.typeParameters, node);
84
+ if (node.attributes.length > 0) {
85
+ this.space();
86
+ this.printJoin(node.attributes, node, {
87
+ separator: spaceSeparator
88
+ });
89
+ }
90
+ if (node.selfClosing) {
91
+ this.space();
92
+ this.token("/>");
93
+ } else {
94
+ this.tokenChar(62);
95
+ }
96
+ }
97
+ function JSXClosingElement(node) {
98
+ this.token("</");
99
+ this.print(node.name, node);
100
+ this.tokenChar(62);
101
+ }
102
+ function JSXEmptyExpression() {
103
+ this.printInnerComments();
104
+ }
105
+ function JSXFragment(node) {
106
+ this.print(node.openingFragment, node);
107
+ this.indent();
108
+ for (const child of node.children) {
109
+ this.print(child, node);
110
+ }
111
+ this.dedent();
112
+ this.print(node.closingFragment, node);
113
+ }
114
+ function JSXOpeningFragment() {
115
+ this.tokenChar(60);
116
+ this.tokenChar(62);
117
+ }
118
+ function JSXClosingFragment() {
119
+ this.token("</");
120
+ this.tokenChar(62);
121
+ }
122
+
123
+ //# sourceMappingURL=jsx.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["JSXAttribute","node","print","name","value","token","JSXIdentifier","word","JSXNamespacedName","namespace","JSXMemberExpression","object","property","JSXSpreadAttribute","argument","JSXExpressionContainer","expression","JSXSpreadChild","JSXText","raw","getPossibleRaw","undefined","JSXElement","open","openingElement","selfClosing","indent","child","children","dedent","closingElement","spaceSeparator","space","JSXOpeningElement","typeParameters","attributes","length","printJoin","separator","JSXClosingElement","JSXEmptyExpression","printInnerComments","JSXFragment","openingFragment","closingFragment","JSXOpeningFragment","JSXClosingFragment"],"sources":["../../src/generators/jsx.ts"],"sourcesContent":["import type Printer from \"../printer.ts\";\nimport type * as t from \"@babel/types\";\n\nexport function JSXAttribute(this: Printer, node: t.JSXAttribute) {\n this.print(node.name, node);\n if (node.value) {\n this.token(\"=\");\n this.print(node.value, node);\n }\n}\n\nexport function JSXIdentifier(this: Printer, node: t.JSXIdentifier) {\n this.word(node.name);\n}\n\nexport function JSXNamespacedName(this: Printer, node: t.JSXNamespacedName) {\n this.print(node.namespace, node);\n this.token(\":\");\n this.print(node.name, node);\n}\n\nexport function JSXMemberExpression(\n this: Printer,\n node: t.JSXMemberExpression,\n) {\n this.print(node.object, node);\n this.token(\".\");\n this.print(node.property, node);\n}\n\nexport function JSXSpreadAttribute(this: Printer, node: t.JSXSpreadAttribute) {\n this.token(\"{\");\n this.token(\"...\");\n this.print(node.argument, node);\n this.token(\"}\");\n}\n\nexport function JSXExpressionContainer(\n this: Printer,\n node: t.JSXExpressionContainer,\n) {\n this.token(\"{\");\n this.print(node.expression, node);\n this.token(\"}\");\n}\n\nexport function JSXSpreadChild(this: Printer, node: t.JSXSpreadChild) {\n this.token(\"{\");\n this.token(\"...\");\n this.print(node.expression, node);\n this.token(\"}\");\n}\n\nexport function JSXText(this: Printer, node: t.JSXText) {\n const raw = this.getPossibleRaw(node);\n\n if (raw !== undefined) {\n this.token(raw, true);\n } else {\n this.token(node.value, true);\n }\n}\n\nexport function JSXElement(this: Printer, node: t.JSXElement) {\n const open = node.openingElement;\n this.print(open, node);\n if (open.selfClosing) return;\n\n this.indent();\n for (const child of node.children) {\n this.print(child, node);\n }\n this.dedent();\n\n this.print(node.closingElement, node);\n}\n\nfunction spaceSeparator(this: Printer) {\n this.space();\n}\n\nexport function JSXOpeningElement(this: Printer, node: t.JSXOpeningElement) {\n this.token(\"<\");\n this.print(node.name, node);\n this.print(node.typeParameters, node); // TS\n if (node.attributes.length > 0) {\n this.space();\n this.printJoin(node.attributes, node, { separator: spaceSeparator });\n }\n if (node.selfClosing) {\n this.space();\n this.token(\"/>\");\n } else {\n this.token(\">\");\n }\n}\n\nexport function JSXClosingElement(this: Printer, node: t.JSXClosingElement) {\n this.token(\"</\");\n this.print(node.name, node);\n this.token(\">\");\n}\n\nexport function JSXEmptyExpression(this: Printer) {\n // This node is empty, so forcefully print its inner comments.\n this.printInnerComments();\n}\n\nexport function JSXFragment(this: Printer, node: t.JSXFragment) {\n this.print(node.openingFragment, node);\n\n this.indent();\n for (const child of node.children) {\n this.print(child, node);\n }\n this.dedent();\n\n this.print(node.closingFragment, node);\n}\n\nexport function JSXOpeningFragment(this: Printer) {\n this.token(\"<\");\n this.token(\">\");\n}\n\nexport function JSXClosingFragment(this: Printer) {\n this.token(\"</\");\n this.token(\">\");\n}\n"],"mappings":"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"}
@@ -0,0 +1,173 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.ArrowFunctionExpression = ArrowFunctionExpression;
7
+ exports.FunctionDeclaration = exports.FunctionExpression = FunctionExpression;
8
+ exports._functionHead = _functionHead;
9
+ exports._methodHead = _methodHead;
10
+ exports._param = _param;
11
+ exports._parameters = _parameters;
12
+ exports._params = _params;
13
+ exports._predicate = _predicate;
14
+ var _t = require("@babel/types");
15
+ const {
16
+ isIdentifier
17
+ } = _t;
18
+ function _params(node, idNode, parentNode) {
19
+ this.print(node.typeParameters, node);
20
+ const nameInfo = _getFuncIdName.call(this, idNode, parentNode);
21
+ if (nameInfo) {
22
+ this.sourceIdentifierName(nameInfo.name, nameInfo.pos);
23
+ }
24
+ this.tokenChar(40);
25
+ this._parameters(node.params, node);
26
+ this.tokenChar(41);
27
+ const noLineTerminator = node.type === "ArrowFunctionExpression";
28
+ this.print(node.returnType, node, noLineTerminator);
29
+ this._noLineTerminator = noLineTerminator;
30
+ }
31
+ function _parameters(parameters, parent) {
32
+ const paramLength = parameters.length;
33
+ for (let i = 0; i < paramLength; i++) {
34
+ this._param(parameters[i], parent);
35
+ if (i < parameters.length - 1) {
36
+ this.tokenChar(44);
37
+ this.space();
38
+ }
39
+ }
40
+ }
41
+ function _param(parameter, parent) {
42
+ this.printJoin(parameter.decorators, parameter);
43
+ this.print(parameter, parent);
44
+ if (parameter.optional) {
45
+ this.tokenChar(63);
46
+ }
47
+ this.print(parameter.typeAnnotation, parameter);
48
+ }
49
+ function _methodHead(node) {
50
+ const kind = node.kind;
51
+ const key = node.key;
52
+ if (kind === "get" || kind === "set") {
53
+ this.word(kind);
54
+ this.space();
55
+ }
56
+ if (node.async) {
57
+ this.word("async", true);
58
+ this.space();
59
+ }
60
+ if (kind === "method" || kind === "init") {
61
+ if (node.generator) {
62
+ this.tokenChar(42);
63
+ }
64
+ }
65
+ if (node.computed) {
66
+ this.tokenChar(91);
67
+ this.print(key, node);
68
+ this.tokenChar(93);
69
+ } else {
70
+ this.print(key, node);
71
+ }
72
+ if (node.optional) {
73
+ this.tokenChar(63);
74
+ }
75
+ this._params(node, node.computed && node.key.type !== "StringLiteral" ? undefined : node.key, undefined);
76
+ }
77
+ function _predicate(node, noLineTerminatorAfter) {
78
+ if (node.predicate) {
79
+ if (!node.returnType) {
80
+ this.tokenChar(58);
81
+ }
82
+ this.space();
83
+ this.print(node.predicate, node, noLineTerminatorAfter);
84
+ }
85
+ }
86
+ function _functionHead(node, parent) {
87
+ if (node.async) {
88
+ this.word("async");
89
+ this._endsWithInnerRaw = false;
90
+ this.space();
91
+ }
92
+ this.word("function");
93
+ if (node.generator) {
94
+ this._endsWithInnerRaw = false;
95
+ this.tokenChar(42);
96
+ }
97
+ this.space();
98
+ if (node.id) {
99
+ this.print(node.id, node);
100
+ }
101
+ this._params(node, node.id, parent);
102
+ if (node.type !== "TSDeclareFunction") {
103
+ this._predicate(node);
104
+ }
105
+ }
106
+ function FunctionExpression(node, parent) {
107
+ this._functionHead(node, parent);
108
+ this.space();
109
+ this.print(node.body, node);
110
+ }
111
+ function ArrowFunctionExpression(node, parent) {
112
+ if (node.async) {
113
+ this.word("async", true);
114
+ this.space();
115
+ }
116
+ let firstParam;
117
+ if (!this.format.retainLines && node.params.length === 1 && isIdentifier(firstParam = node.params[0]) && !hasTypesOrComments(node, firstParam)) {
118
+ this.print(firstParam, node, true);
119
+ } else {
120
+ this._params(node, undefined, parent);
121
+ }
122
+ this._predicate(node, true);
123
+ this.space();
124
+ this.printInnerComments();
125
+ this.token("=>");
126
+ this.space();
127
+ this.print(node.body, node);
128
+ }
129
+ function hasTypesOrComments(node, param) {
130
+ var _param$leadingComment, _param$trailingCommen;
131
+ return !!(node.typeParameters || node.returnType || node.predicate || param.typeAnnotation || param.optional || (_param$leadingComment = param.leadingComments) != null && _param$leadingComment.length || (_param$trailingCommen = param.trailingComments) != null && _param$trailingCommen.length);
132
+ }
133
+ function _getFuncIdName(idNode, parent) {
134
+ let id = idNode;
135
+ if (!id && parent) {
136
+ const parentType = parent.type;
137
+ if (parentType === "VariableDeclarator") {
138
+ id = parent.id;
139
+ } else if (parentType === "AssignmentExpression" || parentType === "AssignmentPattern") {
140
+ id = parent.left;
141
+ } else if (parentType === "ObjectProperty" || parentType === "ClassProperty") {
142
+ if (!parent.computed || parent.key.type === "StringLiteral") {
143
+ id = parent.key;
144
+ }
145
+ } else if (parentType === "ClassPrivateProperty" || parentType === "ClassAccessorProperty") {
146
+ id = parent.key;
147
+ }
148
+ }
149
+ if (!id) return;
150
+ let nameInfo;
151
+ if (id.type === "Identifier") {
152
+ var _id$loc, _id$loc2;
153
+ nameInfo = {
154
+ pos: (_id$loc = id.loc) == null ? void 0 : _id$loc.start,
155
+ name: ((_id$loc2 = id.loc) == null ? void 0 : _id$loc2.identifierName) || id.name
156
+ };
157
+ } else if (id.type === "PrivateName") {
158
+ var _id$loc3;
159
+ nameInfo = {
160
+ pos: (_id$loc3 = id.loc) == null ? void 0 : _id$loc3.start,
161
+ name: "#" + id.id.name
162
+ };
163
+ } else if (id.type === "StringLiteral") {
164
+ var _id$loc4;
165
+ nameInfo = {
166
+ pos: (_id$loc4 = id.loc) == null ? void 0 : _id$loc4.start,
167
+ name: id.value
168
+ };
169
+ }
170
+ return nameInfo;
171
+ }
172
+
173
+ //# sourceMappingURL=methods.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_t","require","isIdentifier","_params","node","idNode","parentNode","print","typeParameters","nameInfo","_getFuncIdName","call","sourceIdentifierName","name","pos","token","_parameters","params","noLineTerminator","type","returnType","_noLineTerminator","parameters","parent","paramLength","length","i","_param","space","parameter","printJoin","decorators","optional","typeAnnotation","_methodHead","kind","key","word","async","generator","computed","undefined","_predicate","noLineTerminatorAfter","predicate","_functionHead","_endsWithInnerRaw","id","FunctionExpression","body","ArrowFunctionExpression","firstParam","format","retainLines","hasTypesOrComments","printInnerComments","param","_param$leadingComment","_param$trailingCommen","leadingComments","trailingComments","parentType","left","_id$loc","_id$loc2","loc","start","identifierName","_id$loc3","_id$loc4","value"],"sources":["../../src/generators/methods.ts"],"sourcesContent":["import type Printer from \"../printer.ts\";\nimport type * as t from \"@babel/types\";\nimport { isIdentifier } from \"@babel/types\";\nimport type { NodePath } from \"@babel/traverse\";\n\nexport function _params(\n this: Printer,\n node: t.Function | t.TSDeclareMethod | t.TSDeclareFunction,\n idNode: t.Expression | t.PrivateName,\n parentNode: NodePath<\n t.Function | t.TSDeclareMethod | t.TSDeclareFunction\n >[\"parent\"],\n) {\n this.print(node.typeParameters, node);\n\n const nameInfo = _getFuncIdName.call(this, idNode, parentNode);\n if (nameInfo) {\n this.sourceIdentifierName(nameInfo.name, nameInfo.pos);\n }\n\n this.token(\"(\");\n this._parameters(node.params, node);\n this.token(\")\");\n\n const noLineTerminator = node.type === \"ArrowFunctionExpression\";\n this.print(node.returnType, node, noLineTerminator);\n\n this._noLineTerminator = noLineTerminator;\n}\n\nexport function _parameters(\n this: Printer,\n parameters: t.Function[\"params\"],\n parent:\n | t.Function\n | t.TSIndexSignature\n | t.TSDeclareMethod\n | t.TSDeclareFunction\n | t.TSFunctionType\n | t.TSConstructorType,\n) {\n const paramLength = parameters.length;\n for (let i = 0; i < paramLength; i++) {\n this._param(parameters[i], parent);\n\n if (i < parameters.length - 1) {\n this.token(\",\");\n this.space();\n }\n }\n}\n\nexport function _param(\n this: Printer,\n parameter: t.Identifier | t.RestElement | t.Pattern | t.TSParameterProperty,\n parent?:\n | t.Function\n | t.TSIndexSignature\n | t.TSDeclareMethod\n | t.TSDeclareFunction\n | t.TSFunctionType\n | t.TSConstructorType,\n) {\n this.printJoin(parameter.decorators, parameter);\n this.print(parameter, parent);\n if (\n // @ts-expect-error optional is not in TSParameterProperty\n parameter.optional\n ) {\n this.token(\"?\"); // TS / flow\n }\n\n this.print(\n // @ts-expect-error typeAnnotation is not in TSParameterProperty\n parameter.typeAnnotation,\n parameter,\n ); // TS / flow\n}\n\nexport function _methodHead(this: Printer, node: t.Method | t.TSDeclareMethod) {\n const kind = node.kind;\n const key = node.key;\n\n if (kind === \"get\" || kind === \"set\") {\n this.word(kind);\n this.space();\n }\n\n if (node.async) {\n this.word(\"async\", true);\n this.space();\n }\n\n if (\n kind === \"method\" ||\n // @ts-expect-error Fixme: kind: \"init\" is not defined\n kind === \"init\"\n ) {\n if (node.generator) {\n this.token(\"*\");\n }\n }\n\n if (node.computed) {\n this.token(\"[\");\n this.print(key, node);\n this.token(\"]\");\n } else {\n this.print(key, node);\n }\n\n if (\n // @ts-expect-error optional is not in ObjectMethod\n node.optional\n ) {\n // TS\n this.token(\"?\");\n }\n\n this._params(\n node,\n node.computed && node.key.type !== \"StringLiteral\" ? undefined : node.key,\n undefined,\n );\n}\n\nexport function _predicate(\n this: Printer,\n node:\n | t.FunctionDeclaration\n | t.FunctionExpression\n | t.ArrowFunctionExpression,\n noLineTerminatorAfter?: boolean,\n) {\n if (node.predicate) {\n if (!node.returnType) {\n this.token(\":\");\n }\n this.space();\n this.print(node.predicate, node, noLineTerminatorAfter);\n }\n}\n\nexport function _functionHead(\n this: Printer,\n node: t.FunctionDeclaration | t.FunctionExpression | t.TSDeclareFunction,\n parent: NodePath<\n t.FunctionDeclaration | t.FunctionExpression | t.TSDeclareFunction\n >[\"parent\"],\n) {\n if (node.async) {\n this.word(\"async\");\n // We prevent inner comments from being printed here,\n // so that they are always consistently printed in the\n // same place regardless of the function type.\n this._endsWithInnerRaw = false;\n this.space();\n }\n this.word(\"function\");\n if (node.generator) {\n // We prevent inner comments from being printed here,\n // so that they are always consistently printed in the\n // same place regardless of the function type.\n this._endsWithInnerRaw = false;\n this.token(\"*\");\n }\n\n this.space();\n if (node.id) {\n this.print(node.id, node);\n }\n\n this._params(node, node.id, parent);\n if (node.type !== \"TSDeclareFunction\") {\n this._predicate(node);\n }\n}\n\nexport function FunctionExpression(\n this: Printer,\n node: t.FunctionExpression,\n parent: NodePath<t.FunctionExpression>[\"parent\"],\n) {\n this._functionHead(node, parent);\n this.space();\n this.print(node.body, node);\n}\n\nexport { FunctionExpression as FunctionDeclaration };\n\nexport function ArrowFunctionExpression(\n this: Printer,\n node: t.ArrowFunctionExpression,\n parent: NodePath<t.ArrowFunctionExpression>[\"parent\"],\n) {\n if (node.async) {\n this.word(\"async\", true);\n this.space();\n }\n\n // Try to avoid printing parens in simple cases, but only if we're pretty\n // sure that they aren't needed by type annotations or potential newlines.\n let firstParam;\n if (\n !this.format.retainLines &&\n node.params.length === 1 &&\n isIdentifier((firstParam = node.params[0])) &&\n !hasTypesOrComments(node, firstParam)\n ) {\n this.print(firstParam, node, true);\n } else {\n this._params(node, undefined, parent);\n }\n\n this._predicate(node, true);\n this.space();\n // When printing (x)/*1*/=>{}, we remove the parentheses\n // and thus there aren't two contiguous inner tokens.\n // We forcefully print inner comments here.\n this.printInnerComments();\n this.token(\"=>\");\n\n this.space();\n\n this.print(node.body, node);\n}\n\nfunction hasTypesOrComments(\n node: t.ArrowFunctionExpression,\n param: t.Identifier,\n): boolean {\n return !!(\n node.typeParameters ||\n node.returnType ||\n node.predicate ||\n param.typeAnnotation ||\n param.optional ||\n // Flow does not support `foo /*: string*/ => {};`\n param.leadingComments?.length ||\n param.trailingComments?.length\n );\n}\n\nfunction _getFuncIdName(\n this: Printer,\n idNode: t.Expression | t.PrivateName,\n parent: NodePath<\n t.Function | t.TSDeclareMethod | t.TSDeclareFunction\n >[\"parent\"],\n) {\n let id: t.Expression | t.PrivateName | t.LVal = idNode;\n\n if (!id && parent) {\n const parentType = parent.type;\n\n if (parentType === \"VariableDeclarator\") {\n id = parent.id;\n } else if (\n parentType === \"AssignmentExpression\" ||\n parentType === \"AssignmentPattern\"\n ) {\n id = parent.left;\n } else if (\n parentType === \"ObjectProperty\" ||\n parentType === \"ClassProperty\"\n ) {\n if (!parent.computed || parent.key.type === \"StringLiteral\") {\n id = parent.key;\n }\n } else if (\n parentType === \"ClassPrivateProperty\" ||\n parentType === \"ClassAccessorProperty\"\n ) {\n id = parent.key;\n }\n }\n\n if (!id) return;\n\n let nameInfo;\n\n if (id.type === \"Identifier\") {\n nameInfo = {\n pos: id.loc?.start,\n name: id.loc?.identifierName || id.name,\n };\n } else if (id.type === \"PrivateName\") {\n nameInfo = {\n pos: id.loc?.start,\n name: \"#\" + id.id.name,\n };\n } else if (id.type === \"StringLiteral\") {\n nameInfo = {\n pos: id.loc?.start,\n name: id.value,\n };\n }\n\n return nameInfo;\n}\n"],"mappings":"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"}