@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":["_core","require","_helperReplaceSupers","_helperSplitExportDeclaration","_helperSkipTransparentExpressionWrappers","_fields","incrementId","id","idx","length","unshift","current","createPrivateUidGeneratorForClass","classPath","currentPrivateId","privateNames","Set","traverse","PrivateName","path","add","node","name","reifiedId","String","fromCharCode","has","t","privateName","identifier","createLazyPrivateUidGeneratorForClass","generator","replaceClassWithVar","className","type","varId","scope","generateUidIdentifierBasedOnNode","classId","rename","get","replaceWith","cloneNode","parent","generateDeclaredUidIdentifier","newClassExpr","classExpression","superClass","body","newPath","sequenceExpression","generateClassProperty","key","value","isStatic","classPrivateProperty","undefined","classProperty","addProxyAccessorsFor","element","originalKey","targetKey","version","isComputed","static","thisArg","thisExpression","getterBody","blockStatement","returnStatement","memberExpression","setterBody","expressionStatement","assignmentExpression","getter","setter","classPrivateMethod","classMethod","insertAfter","extractProxyAccessorsFor","template","expression","ast","prependExpressionsToFieldInitializer","expressions","fieldPath","initializer","push","unaryExpression","maybeSequenceExpression","prependExpressionsToConstructor","constructorPath","isProtoInitCallExpression","protoInitCall","isCallExpression","isIdentifier","callee","optimizeSuperCallAndExpressions","protoInitLocal","mergedSuperCall","callExpression","splice","isThisExpression","insertExpressionsAfterSuperCallAndOptimize","CallExpression","exit","isSuper","newNodes","map","expr","isCompletionRecord","skip","ClassMethod","kind","createConstructorFromExpressions","isDerivedClass","super","spreadElement","restElement","FIELD","ACCESSOR","METHOD","GETTER","SETTER","STATIC_OLD_VERSION","STATIC","DECORATORS_HAVE_THIS","getElementKind","isDecoratorInfo","info","filteredOrderedDecoratorInfo","filtered","filter","el","generateDecorationList","decorators","decoratorsThis","decsCount","hasOneThis","some","Boolean","decs","i","numericLiteral","hasThis","generateDecorationExprs","arrayExpression","flag","privateMethods","extractElementLocalAssignments","decorationInfo","localIds","locals","Array","isArray","addCallAccessorsFor","getId","setId","isNotTsParameter","movePrivateAccessor","methodLocalVar","params","block","isClassDecoratableElementPath","staticBlockToIIFE","arrowFunctionExpression","exprs","createSetFunctionNameCall","state","addHelper","createToPropertyKeyCall","propertyKey","checkPrivateMethodUpdateError","decoratedPrivateMethods","privateNameVisitor","privateNameVisitorFactory","privateNamesMap","parentPath","parentParentPath","left","buildCodeFrameError","Map","set","transformClass","constantSuper","propertyVisitor","classDecorators","hasElementDecorators","generateClassPrivateUid","assignments","scopeParent","memoiseExpression","hint","localEvaluatedId","staticInitLocal","isDecorated","ClassProperty","ClassPrivateProperty","ClassAccessorProperty","_staticInitLocal","_protoInitLocal","computed","newId","newField","keyPath","isConstantExpression","insertBefore","crawl","elementDecoratorInfo","classInitLocal","classIdLocal","maybeExtractDecorators","memoiseInPlace","needMemoise","decorator","isMemberExpression","object","needsDeclaraionForClassBinding","classDecorationsFlag","classDecorations","classDecorationsId","isClassDeclaration","dec","generateUidIdentifier","lastInstancePrivateName","needsInstancePrivateBrandCheck","fieldInitializerAssignments","hasDecorators","isPrivate","isClassPrivateProperty","isClassMethod","newFieldInitId","newValue","initId","valuePath","v","replaceSupers","ReplaceSupers","methodPath","objectRef","superRef","file","refToPreserve","replace","async","isAsync","functionExpression","remove","nameExpr","stringLiteral","d","elementDecorations","elementLocals","classLocals","classInitInjected","classInitCall","originalClass","statics","staticBlocks","forEach","isStaticBlock","isProperty","isClassProperty","isClassPrivateMethod","allValues","staticsClass","staticBlock","toStatement","constructorBody","newExpr","newExpression","arguments","maybeGenerateMemoised","createLocalsAssignment","variableDeclaration","variableDeclarator","size","maybePrivateBranName","setClassName","lhs","rhs","args","availableHelper","arrayPattern","objectPattern","objectProperty","isProtoKey","shouldTransformElement","shouldTransformClass","NamedEvaluationVisitoryFactory","isAnonymous","visitor","handleComputedProperty","propertyPath","keyValue","ref","VariableDeclarator","skipTransparentExprWrappers","AssignmentExpression","operator","AssignmentPattern","ObjectExpression","isDecoratedAnonymousClassExpression","isClassExpression","_default","assertVersion","assumption","loose","inherits","_assumption","VISITED","WeakSet","namedEvaluationVisitor","visitClass","_className","_node$id","Object","assign","ExportDefaultDeclaration","declaration","updatedVarDeclarationPath","splitExportDeclaration","ExportNamedDeclaration","Class"],"sources":["../src/decorators.ts"],"sourcesContent":["import type { NodePath, Scope, Visitor } from \"@babel/traverse\";\nimport { types as t, template } from \"@babel/core\";\nimport ReplaceSupers from \"@babel/helper-replace-supers\";\nimport splitExportDeclaration from \"@babel/helper-split-export-declaration\";\nimport * as charCodes from \"charcodes\";\nimport type { PluginAPI, PluginObject, PluginPass } from \"@babel/core\";\nimport { skipTransparentExprWrappers } from \"@babel/helper-skip-transparent-expression-wrappers\";\nimport {\n privateNameVisitorFactory,\n type PrivateNameVisitorState,\n} from \"./fields.ts\";\n\ninterface Options {\n /** @deprecated use `constantSuper` assumption instead. Only supported in 2021-12 version. */\n loose?: boolean;\n}\n\ntype ClassDecoratableElement =\n | t.ClassMethod\n | t.ClassPrivateMethod\n | t.ClassProperty\n | t.ClassPrivateProperty\n | t.ClassAccessorProperty;\n\ntype ClassElement =\n | ClassDecoratableElement\n | t.TSDeclareMethod\n | t.TSIndexSignature\n | t.StaticBlock;\n\ntype DecoratorVersionKind = \"2023-05\" | \"2023-01\" | \"2022-03\" | \"2021-12\";\n\nfunction incrementId(id: number[], idx = id.length - 1): void {\n // If index is -1, id needs an additional character, unshift A\n if (idx === -1) {\n id.unshift(charCodes.uppercaseA);\n return;\n }\n\n const current = id[idx];\n\n if (current === charCodes.uppercaseZ) {\n // if current is Z, skip to a\n id[idx] = charCodes.lowercaseA;\n } else if (current === charCodes.lowercaseZ) {\n // if current is z, reset to A and carry the 1\n id[idx] = charCodes.uppercaseA;\n incrementId(id, idx - 1);\n } else {\n // else, increment by one\n id[idx] = current + 1;\n }\n}\n\n/**\n * Generates a new private name that is unique to the given class. This can be\n * used to create extra class fields and methods for the implementation, while\n * keeping the length of those names as small as possible. This is important for\n * minification purposes (though private names can generally be minified,\n * transpilations and polyfills cannot yet).\n */\nfunction createPrivateUidGeneratorForClass(\n classPath: NodePath<t.ClassDeclaration | t.ClassExpression>,\n): () => t.PrivateName {\n const currentPrivateId: number[] = [];\n const privateNames = new Set<string>();\n\n classPath.traverse({\n PrivateName(path) {\n privateNames.add(path.node.id.name);\n },\n });\n\n return (): t.PrivateName => {\n let reifiedId;\n do {\n incrementId(currentPrivateId);\n reifiedId = String.fromCharCode(...currentPrivateId);\n } while (privateNames.has(reifiedId));\n\n return t.privateName(t.identifier(reifiedId));\n };\n}\n\n/**\n * Wraps the above generator function so that it's run lazily the first time\n * it's actually required. Several types of decoration do not require this, so it\n * saves iterating the class elements an additional time and allocating the space\n * for the Sets of element names.\n */\nfunction createLazyPrivateUidGeneratorForClass(\n classPath: NodePath<t.ClassDeclaration | t.ClassExpression>,\n): () => t.PrivateName {\n let generator: () => t.PrivateName;\n\n return (): t.PrivateName => {\n if (!generator) {\n generator = createPrivateUidGeneratorForClass(classPath);\n }\n\n return generator();\n };\n}\n\n/**\n * Takes a class definition and the desired class name if anonymous and\n * replaces it with an equivalent class declaration (path) which is then\n * assigned to a local variable (id). This allows us to reassign the local variable with the\n * decorated version of the class. The class definition retains its original\n * name so that `toString` is not affected, other references to the class\n * are renamed instead.\n */\nfunction replaceClassWithVar(\n path: NodePath<t.ClassDeclaration | t.ClassExpression>,\n className: string | t.Identifier | t.StringLiteral | undefined,\n): {\n id: t.Identifier;\n path: NodePath<t.ClassDeclaration | t.ClassExpression>;\n} {\n if (path.type === \"ClassDeclaration\") {\n const id = path.node.id;\n const className = id.name;\n const varId = path.scope.generateUidIdentifierBasedOnNode(id);\n const classId = t.identifier(className);\n\n path.scope.rename(className, varId.name);\n\n path.get(\"id\").replaceWith(classId);\n\n return { id: t.cloneNode(varId), path };\n } else {\n let varId: t.Identifier;\n\n if (path.node.id) {\n className = path.node.id.name;\n varId = path.scope.parent.generateDeclaredUidIdentifier(className);\n path.scope.rename(className, varId.name);\n } else {\n varId = path.scope.parent.generateDeclaredUidIdentifier(\n typeof className === \"string\" ? className : \"decorated_class\",\n );\n }\n\n const newClassExpr = t.classExpression(\n typeof className === \"string\" ? t.identifier(className) : null,\n path.node.superClass,\n path.node.body,\n );\n\n const [newPath] = path.replaceWith(\n t.sequenceExpression([newClassExpr, varId]),\n );\n\n return {\n id: t.cloneNode(varId),\n path: newPath.get(\"expressions.0\") as NodePath<t.ClassExpression>,\n };\n }\n}\n\nfunction generateClassProperty(\n key: t.PrivateName | t.Identifier,\n value: t.Expression | undefined,\n isStatic: boolean,\n): t.ClassPrivateProperty | t.ClassProperty {\n if (key.type === \"PrivateName\") {\n return t.classPrivateProperty(key, value, undefined, isStatic);\n } else {\n return t.classProperty(key, value, undefined, undefined, isStatic);\n }\n}\n\nfunction addProxyAccessorsFor(\n className: t.Identifier,\n element: NodePath<ClassDecoratableElement>,\n originalKey: t.PrivateName | t.Expression,\n targetKey: t.PrivateName,\n version: DecoratorVersionKind,\n isComputed = false,\n): void {\n const { static: isStatic } = element.node;\n\n const thisArg =\n version === \"2023-05\" && isStatic ? className : t.thisExpression();\n\n const getterBody = t.blockStatement([\n t.returnStatement(\n t.memberExpression(t.cloneNode(thisArg), t.cloneNode(targetKey)),\n ),\n ]);\n\n const setterBody = t.blockStatement([\n t.expressionStatement(\n t.assignmentExpression(\n \"=\",\n t.memberExpression(t.cloneNode(thisArg), t.cloneNode(targetKey)),\n t.identifier(\"v\"),\n ),\n ),\n ]);\n\n let getter: t.ClassMethod | t.ClassPrivateMethod,\n setter: t.ClassMethod | t.ClassPrivateMethod;\n\n if (originalKey.type === \"PrivateName\") {\n getter = t.classPrivateMethod(\n \"get\",\n t.cloneNode(originalKey),\n [],\n getterBody,\n isStatic,\n );\n setter = t.classPrivateMethod(\n \"set\",\n t.cloneNode(originalKey),\n [t.identifier(\"v\")],\n setterBody,\n isStatic,\n );\n } else {\n getter = t.classMethod(\n \"get\",\n t.cloneNode(originalKey),\n [],\n getterBody,\n isComputed,\n isStatic,\n );\n setter = t.classMethod(\n \"set\",\n t.cloneNode(originalKey),\n [t.identifier(\"v\")],\n setterBody,\n isComputed,\n isStatic,\n );\n }\n\n element.insertAfter(setter);\n element.insertAfter(getter);\n}\n\nfunction extractProxyAccessorsFor(\n targetKey: t.PrivateName,\n version: DecoratorVersionKind,\n): (t.FunctionExpression | t.ArrowFunctionExpression)[] {\n if (version !== \"2023-05\" && version !== \"2023-01\") {\n return [\n template.expression.ast`\n function () {\n return this.${t.cloneNode(targetKey)};\n }\n ` as t.FunctionExpression,\n template.expression.ast`\n function (value) {\n this.${t.cloneNode(targetKey)} = value;\n }\n ` as t.FunctionExpression,\n ];\n }\n return [\n template.expression.ast`\n o => o.${t.cloneNode(targetKey)}\n ` as t.ArrowFunctionExpression,\n template.expression.ast`\n (o, v) => o.${t.cloneNode(targetKey)} = v\n ` as t.ArrowFunctionExpression,\n ];\n}\n\n/**\n * Prepend expressions to the field initializer. If the initializer is not defined,\n * this function will wrap the last expression within a `void` unary expression.\n *\n * @param {t.Expression[]} expressions\n * @param {(NodePath<\n * t.ClassProperty | t.ClassPrivateProperty | t.ClassAccessorProperty\n * >)} fieldPath\n */\nfunction prependExpressionsToFieldInitializer(\n expressions: t.Expression[],\n fieldPath: NodePath<\n t.ClassProperty | t.ClassPrivateProperty | t.ClassAccessorProperty\n >,\n) {\n const initializer = fieldPath.get(\"value\");\n if (initializer.node) {\n expressions.push(initializer.node);\n } else if (expressions.length > 0) {\n expressions[expressions.length - 1] = t.unaryExpression(\n \"void\",\n expressions[expressions.length - 1],\n );\n }\n initializer.replaceWith(maybeSequenceExpression(expressions));\n}\n\nfunction prependExpressionsToConstructor(\n expressions: t.Expression[],\n constructorPath: NodePath<t.ClassMethod>,\n) {\n constructorPath.node.body.body.unshift(\n t.expressionStatement(maybeSequenceExpression(expressions)),\n );\n}\n\nfunction isProtoInitCallExpression(\n expression: t.Expression,\n protoInitCall: t.Identifier,\n) {\n return (\n t.isCallExpression(expression) &&\n t.isIdentifier(expression.callee, { name: protoInitCall.name })\n );\n}\n\n/**\n * Optimize super call and its following expressions\n *\n * @param {t.Expression[]} expressions Mutated by this function. The first element must by a super call\n * @param {t.Identifier} protoInitLocal The generated protoInit id\n * @returns optimized expression\n */\nfunction optimizeSuperCallAndExpressions(\n expressions: t.Expression[],\n protoInitLocal: t.Identifier,\n) {\n // Merge `super(), protoInit(this)` into `protoInit(super())`\n if (\n expressions.length >= 2 &&\n isProtoInitCallExpression(expressions[1], protoInitLocal)\n ) {\n const mergedSuperCall = t.callExpression(t.cloneNode(protoInitLocal), [\n expressions[0],\n ]);\n expressions.splice(0, 2, mergedSuperCall);\n }\n // Merge `protoInit(super()), this` into `protoInit(super())`\n if (\n expressions.length >= 2 &&\n t.isThisExpression(expressions[expressions.length - 1]) &&\n isProtoInitCallExpression(\n expressions[expressions.length - 2],\n protoInitLocal,\n )\n ) {\n expressions.splice(expressions.length - 1, 1);\n }\n return maybeSequenceExpression(expressions);\n}\n\n/**\n * Insert expressions immediately after super() and optimize the output if possible.\n * This function will preserve the completion result using the trailing this expression.\n *\n * @param {t.Expression[]} expressions\n * @param {NodePath<t.ClassMethod>} constructorPath\n * @param {t.Identifier} protoInitLocal The generated protoInit id\n * @returns\n */\nfunction insertExpressionsAfterSuperCallAndOptimize(\n expressions: t.Expression[],\n constructorPath: NodePath<t.ClassMethod>,\n protoInitLocal: t.Identifier,\n) {\n constructorPath.traverse({\n CallExpression: {\n exit(path) {\n if (!path.get(\"callee\").isSuper()) return;\n const newNodes = [\n path.node,\n ...expressions.map(expr => t.cloneNode(expr)),\n ];\n // preserve completion result if super() is in an RHS or a return statement\n if (path.isCompletionRecord()) {\n newNodes.push(t.thisExpression());\n }\n path.replaceWith(\n optimizeSuperCallAndExpressions(newNodes, protoInitLocal),\n );\n\n path.skip();\n },\n },\n ClassMethod(path) {\n if (path.node.kind === \"constructor\") {\n path.skip();\n }\n },\n });\n}\n\n/**\n * Build a class constructor path from the given expressions. If the class is\n * derived, the constructor will call super() first to ensure that `this`\n * in the expressions work as expected.\n *\n * @param {t.Expression[]} expressions\n * @param {boolean} isDerivedClass\n * @returns The class constructor node\n */\nfunction createConstructorFromExpressions(\n expressions: t.Expression[],\n isDerivedClass: boolean,\n) {\n const body: t.Statement[] = [\n t.expressionStatement(maybeSequenceExpression(expressions)),\n ];\n if (isDerivedClass) {\n body.unshift(\n t.expressionStatement(\n t.callExpression(t.super(), [t.spreadElement(t.identifier(\"args\"))]),\n ),\n );\n }\n return t.classMethod(\n \"constructor\",\n t.identifier(\"constructor\"),\n isDerivedClass ? [t.restElement(t.identifier(\"args\"))] : [],\n t.blockStatement(body),\n );\n}\n\n// 3 bits reserved to this (0-7)\nconst FIELD = 0;\nconst ACCESSOR = 1;\nconst METHOD = 2;\nconst GETTER = 3;\nconst SETTER = 4;\n\nconst STATIC_OLD_VERSION = 5; // Before 2023-05\nconst STATIC = 8; // 1 << 3\nconst DECORATORS_HAVE_THIS = 16; // 1 << 3\n\nfunction getElementKind(element: NodePath<ClassDecoratableElement>): number {\n switch (element.node.type) {\n case \"ClassProperty\":\n case \"ClassPrivateProperty\":\n return FIELD;\n case \"ClassAccessorProperty\":\n return ACCESSOR;\n case \"ClassMethod\":\n case \"ClassPrivateMethod\":\n if (element.node.kind === \"get\") {\n return GETTER;\n } else if (element.node.kind === \"set\") {\n return SETTER;\n } else {\n return METHOD;\n }\n }\n}\n\n// Information about the decorators applied to an element\ninterface DecoratorInfo {\n // The expressions of the decorators themselves\n decorators: t.Expression[];\n decoratorsThis: t.Expression[];\n\n // The kind of the decorated value, matches the kind value passed to applyDecs\n kind: number;\n\n // whether or not the field is static\n isStatic: boolean;\n\n // The name of the decorator\n name: t.StringLiteral | t.Expression;\n\n privateMethods:\n | (t.FunctionExpression | t.ArrowFunctionExpression)[]\n | undefined;\n\n // The names of local variables that will be used/returned from the decoration\n locals: t.Identifier | t.Identifier[] | undefined;\n}\n\n// Information about a computed property key. These must be evaluated\n// interspersed with decorator expressions, which is why they get added to the\n// array of DecoratorInfos later on.\ninterface ComputedPropInfo {\n localComputedNameId: t.Identifier;\n keyNode: t.Expression;\n}\n\nfunction isDecoratorInfo(\n info: DecoratorInfo | ComputedPropInfo,\n): info is DecoratorInfo {\n return \"decorators\" in info;\n}\n\nfunction filteredOrderedDecoratorInfo(\n info: (DecoratorInfo | ComputedPropInfo)[],\n): DecoratorInfo[] {\n const filtered = info.filter(isDecoratorInfo);\n\n return [\n ...filtered.filter(\n el => el.isStatic && el.kind >= ACCESSOR && el.kind <= SETTER,\n ),\n ...filtered.filter(\n el => !el.isStatic && el.kind >= ACCESSOR && el.kind <= SETTER,\n ),\n ...filtered.filter(el => el.isStatic && el.kind === FIELD),\n ...filtered.filter(el => !el.isStatic && el.kind === FIELD),\n ];\n}\n\nfunction generateDecorationList(\n decorators: t.Expression[],\n decoratorsThis: (t.Expression | null)[],\n version: DecoratorVersionKind,\n) {\n const decsCount = decorators.length;\n const hasOneThis = decoratorsThis.some(Boolean);\n const decs: t.Expression[] = [];\n for (let i = 0; i < decsCount; i++) {\n if (version === \"2023-05\" && hasOneThis) {\n decs.push(\n decoratorsThis[i] || t.unaryExpression(\"void\", t.numericLiteral(0)),\n );\n }\n decs.push(decorators[i]);\n }\n\n return { hasThis: hasOneThis, decs };\n}\n\nfunction generateDecorationExprs(\n info: (DecoratorInfo | ComputedPropInfo)[],\n version: DecoratorVersionKind,\n): t.ArrayExpression {\n return t.arrayExpression(\n filteredOrderedDecoratorInfo(info).map(el => {\n const { decs, hasThis } = generateDecorationList(\n el.decorators,\n el.decoratorsThis,\n version,\n );\n\n let flag = el.kind;\n if (el.isStatic) {\n flag += version === \"2023-05\" ? STATIC : STATIC_OLD_VERSION;\n }\n if (hasThis) flag += DECORATORS_HAVE_THIS;\n\n return t.arrayExpression([\n decs.length === 1 ? decs[0] : t.arrayExpression(decs),\n t.numericLiteral(flag),\n el.name,\n ...(el.privateMethods || []),\n ]);\n }),\n );\n}\n\nfunction extractElementLocalAssignments(\n decorationInfo: (DecoratorInfo | ComputedPropInfo)[],\n) {\n const localIds: t.Identifier[] = [];\n\n for (const el of filteredOrderedDecoratorInfo(decorationInfo)) {\n const { locals } = el;\n\n if (Array.isArray(locals)) {\n localIds.push(...locals);\n } else if (locals !== undefined) {\n localIds.push(locals);\n }\n }\n\n return localIds;\n}\n\nfunction addCallAccessorsFor(\n element: NodePath,\n key: t.PrivateName,\n getId: t.Identifier,\n setId: t.Identifier,\n) {\n element.insertAfter(\n t.classPrivateMethod(\n \"get\",\n t.cloneNode(key),\n [],\n t.blockStatement([\n t.returnStatement(\n t.callExpression(t.cloneNode(getId), [t.thisExpression()]),\n ),\n ]),\n ),\n );\n\n element.insertAfter(\n t.classPrivateMethod(\n \"set\",\n t.cloneNode(key),\n [t.identifier(\"v\")],\n t.blockStatement([\n t.expressionStatement(\n t.callExpression(t.cloneNode(setId), [\n t.thisExpression(),\n t.identifier(\"v\"),\n ]),\n ),\n ]),\n ),\n );\n}\n\nfunction isNotTsParameter(\n node: t.Identifier | t.Pattern | t.RestElement | t.TSParameterProperty,\n): node is t.Identifier | t.Pattern | t.RestElement {\n return node.type !== \"TSParameterProperty\";\n}\n\nfunction movePrivateAccessor(\n element: NodePath<t.ClassPrivateMethod>,\n key: t.PrivateName,\n methodLocalVar: t.Identifier,\n isStatic: boolean,\n) {\n let params: (t.Identifier | t.RestElement)[];\n let block: t.Statement[];\n\n if (element.node.kind === \"set\") {\n params = [t.identifier(\"v\")];\n block = [\n t.expressionStatement(\n t.callExpression(methodLocalVar, [\n t.thisExpression(),\n t.identifier(\"v\"),\n ]),\n ),\n ];\n } else {\n params = [];\n block = [\n t.returnStatement(t.callExpression(methodLocalVar, [t.thisExpression()])),\n ];\n }\n\n element.replaceWith(\n t.classPrivateMethod(\n element.node.kind,\n t.cloneNode(key),\n params,\n t.blockStatement(block),\n isStatic,\n ),\n );\n}\n\nfunction isClassDecoratableElementPath(\n path: NodePath<ClassElement>,\n): path is NodePath<ClassDecoratableElement> {\n const { type } = path;\n\n return (\n type !== \"TSDeclareMethod\" &&\n type !== \"TSIndexSignature\" &&\n type !== \"StaticBlock\"\n );\n}\n\nfunction staticBlockToIIFE(block: t.StaticBlock) {\n return t.callExpression(\n t.arrowFunctionExpression([], t.blockStatement(block.body)),\n [],\n );\n}\n\nfunction maybeSequenceExpression(exprs: t.Expression[]) {\n if (exprs.length === 0) return t.unaryExpression(\"void\", t.numericLiteral(0));\n if (exprs.length === 1) return exprs[0];\n return t.sequenceExpression(exprs);\n}\n\nfunction createSetFunctionNameCall(\n state: PluginPass,\n className: t.Identifier | t.StringLiteral,\n) {\n return t.callExpression(state.addHelper(\"setFunctionName\"), [\n t.thisExpression(),\n className,\n ]);\n}\n\nfunction createToPropertyKeyCall(state: PluginPass, propertyKey: t.Expression) {\n return t.callExpression(state.addHelper(\"toPropertyKey\"), [propertyKey]);\n}\n\nfunction checkPrivateMethodUpdateError(\n path: NodePath<t.Class>,\n decoratedPrivateMethods: Set<string>,\n) {\n const privateNameVisitor = privateNameVisitorFactory<\n PrivateNameVisitorState<null>,\n null\n >({\n PrivateName(path, state) {\n if (!state.privateNamesMap.has(path.node.id.name)) return;\n\n const parentPath = path.parentPath;\n const parentParentPath = parentPath.parentPath;\n\n if (\n // this.bar().#x = 123;\n (parentParentPath.node.type === \"AssignmentExpression\" &&\n parentParentPath.node.left === parentPath.node) ||\n // this.#x++;\n parentParentPath.node.type === \"UpdateExpression\" ||\n // ([...this.#x] = foo);\n parentParentPath.node.type === \"RestElement\" ||\n // ([this.#x] = foo);\n parentParentPath.node.type === \"ArrayPattern\" ||\n // ({ a: this.#x } = bar);\n (parentParentPath.node.type === \"ObjectProperty\" &&\n parentParentPath.node.value === parentPath.node &&\n parentParentPath.parentPath.type === \"ObjectPattern\") ||\n // for (this.#x of []);\n (parentParentPath.node.type === \"ForOfStatement\" &&\n parentParentPath.node.left === parentPath.node)\n ) {\n throw path.buildCodeFrameError(\n `Decorated private methods are read-only, but \"#${path.node.id.name}\" is updated via this expression.`,\n );\n }\n },\n });\n const privateNamesMap = new Map<string, null>();\n for (const name of decoratedPrivateMethods) {\n privateNamesMap.set(name, null);\n }\n path.traverse(privateNameVisitor, {\n privateNamesMap: privateNamesMap,\n });\n}\n\nfunction transformClass(\n path: NodePath<t.Class>,\n state: PluginPass,\n constantSuper: boolean,\n version: DecoratorVersionKind,\n className: string | t.Identifier | t.StringLiteral | undefined,\n propertyVisitor: Visitor<PluginPass>,\n): NodePath {\n const body = path.get(\"body.body\");\n\n const classDecorators = path.node.decorators;\n let hasElementDecorators = false;\n\n const generateClassPrivateUid = createLazyPrivateUidGeneratorForClass(path);\n\n const assignments: t.AssignmentExpression[] = [];\n const scopeParent: Scope = path.scope.parent;\n const memoiseExpression = (expression: t.Expression, hint: string) => {\n const localEvaluatedId = scopeParent.generateDeclaredUidIdentifier(hint);\n assignments.push(t.assignmentExpression(\"=\", localEvaluatedId, expression));\n return t.cloneNode(localEvaluatedId);\n };\n\n let protoInitLocal: t.Identifier;\n let staticInitLocal: t.Identifier;\n // Iterate over the class to see if we need to decorate it, and also to\n // transform simple auto accessors which are not decorated, and handle inferred\n // class name when the initializer of the class field is a class expression\n for (const element of body) {\n if (!isClassDecoratableElementPath(element)) {\n continue;\n }\n\n if (isDecorated(element.node)) {\n switch (element.node.type) {\n case \"ClassProperty\":\n // @ts-expect-error todo: propertyVisitor.ClassProperty should be callable. Improve typings.\n propertyVisitor.ClassProperty(\n element as NodePath<t.ClassProperty>,\n state,\n );\n break;\n case \"ClassPrivateProperty\":\n // @ts-expect-error todo: propertyVisitor.ClassPrivateProperty should be callable. Improve typings.\n propertyVisitor.ClassPrivateProperty(\n element as NodePath<t.ClassPrivateProperty>,\n state,\n );\n break;\n case \"ClassAccessorProperty\":\n // @ts-expect-error todo: propertyVisitor.ClassAccessorProperty should be callable. Improve typings.\n propertyVisitor.ClassAccessorProperty(\n element as NodePath<t.ClassAccessorProperty>,\n state,\n );\n /* fallthrough */\n default:\n if (element.node.static) {\n staticInitLocal ??=\n scopeParent.generateDeclaredUidIdentifier(\"initStatic\");\n } else {\n protoInitLocal ??=\n scopeParent.generateDeclaredUidIdentifier(\"initProto\");\n }\n break;\n }\n hasElementDecorators = true;\n } else if (element.node.type === \"ClassAccessorProperty\") {\n // @ts-expect-error todo: propertyVisitor.ClassAccessorProperty should be callable. Improve typings.\n propertyVisitor.ClassAccessorProperty(\n element as NodePath<t.ClassAccessorProperty>,\n state,\n );\n const { key, value, static: isStatic, computed } = element.node;\n\n const newId = generateClassPrivateUid();\n const newField = generateClassProperty(newId, value, isStatic);\n const keyPath = element.get(\"key\");\n const [newPath] = element.replaceWith(newField);\n\n addProxyAccessorsFor(\n path.node.id,\n newPath,\n computed && !keyPath.isConstantExpression()\n ? memoiseExpression(\n createToPropertyKeyCall(state, key as t.Expression),\n \"computedKey\",\n )\n : key,\n newId,\n version,\n computed,\n );\n }\n }\n\n if (!classDecorators && !hasElementDecorators) {\n // If nothing is decorated but we have assignments, it must be the memoised\n // computed keys of class accessors\n if (assignments.length > 0) {\n path.insertBefore(assignments.map(expr => t.expressionStatement(expr)));\n\n // Recrawl the scope to make sure new identifiers are properly synced\n path.scope.crawl();\n }\n // If nothing is decorated and no assignments inserted, return\n return;\n }\n\n const elementDecoratorInfo: (DecoratorInfo | ComputedPropInfo)[] = [];\n\n let constructorPath: NodePath<t.ClassMethod> | undefined;\n const decoratedPrivateMethods = new Set<string>();\n\n let classInitLocal: t.Identifier, classIdLocal: t.Identifier;\n\n const decoratorsThis = new Map<t.Decorator, t.Expression>();\n const maybeExtractDecorators = (\n decorators: t.Decorator[],\n memoiseInPlace: boolean,\n ) => {\n let needMemoise = false;\n for (const decorator of decorators) {\n const { expression } = decorator;\n if (version === \"2023-05\" && t.isMemberExpression(expression)) {\n let object;\n if (\n t.isSuper(expression.object) ||\n t.isThisExpression(expression.object)\n ) {\n needMemoise = true;\n if (memoiseInPlace) {\n object = memoiseExpression(t.thisExpression(), \"obj\");\n } else {\n object = t.thisExpression();\n }\n } else {\n if (!scopeParent.isStatic(expression.object)) {\n needMemoise = true;\n if (memoiseInPlace) {\n expression.object = memoiseExpression(expression.object, \"obj\");\n }\n }\n object = t.cloneNode(expression.object);\n }\n decoratorsThis.set(decorator, object);\n }\n if (!scopeParent.isStatic(expression)) {\n needMemoise = true;\n if (memoiseInPlace) {\n decorator.expression = memoiseExpression(expression, \"dec\");\n }\n }\n }\n return needMemoise && !memoiseInPlace;\n };\n\n let needsDeclaraionForClassBinding = false;\n let classDecorationsFlag = 0;\n let classDecorations: t.Expression[] = [];\n let classDecorationsId: t.Identifier;\n if (classDecorators) {\n classInitLocal = scopeParent.generateDeclaredUidIdentifier(\"initClass\");\n needsDeclaraionForClassBinding = path.isClassDeclaration();\n ({ id: classIdLocal, path } = replaceClassWithVar(path, className));\n\n path.node.decorators = null;\n\n const needMemoise = maybeExtractDecorators(classDecorators, false);\n\n const { hasThis, decs } = generateDecorationList(\n classDecorators.map(el => el.expression),\n classDecorators.map(dec => decoratorsThis.get(dec)),\n version,\n );\n classDecorationsFlag = hasThis ? 1 : 0;\n classDecorations = decs;\n\n if (needMemoise) {\n classDecorationsId = memoiseExpression(\n t.arrayExpression(classDecorations),\n \"classDecs\",\n );\n }\n } else {\n if (!path.node.id) {\n path.node.id = path.scope.generateUidIdentifier(\"Class\");\n }\n classIdLocal = t.cloneNode(path.node.id);\n }\n\n let lastInstancePrivateName: t.PrivateName;\n let needsInstancePrivateBrandCheck = false;\n\n let fieldInitializerAssignments = [];\n\n if (hasElementDecorators) {\n if (protoInitLocal) {\n const protoInitCall = t.callExpression(t.cloneNode(protoInitLocal), [\n t.thisExpression(),\n ]);\n fieldInitializerAssignments.push(protoInitCall);\n }\n for (const element of body) {\n if (!isClassDecoratableElementPath(element)) {\n continue;\n }\n\n const { node } = element;\n const decorators = element.node.decorators;\n\n const hasDecorators = !!decorators?.length;\n\n if (hasDecorators) {\n maybeExtractDecorators(decorators, true);\n }\n\n const isComputed = \"computed\" in element.node && element.node.computed;\n if (isComputed) {\n if (!element.get(\"key\").isConstantExpression()) {\n node.key = memoiseExpression(\n createToPropertyKeyCall(state, node.key as t.Expression),\n \"computedKey\",\n );\n }\n }\n\n const kind = getElementKind(element);\n const { key } = node;\n\n const isPrivate = key.type === \"PrivateName\";\n\n const isStatic = element.node.static;\n\n let name = \"computedKey\";\n\n if (isPrivate) {\n name = key.id.name;\n } else if (!isComputed && key.type === \"Identifier\") {\n name = key.name;\n }\n\n if (isPrivate && !isStatic) {\n if (hasDecorators) {\n needsInstancePrivateBrandCheck = true;\n }\n if (t.isClassPrivateProperty(node) || !lastInstancePrivateName) {\n lastInstancePrivateName = key;\n }\n }\n\n if (element.isClassMethod({ kind: \"constructor\" })) {\n constructorPath = element;\n }\n\n if (hasDecorators) {\n let locals: t.Identifier | t.Identifier[];\n let privateMethods: Array<\n t.FunctionExpression | t.ArrowFunctionExpression\n >;\n\n if (kind === ACCESSOR) {\n const { value } = element.node as t.ClassAccessorProperty;\n\n const params: t.Expression[] = [t.thisExpression()];\n\n if (value) {\n params.push(t.cloneNode(value));\n }\n\n const newId = generateClassPrivateUid();\n const newFieldInitId =\n element.scope.parent.generateDeclaredUidIdentifier(`init_${name}`);\n const newValue = t.callExpression(\n t.cloneNode(newFieldInitId),\n params,\n );\n\n const newField = generateClassProperty(newId, newValue, isStatic);\n const [newPath] = element.replaceWith(newField);\n\n if (isPrivate) {\n privateMethods = extractProxyAccessorsFor(newId, version);\n\n const getId = newPath.scope.parent.generateDeclaredUidIdentifier(\n `get_${name}`,\n );\n const setId = newPath.scope.parent.generateDeclaredUidIdentifier(\n `set_${name}`,\n );\n\n addCallAccessorsFor(newPath, key, getId, setId);\n\n locals = [newFieldInitId, getId, setId];\n } else {\n addProxyAccessorsFor(\n path.node.id,\n newPath,\n key,\n newId,\n version,\n isComputed,\n );\n locals = newFieldInitId;\n }\n } else if (kind === FIELD) {\n const initId = element.scope.parent.generateDeclaredUidIdentifier(\n `init_${name}`,\n );\n const valuePath = (\n element as NodePath<t.ClassProperty | t.ClassPrivateProperty>\n ).get(\"value\");\n\n valuePath.replaceWith(\n t.callExpression(\n t.cloneNode(initId),\n [t.thisExpression(), valuePath.node].filter(v => v),\n ),\n );\n\n locals = initId;\n\n if (isPrivate) {\n privateMethods = extractProxyAccessorsFor(key, version);\n }\n } else if (isPrivate) {\n locals = element.scope.parent.generateDeclaredUidIdentifier(\n `call_${name}`,\n );\n\n const replaceSupers = new ReplaceSupers({\n constantSuper,\n methodPath: element as NodePath<t.ClassPrivateMethod>,\n objectRef: classIdLocal,\n superRef: path.node.superClass,\n file: state.file,\n refToPreserve: classIdLocal,\n });\n\n replaceSupers.replace();\n\n const {\n params,\n body,\n async: isAsync,\n } = element.node as t.ClassPrivateMethod;\n\n privateMethods = [\n t.functionExpression(\n undefined,\n params.filter(isNotTsParameter),\n body,\n isAsync,\n ),\n ];\n\n if (kind === GETTER || kind === SETTER) {\n movePrivateAccessor(\n element as NodePath<t.ClassPrivateMethod>,\n t.cloneNode(key),\n t.cloneNode(locals),\n isStatic,\n );\n } else {\n const node = element.node as t.ClassPrivateMethod;\n\n // Unshift\n path.node.body.body.unshift(\n t.classPrivateProperty(key, t.cloneNode(locals), [], node.static),\n );\n\n decoratedPrivateMethods.add(key.id.name);\n\n element.remove();\n }\n }\n\n let nameExpr: t.Expression;\n\n if (isComputed) {\n nameExpr = t.cloneNode(key as t.Expression);\n } else if (key.type === \"PrivateName\") {\n nameExpr = t.stringLiteral(key.id.name);\n } else if (key.type === \"Identifier\") {\n nameExpr = t.stringLiteral(key.name);\n } else {\n nameExpr = t.cloneNode(key as t.Expression);\n }\n\n elementDecoratorInfo.push({\n kind,\n decorators: decorators.map(d => d.expression),\n decoratorsThis: decorators.map(d => decoratorsThis.get(d)),\n name: nameExpr,\n isStatic,\n privateMethods,\n locals,\n });\n\n if (element.node) {\n element.node.decorators = null;\n }\n }\n\n if (\n fieldInitializerAssignments.length > 0 &&\n !isStatic &&\n (kind === FIELD || kind === ACCESSOR)\n ) {\n prependExpressionsToFieldInitializer(\n fieldInitializerAssignments,\n element as NodePath<\n t.ClassProperty | t.ClassPrivateProperty | t.ClassAccessorProperty\n >,\n );\n fieldInitializerAssignments = [];\n }\n }\n }\n\n if (fieldInitializerAssignments.length > 0) {\n const isDerivedClass = !!path.node.superClass;\n if (constructorPath) {\n if (isDerivedClass) {\n insertExpressionsAfterSuperCallAndOptimize(\n fieldInitializerAssignments,\n constructorPath,\n protoInitLocal,\n );\n } else {\n prependExpressionsToConstructor(\n fieldInitializerAssignments,\n constructorPath,\n );\n }\n } else {\n path.node.body.body.unshift(\n createConstructorFromExpressions(\n fieldInitializerAssignments,\n isDerivedClass,\n ),\n );\n }\n fieldInitializerAssignments = [];\n }\n\n const elementDecorations = generateDecorationExprs(\n elementDecoratorInfo,\n version,\n );\n\n const elementLocals: t.Identifier[] =\n extractElementLocalAssignments(elementDecoratorInfo);\n\n if (protoInitLocal) {\n elementLocals.push(protoInitLocal);\n }\n\n if (staticInitLocal) {\n elementLocals.push(staticInitLocal);\n }\n\n const classLocals: t.Identifier[] = [];\n let classInitInjected = false;\n const classInitCall =\n classInitLocal && t.callExpression(t.cloneNode(classInitLocal), []);\n\n const originalClass = path.node;\n\n if (classDecorators) {\n classLocals.push(classIdLocal, classInitLocal);\n const statics: (\n | t.ClassProperty\n | t.ClassPrivateProperty\n | t.ClassPrivateMethod\n )[] = [];\n let staticBlocks: t.StaticBlock[] = [];\n path.get(\"body.body\").forEach(element => {\n // Static blocks cannot be compiled to \"instance blocks\", but we can inline\n // them as IIFEs in the next property.\n if (element.isStaticBlock()) {\n staticBlocks.push(element.node);\n element.remove();\n return;\n }\n\n const isProperty =\n element.isClassProperty() || element.isClassPrivateProperty();\n\n if (\n (isProperty || element.isClassPrivateMethod()) &&\n element.node.static\n ) {\n if (isProperty && staticBlocks.length > 0) {\n const allValues: t.Expression[] = staticBlocks.map(staticBlockToIIFE);\n if (element.node.value) allValues.push(element.node.value);\n element.node.value = maybeSequenceExpression(allValues);\n staticBlocks = [];\n }\n\n element.node.static = false;\n statics.push(element.node);\n element.remove();\n }\n });\n\n if (statics.length > 0 || staticBlocks.length > 0) {\n const staticsClass = template.expression.ast`\n class extends ${state.addHelper(\"identity\")} {}\n ` as t.ClassExpression;\n staticsClass.body.body = [\n t.staticBlock([\n t.toStatement(originalClass, true) ||\n // If toStatement returns false, originalClass must be an anonymous ClassExpression,\n // because `export default @dec ...` has been handled in the export visitor before.\n t.expressionStatement(originalClass as t.ClassExpression),\n ]),\n ...statics,\n ];\n\n const constructorBody: t.Expression[] = [];\n\n const newExpr = t.newExpression(staticsClass, []);\n\n if (staticBlocks.length > 0) {\n constructorBody.push(...staticBlocks.map(staticBlockToIIFE));\n }\n if (classInitCall) {\n classInitInjected = true;\n constructorBody.push(classInitCall);\n }\n if (constructorBody.length > 0) {\n constructorBody.unshift(\n t.callExpression(t.super(), [t.cloneNode(classIdLocal)]),\n );\n\n staticsClass.body.body.push(\n t.classMethod(\n \"constructor\",\n t.identifier(\"constructor\"),\n [],\n t.blockStatement([\n t.expressionStatement(t.sequenceExpression(constructorBody)),\n ]),\n ),\n );\n } else {\n newExpr.arguments.push(t.cloneNode(classIdLocal));\n }\n\n path.replaceWith(newExpr);\n }\n }\n if (!classInitInjected && classInitCall) {\n path.node.body.body.push(\n t.staticBlock([t.expressionStatement(classInitCall)]),\n );\n }\n\n let { superClass } = originalClass;\n if (superClass && (process.env.BABEL_8_BREAKING || version === \"2023-05\")) {\n const id = path.scope.maybeGenerateMemoised(superClass);\n if (id) {\n originalClass.superClass = t.assignmentExpression(\"=\", id, superClass);\n superClass = id;\n }\n }\n originalClass.body.body.unshift(\n t.staticBlock(\n [\n t.expressionStatement(\n createLocalsAssignment(\n elementLocals,\n classLocals,\n elementDecorations,\n classDecorationsId\n ? t.cloneNode(classDecorationsId)\n : t.arrayExpression(classDecorations),\n t.numericLiteral(classDecorationsFlag),\n needsInstancePrivateBrandCheck ? lastInstancePrivateName : null,\n typeof className === \"object\" ? className : undefined,\n t.cloneNode(superClass),\n state,\n version,\n ),\n ),\n staticInitLocal &&\n t.expressionStatement(\n t.callExpression(t.cloneNode(staticInitLocal), [\n t.thisExpression(),\n ]),\n ),\n ].filter(Boolean),\n ),\n );\n\n // When path is a ClassExpression, path.insertBefore will convert `path`\n // into a SequenceExpression\n path.insertBefore(assignments.map(expr => t.expressionStatement(expr)));\n\n if (needsDeclaraionForClassBinding) {\n path.insertBefore(\n t.variableDeclaration(\"let\", [\n t.variableDeclarator(t.cloneNode(classIdLocal)),\n ]),\n );\n }\n\n if (decoratedPrivateMethods.size > 0) {\n checkPrivateMethodUpdateError(path, decoratedPrivateMethods);\n }\n\n // Recrawl the scope to make sure new identifiers are properly synced\n path.scope.crawl();\n\n return path;\n}\n\nfunction createLocalsAssignment(\n elementLocals: t.Identifier[],\n classLocals: t.Identifier[],\n elementDecorations: t.ArrayExpression | t.Identifier,\n classDecorations: t.ArrayExpression | t.Identifier,\n classDecorationsFlag: t.NumericLiteral,\n maybePrivateBranName: t.PrivateName | null,\n setClassName: t.Identifier | t.StringLiteral | undefined,\n superClass: null | t.Expression,\n state: PluginPass,\n version: DecoratorVersionKind,\n) {\n let lhs, rhs;\n const args: t.Expression[] = [\n setClassName\n ? createSetFunctionNameCall(state, setClassName)\n : t.thisExpression(),\n elementDecorations,\n classDecorations,\n ];\n\n if (!process.env.BABEL_8_BREAKING) {\n if (\n version === \"2021-12\" ||\n (version === \"2022-03\" && !state.availableHelper(\"applyDecs2203R\"))\n ) {\n const lhs = t.arrayPattern([...elementLocals, ...classLocals]);\n const rhs = t.callExpression(\n state.addHelper(version === \"2021-12\" ? \"applyDecs\" : \"applyDecs2203\"),\n args,\n );\n return t.assignmentExpression(\"=\", lhs, rhs);\n }\n }\n\n if (process.env.BABEL_8_BREAKING || version === \"2023-05\") {\n if (\n maybePrivateBranName ||\n superClass ||\n classDecorationsFlag.value !== 0\n ) {\n args.push(classDecorationsFlag);\n }\n if (maybePrivateBranName) {\n args.push(\n template.expression.ast`\n _ => ${t.cloneNode(maybePrivateBranName)} in _\n ` as t.ArrowFunctionExpression,\n );\n } else if (superClass) {\n args.push(t.unaryExpression(\"void\", t.numericLiteral(0)));\n }\n if (superClass) args.push(superClass);\n rhs = t.callExpression(state.addHelper(\"applyDecs2305\"), args);\n } else if (version === \"2023-01\") {\n if (maybePrivateBranName) {\n args.push(\n template.expression.ast`\n _ => ${t.cloneNode(maybePrivateBranName)} in _\n ` as t.ArrowFunctionExpression,\n );\n }\n rhs = t.callExpression(state.addHelper(\"applyDecs2301\"), args);\n } else {\n rhs = t.callExpression(state.addHelper(\"applyDecs2203R\"), args);\n }\n // optimize `{ c: [classLocals] } = applyapplyDecs2203R(...)` to\n // `[classLocals] = applyapplyDecs2203R(...).c`\n if (elementLocals.length > 0) {\n if (classLocals.length > 0) {\n lhs = t.objectPattern([\n t.objectProperty(t.identifier(\"e\"), t.arrayPattern(elementLocals)),\n t.objectProperty(t.identifier(\"c\"), t.arrayPattern(classLocals)),\n ]);\n } else {\n lhs = t.arrayPattern(elementLocals);\n rhs = t.memberExpression(rhs, t.identifier(\"e\"), false, false);\n }\n } else {\n // invariant: classLocals.length > 0\n lhs = t.arrayPattern(classLocals);\n rhs = t.memberExpression(rhs, t.identifier(\"c\"), false, false);\n }\n\n return t.assignmentExpression(\"=\", lhs, rhs);\n}\n\nfunction isProtoKey(\n node: t.Identifier | t.StringLiteral | t.BigIntLiteral | t.NumericLiteral,\n) {\n return node.type === \"Identifier\"\n ? node.name === \"__proto__\"\n : node.value === \"__proto__\";\n}\n\nfunction isDecorated(node: t.Class | ClassDecoratableElement) {\n return node.decorators && node.decorators.length > 0;\n}\n\nfunction shouldTransformElement(node: ClassElement) {\n switch (node.type) {\n case \"ClassAccessorProperty\":\n return true;\n case \"ClassMethod\":\n case \"ClassProperty\":\n case \"ClassPrivateMethod\":\n case \"ClassPrivateProperty\":\n return isDecorated(node);\n default:\n return false;\n }\n}\n\nfunction shouldTransformClass(node: t.Class) {\n return isDecorated(node) || node.body.body.some(shouldTransformElement);\n}\n\n// Todo: unify name references logic with helper-function-name\nfunction NamedEvaluationVisitoryFactory(\n isAnonymous: (path: NodePath) => boolean,\n visitor: (\n path: NodePath,\n state: PluginPass,\n name:\n | string\n | t.Identifier\n | t.StringLiteral\n | t.NumericLiteral\n | t.BigIntLiteral,\n ) => void,\n) {\n function handleComputedProperty(\n propertyPath: NodePath<\n t.ObjectProperty | t.ClassProperty | t.ClassAccessorProperty\n >,\n key: t.Expression,\n state: PluginPass,\n ): t.StringLiteral | t.Identifier {\n switch (key.type) {\n case \"StringLiteral\":\n return t.stringLiteral(key.value);\n case \"NumericLiteral\":\n case \"BigIntLiteral\": {\n const keyValue = key.value + \"\";\n propertyPath.get(\"key\").replaceWith(t.stringLiteral(keyValue));\n return t.stringLiteral(keyValue);\n }\n default: {\n const ref = propertyPath.scope.maybeGenerateMemoised(key);\n propertyPath\n .get(\"key\")\n .replaceWith(\n t.assignmentExpression(\n \"=\",\n ref,\n createToPropertyKeyCall(state, key),\n ),\n );\n return t.cloneNode(ref);\n }\n }\n }\n return {\n VariableDeclarator(path, state) {\n const id = path.node.id;\n if (id.type === \"Identifier\") {\n const initializer = skipTransparentExprWrappers(path.get(\"init\"));\n if (isAnonymous(initializer)) {\n const name = id.name;\n visitor(initializer, state, name);\n }\n }\n },\n AssignmentExpression(path, state) {\n const id = path.node.left;\n if (id.type === \"Identifier\") {\n const initializer = skipTransparentExprWrappers(path.get(\"right\"));\n if (isAnonymous(initializer)) {\n switch (path.node.operator) {\n case \"=\":\n case \"&&=\":\n case \"||=\":\n case \"??=\":\n visitor(initializer, state, id.name);\n }\n }\n }\n },\n AssignmentPattern(path, state) {\n const id = path.node.left;\n if (id.type === \"Identifier\") {\n const initializer = skipTransparentExprWrappers(path.get(\"right\"));\n if (isAnonymous(initializer)) {\n const name = id.name;\n visitor(initializer, state, name);\n }\n }\n },\n // We listen on ObjectExpression so that we don't have to visit\n // the object properties under object patterns\n ObjectExpression(path, state) {\n for (const propertyPath of path.get(\"properties\")) {\n const { node } = propertyPath;\n if (node.type !== \"ObjectProperty\") continue;\n const id = node.key;\n const initializer = skipTransparentExprWrappers(\n propertyPath.get(\"value\"),\n );\n if (isAnonymous(initializer)) {\n if (!node.computed) {\n // 13.2.5.5 RS: PropertyDefinitionEvaluation\n if (!isProtoKey(id as t.StringLiteral | t.Identifier)) {\n if (id.type === \"Identifier\") {\n visitor(initializer, state, id.name);\n } else {\n const className = t.stringLiteral(\n (id as t.StringLiteral | t.NumericLiteral | t.BigIntLiteral)\n .value + \"\",\n );\n visitor(initializer, state, className);\n }\n }\n } else {\n const ref = handleComputedProperty(\n propertyPath as NodePath<t.ObjectProperty>,\n // The key of a computed object property must not be a private name\n id as t.Expression,\n state,\n );\n visitor(initializer, state, ref);\n }\n }\n }\n },\n ClassPrivateProperty(path, state) {\n const { node } = path;\n const initializer = skipTransparentExprWrappers(path.get(\"value\"));\n if (isAnonymous(initializer)) {\n const className = t.stringLiteral(\"#\" + node.key.id.name);\n visitor(initializer, state, className);\n }\n },\n ClassAccessorProperty(path, state) {\n const { node } = path;\n const id = node.key;\n const initializer = skipTransparentExprWrappers(path.get(\"value\"));\n if (isAnonymous(initializer)) {\n if (!node.computed) {\n if (id.type === \"Identifier\") {\n visitor(initializer, state, id.name);\n } else if (id.type === \"PrivateName\") {\n const className = t.stringLiteral(\"#\" + id.id.name);\n visitor(initializer, state, className);\n } else {\n const className = t.stringLiteral(\n (id as t.StringLiteral | t.NumericLiteral | t.BigIntLiteral)\n .value + \"\",\n );\n visitor(initializer, state, className);\n }\n } else {\n const ref = handleComputedProperty(\n path,\n // The key of a computed accessor property must not be a private name\n id as t.Expression,\n state,\n );\n visitor(initializer, state, ref);\n }\n }\n },\n ClassProperty(path, state) {\n const { node } = path;\n const id = node.key;\n const initializer = skipTransparentExprWrappers(path.get(\"value\"));\n if (isAnonymous(initializer)) {\n if (!node.computed) {\n if (id.type === \"Identifier\") {\n visitor(initializer, state, id.name);\n } else {\n const className = t.stringLiteral(\n (id as t.StringLiteral | t.NumericLiteral | t.BigIntLiteral)\n .value + \"\",\n );\n visitor(initializer, state, className);\n }\n } else {\n const ref = handleComputedProperty(path, id, state);\n visitor(initializer, state, ref);\n }\n }\n },\n } satisfies Visitor<PluginPass>;\n}\n\nfunction isDecoratedAnonymousClassExpression(path: NodePath) {\n return (\n path.isClassExpression({ id: null }) && shouldTransformClass(path.node)\n );\n}\n\nexport default function (\n { assertVersion, assumption }: PluginAPI,\n { loose }: Options,\n // TODO(Babel 8): Only keep 2023-05\n version: \"2023-05\" | \"2023-01\" | \"2022-03\" | \"2021-12\",\n inherits: PluginObject[\"inherits\"],\n): PluginObject {\n if (process.env.BABEL_8_BREAKING) {\n assertVersion(process.env.IS_PUBLISH ? PACKAGE_JSON.version : \"^7.21.0\");\n } else {\n if (version === \"2023-05\" || version === \"2023-01\") {\n assertVersion(\"^7.21.0\");\n } else if (version === \"2021-12\") {\n assertVersion(\"^7.16.0\");\n } else {\n assertVersion(\"^7.19.0\");\n }\n }\n\n const VISITED = new WeakSet<NodePath>();\n const constantSuper = assumption(\"constantSuper\") ?? loose;\n\n const namedEvaluationVisitor: Visitor<PluginPass> =\n NamedEvaluationVisitoryFactory(\n isDecoratedAnonymousClassExpression,\n visitClass,\n );\n\n function visitClass(\n path: NodePath<t.Class>,\n state: PluginPass,\n className: string | t.Identifier | t.StringLiteral | undefined,\n ) {\n if (VISITED.has(path)) return;\n const { node } = path;\n className ??= node.id?.name;\n const newPath = transformClass(\n path,\n state,\n constantSuper,\n version,\n className,\n namedEvaluationVisitor,\n );\n if (newPath) {\n VISITED.add(newPath);\n return;\n }\n VISITED.add(path);\n }\n\n return {\n name: \"proposal-decorators\",\n inherits: inherits,\n\n visitor: {\n ExportDefaultDeclaration(path, state) {\n const { declaration } = path.node;\n if (\n declaration?.type === \"ClassDeclaration\" &&\n // When compiling class decorators we need to replace the class\n // binding, so we must split it in two separate declarations.\n isDecorated(declaration)\n ) {\n const isAnonymous = !declaration.id;\n const updatedVarDeclarationPath = splitExportDeclaration(\n path,\n ) as unknown as NodePath<t.ClassDeclaration>;\n if (isAnonymous) {\n visitClass(\n updatedVarDeclarationPath,\n state,\n t.stringLiteral(\"default\"),\n );\n }\n }\n },\n ExportNamedDeclaration(path) {\n const { declaration } = path.node;\n if (\n declaration?.type === \"ClassDeclaration\" &&\n // When compiling class decorators we need to replace the class\n // binding, so we must split it in two separate declarations.\n isDecorated(declaration)\n ) {\n splitExportDeclaration(path);\n }\n },\n\n Class(path, state) {\n visitClass(path, state, undefined);\n },\n\n ...namedEvaluationVisitor,\n },\n };\n}\n"],"mappings":"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"}
@@ -0,0 +1,132 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.FEATURES = void 0;
7
+ exports.enableFeature = enableFeature;
8
+ exports.isLoose = isLoose;
9
+ exports.shouldTransform = shouldTransform;
10
+ var _decorators = require("./decorators-2018-09.js");
11
+ const FEATURES = exports.FEATURES = Object.freeze({
12
+ fields: 1 << 1,
13
+ privateMethods: 1 << 2,
14
+ decorators: 1 << 3,
15
+ privateIn: 1 << 4,
16
+ staticBlocks: 1 << 5
17
+ });
18
+ const featuresSameLoose = new Map([[FEATURES.fields, "@babel/plugin-transform-class-properties"], [FEATURES.privateMethods, "@babel/plugin-transform-private-methods"], [FEATURES.privateIn, "@babel/plugin-transform-private-property-in-object"]]);
19
+ const featuresKey = "@babel/plugin-class-features/featuresKey";
20
+ const looseKey = "@babel/plugin-class-features/looseKey";
21
+ {
22
+ var looseLowPriorityKey = "@babel/plugin-class-features/looseLowPriorityKey/#__internal__@babel/preset-env__please-overwrite-loose-instead-of-throwing";
23
+ }
24
+ {
25
+ var canIgnoreLoose = function (file, feature) {
26
+ return !!(file.get(looseLowPriorityKey) & feature);
27
+ };
28
+ }
29
+ function enableFeature(file, feature, loose) {
30
+ if (!hasFeature(file, feature) || canIgnoreLoose(file, feature)) {
31
+ file.set(featuresKey, file.get(featuresKey) | feature);
32
+ if (loose === "#__internal__@babel/preset-env__prefer-true-but-false-is-ok-if-it-prevents-an-error") {
33
+ setLoose(file, feature, true);
34
+ file.set(looseLowPriorityKey, file.get(looseLowPriorityKey) | feature);
35
+ } else if (loose === "#__internal__@babel/preset-env__prefer-false-but-true-is-ok-if-it-prevents-an-error") {
36
+ setLoose(file, feature, false);
37
+ file.set(looseLowPriorityKey, file.get(looseLowPriorityKey) | feature);
38
+ } else {
39
+ setLoose(file, feature, loose);
40
+ }
41
+ }
42
+ let resolvedLoose;
43
+ for (const [mask, name] of featuresSameLoose) {
44
+ if (!hasFeature(file, mask)) continue;
45
+ {
46
+ if (canIgnoreLoose(file, mask)) continue;
47
+ }
48
+ const loose = isLoose(file, mask);
49
+ if (resolvedLoose === !loose) {
50
+ throw new Error("'loose' mode configuration must be the same for @babel/plugin-transform-class-properties, " + "@babel/plugin-transform-private-methods and " + "@babel/plugin-transform-private-property-in-object (when they are enabled).");
51
+ } else {
52
+ resolvedLoose = loose;
53
+ {
54
+ var higherPriorityPluginName = name;
55
+ }
56
+ }
57
+ }
58
+ if (resolvedLoose !== undefined) {
59
+ for (const [mask, name] of featuresSameLoose) {
60
+ if (hasFeature(file, mask) && isLoose(file, mask) !== resolvedLoose) {
61
+ setLoose(file, mask, resolvedLoose);
62
+ console.warn(`Though the "loose" option was set to "${!resolvedLoose}" in your @babel/preset-env ` + `config, it will not be used for ${name} since the "loose" mode option was set to ` + `"${resolvedLoose}" for ${higherPriorityPluginName}.\nThe "loose" option must be the ` + `same for @babel/plugin-transform-class-properties, @babel/plugin-transform-private-methods ` + `and @babel/plugin-transform-private-property-in-object (when they are enabled): you can ` + `silence this warning by explicitly adding\n` + `\t["${name}", { "loose": ${resolvedLoose} }]\n` + `to the "plugins" section of your Babel config.`);
63
+ }
64
+ }
65
+ }
66
+ }
67
+ function hasFeature(file, feature) {
68
+ return !!(file.get(featuresKey) & feature);
69
+ }
70
+ function isLoose(file, feature) {
71
+ return !!(file.get(looseKey) & feature);
72
+ }
73
+ function setLoose(file, feature, loose) {
74
+ if (loose) file.set(looseKey, file.get(looseKey) | feature);else file.set(looseKey, file.get(looseKey) & ~feature);
75
+ {
76
+ file.set(looseLowPriorityKey, file.get(looseLowPriorityKey) & ~feature);
77
+ }
78
+ }
79
+ function shouldTransform(path, file) {
80
+ let decoratorPath = null;
81
+ let publicFieldPath = null;
82
+ let privateFieldPath = null;
83
+ let privateMethodPath = null;
84
+ let staticBlockPath = null;
85
+ if ((0, _decorators.hasOwnDecorators)(path.node)) {
86
+ decoratorPath = path.get("decorators.0");
87
+ }
88
+ for (const el of path.get("body.body")) {
89
+ if (!decoratorPath && (0, _decorators.hasOwnDecorators)(el.node)) {
90
+ decoratorPath = el.get("decorators.0");
91
+ }
92
+ if (!publicFieldPath && el.isClassProperty()) {
93
+ publicFieldPath = el;
94
+ }
95
+ if (!privateFieldPath && el.isClassPrivateProperty()) {
96
+ privateFieldPath = el;
97
+ }
98
+ if (!privateMethodPath && el.isClassPrivateMethod != null && el.isClassPrivateMethod()) {
99
+ privateMethodPath = el;
100
+ }
101
+ if (!staticBlockPath && el.isStaticBlock != null && el.isStaticBlock()) {
102
+ staticBlockPath = el;
103
+ }
104
+ }
105
+ if (decoratorPath && privateFieldPath) {
106
+ throw privateFieldPath.buildCodeFrameError("Private fields in decorated classes are not supported yet.");
107
+ }
108
+ if (decoratorPath && privateMethodPath) {
109
+ throw privateMethodPath.buildCodeFrameError("Private methods in decorated classes are not supported yet.");
110
+ }
111
+ if (decoratorPath && !hasFeature(file, FEATURES.decorators)) {
112
+ throw path.buildCodeFrameError("Decorators are not enabled." + "\nIf you are using " + '["@babel/plugin-proposal-decorators", { "version": "legacy" }], ' + 'make sure it comes *before* "@babel/plugin-transform-class-properties" ' + "and enable loose mode, like so:\n" + '\t["@babel/plugin-proposal-decorators", { "version": "legacy" }]\n' + '\t["@babel/plugin-transform-class-properties", { "loose": true }]');
113
+ }
114
+ if (privateMethodPath && !hasFeature(file, FEATURES.privateMethods)) {
115
+ throw privateMethodPath.buildCodeFrameError("Class private methods are not enabled. " + "Please add `@babel/plugin-transform-private-methods` to your configuration.");
116
+ }
117
+ if ((publicFieldPath || privateFieldPath) && !hasFeature(file, FEATURES.fields) && !hasFeature(file, FEATURES.privateMethods)) {
118
+ throw path.buildCodeFrameError("Class fields are not enabled. " + "Please add `@babel/plugin-transform-class-properties` to your configuration.");
119
+ }
120
+ if (staticBlockPath && !hasFeature(file, FEATURES.staticBlocks)) {
121
+ throw path.buildCodeFrameError("Static class blocks are not enabled. " + "Please add `@babel/plugin-transform-class-static-block` to your configuration.");
122
+ }
123
+ if (decoratorPath || privateMethodPath || staticBlockPath) {
124
+ return true;
125
+ }
126
+ if ((publicFieldPath || privateFieldPath) && hasFeature(file, FEATURES.fields)) {
127
+ return true;
128
+ }
129
+ return false;
130
+ }
131
+
132
+ //# sourceMappingURL=features.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_decorators","require","FEATURES","exports","Object","freeze","fields","privateMethods","decorators","privateIn","staticBlocks","featuresSameLoose","Map","featuresKey","looseKey","looseLowPriorityKey","canIgnoreLoose","file","feature","get","enableFeature","loose","hasFeature","set","setLoose","resolvedLoose","mask","name","isLoose","Error","higherPriorityPluginName","undefined","console","warn","shouldTransform","path","decoratorPath","publicFieldPath","privateFieldPath","privateMethodPath","staticBlockPath","hasOwnDecorators","node","el","isClassProperty","isClassPrivateProperty","isClassPrivateMethod","isStaticBlock","buildCodeFrameError"],"sources":["../src/features.ts"],"sourcesContent":["import type { File, types as t } from \"@babel/core\";\nimport type { NodePath } from \"@babel/traverse\";\nimport { hasOwnDecorators } from \"./decorators-2018-09.ts\";\n\nexport const FEATURES = Object.freeze({\n //classes: 1 << 0,\n fields: 1 << 1,\n privateMethods: 1 << 2,\n decorators: 1 << 3,\n privateIn: 1 << 4,\n staticBlocks: 1 << 5,\n});\n\nconst featuresSameLoose = new Map([\n [FEATURES.fields, \"@babel/plugin-transform-class-properties\"],\n [FEATURES.privateMethods, \"@babel/plugin-transform-private-methods\"],\n [FEATURES.privateIn, \"@babel/plugin-transform-private-property-in-object\"],\n]);\n\n// We can't use a symbol because this needs to always be the same, even if\n// this package isn't deduped by npm. e.g.\n// - node_modules/\n// - @babel/plugin-class-features\n// - @babel/plugin-proposal-decorators\n// - node_modules\n// - @babel-plugin-class-features\nconst featuresKey = \"@babel/plugin-class-features/featuresKey\";\nconst looseKey = \"@babel/plugin-class-features/looseKey\";\n\nif (!process.env.BABEL_8_BREAKING) {\n // See https://github.com/babel/babel/issues/11622.\n // Since preset-env sets loose for the fields and private methods plugins, it can\n // cause conflicts with the loose mode set by an explicit plugin in the config.\n // To solve this problem, we ignore preset-env's loose mode if another plugin\n // explicitly sets it\n // The code to handle this logic doesn't check that \"low priority loose\" is always\n // the same. However, it is only set by the preset and not directly by users:\n // unless someone _wants_ to break it, it shouldn't be a problem.\n // eslint-disable-next-line no-var\n var looseLowPriorityKey =\n \"@babel/plugin-class-features/looseLowPriorityKey/#__internal__@babel/preset-env__please-overwrite-loose-instead-of-throwing\";\n}\n\nif (!process.env.BABEL_8_BREAKING) {\n // eslint-disable-next-line no-var\n var canIgnoreLoose = function (file: File, feature: number) {\n return !!(file.get(looseLowPriorityKey) & feature);\n };\n}\n\nexport function enableFeature(file: File, feature: number, loose: boolean) {\n // We can't blindly enable the feature because, if it was already set,\n // \"loose\" can't be changed, so that\n // @babel/plugin-class-properties { loose: true }\n // @babel/plugin-class-properties { loose: false }\n // is transformed in loose mode.\n // We only enabled the feature if it was previously disabled.\n if (process.env.BABEL_8_BREAKING) {\n if (!hasFeature(file, feature)) {\n file.set(featuresKey, file.get(featuresKey) | feature);\n setLoose(file, feature, loose);\n }\n } else if (!hasFeature(file, feature) || canIgnoreLoose(file, feature)) {\n file.set(featuresKey, file.get(featuresKey) | feature);\n if (\n // @ts-expect-error comparing loose with internal private magic string\n loose ===\n \"#__internal__@babel/preset-env__prefer-true-but-false-is-ok-if-it-prevents-an-error\"\n ) {\n setLoose(file, feature, true);\n file.set(looseLowPriorityKey, file.get(looseLowPriorityKey) | feature);\n } else if (\n // @ts-expect-error comparing loose with internal private magic string\n loose ===\n \"#__internal__@babel/preset-env__prefer-false-but-true-is-ok-if-it-prevents-an-error\"\n ) {\n setLoose(file, feature, false);\n file.set(looseLowPriorityKey, file.get(looseLowPriorityKey) | feature);\n } else {\n setLoose(file, feature, loose);\n }\n }\n\n let resolvedLoose: boolean | undefined;\n for (const [mask, name] of featuresSameLoose) {\n if (!hasFeature(file, mask)) continue;\n if (!process.env.BABEL_8_BREAKING) {\n if (canIgnoreLoose(file, mask)) continue;\n }\n\n const loose = isLoose(file, mask);\n\n if (resolvedLoose === !loose) {\n throw new Error(\n \"'loose' mode configuration must be the same for @babel/plugin-transform-class-properties, \" +\n \"@babel/plugin-transform-private-methods and \" +\n \"@babel/plugin-transform-private-property-in-object (when they are enabled).\",\n );\n } else {\n resolvedLoose = loose;\n\n if (!process.env.BABEL_8_BREAKING) {\n // eslint-disable-next-line no-var\n var higherPriorityPluginName = name;\n }\n }\n }\n\n if (!process.env.BABEL_8_BREAKING && resolvedLoose !== undefined) {\n for (const [mask, name] of featuresSameLoose) {\n if (hasFeature(file, mask) && isLoose(file, mask) !== resolvedLoose) {\n setLoose(file, mask, resolvedLoose);\n console.warn(\n `Though the \"loose\" option was set to \"${!resolvedLoose}\" in your @babel/preset-env ` +\n `config, it will not be used for ${name} since the \"loose\" mode option was set to ` +\n `\"${resolvedLoose}\" for ${higherPriorityPluginName}.\\nThe \"loose\" option must be the ` +\n `same for @babel/plugin-transform-class-properties, @babel/plugin-transform-private-methods ` +\n `and @babel/plugin-transform-private-property-in-object (when they are enabled): you can ` +\n `silence this warning by explicitly adding\\n` +\n `\\t[\"${name}\", { \"loose\": ${resolvedLoose} }]\\n` +\n `to the \"plugins\" section of your Babel config.`,\n );\n }\n }\n }\n}\n\nfunction hasFeature(file: File, feature: number) {\n return !!(file.get(featuresKey) & feature);\n}\n\nexport function isLoose(file: File, feature: number) {\n return !!(file.get(looseKey) & feature);\n}\n\nfunction setLoose(file: File, feature: number, loose: boolean) {\n if (loose) file.set(looseKey, file.get(looseKey) | feature);\n else file.set(looseKey, file.get(looseKey) & ~feature);\n\n if (!process.env.BABEL_8_BREAKING) {\n file.set(looseLowPriorityKey, file.get(looseLowPriorityKey) & ~feature);\n }\n}\n\nexport function shouldTransform(path: NodePath<t.Class>, file: File): boolean {\n let decoratorPath: NodePath<t.Decorator> | null = null;\n let publicFieldPath: NodePath<t.ClassProperty> | null = null;\n let privateFieldPath: NodePath<t.ClassPrivateProperty> | null = null;\n let privateMethodPath: NodePath<t.ClassPrivateMethod> | null = null;\n let staticBlockPath: NodePath<t.StaticBlock> | null = null;\n\n if (hasOwnDecorators(path.node)) {\n decoratorPath = path.get(\"decorators.0\");\n }\n for (const el of path.get(\"body.body\")) {\n if (!decoratorPath && hasOwnDecorators(el.node)) {\n decoratorPath = el.get(\"decorators.0\");\n }\n if (!publicFieldPath && el.isClassProperty()) {\n publicFieldPath = el;\n }\n if (!privateFieldPath && el.isClassPrivateProperty()) {\n privateFieldPath = el;\n }\n // NOTE: path.isClassPrivateMethod() it isn't supported in <7.2.0\n if (!privateMethodPath && el.isClassPrivateMethod?.()) {\n privateMethodPath = el;\n }\n if (!staticBlockPath && el.isStaticBlock?.()) {\n staticBlockPath = el;\n }\n }\n\n if (decoratorPath && privateFieldPath) {\n throw privateFieldPath.buildCodeFrameError(\n \"Private fields in decorated classes are not supported yet.\",\n );\n }\n if (decoratorPath && privateMethodPath) {\n throw privateMethodPath.buildCodeFrameError(\n \"Private methods in decorated classes are not supported yet.\",\n );\n }\n\n if (decoratorPath && !hasFeature(file, FEATURES.decorators)) {\n throw path.buildCodeFrameError(\n \"Decorators are not enabled.\" +\n \"\\nIf you are using \" +\n '[\"@babel/plugin-proposal-decorators\", { \"version\": \"legacy\" }], ' +\n 'make sure it comes *before* \"@babel/plugin-transform-class-properties\" ' +\n \"and enable loose mode, like so:\\n\" +\n '\\t[\"@babel/plugin-proposal-decorators\", { \"version\": \"legacy\" }]\\n' +\n '\\t[\"@babel/plugin-transform-class-properties\", { \"loose\": true }]',\n );\n }\n\n if (privateMethodPath && !hasFeature(file, FEATURES.privateMethods)) {\n throw privateMethodPath.buildCodeFrameError(\n \"Class private methods are not enabled. \" +\n \"Please add `@babel/plugin-transform-private-methods` to your configuration.\",\n );\n }\n\n if (\n (publicFieldPath || privateFieldPath) &&\n !hasFeature(file, FEATURES.fields) &&\n // We want to allow enabling the private-methods plugin even without enabling\n // the class-properties plugin. Class fields will still be compiled in classes\n // that contain private methods.\n // This is already allowed with the other various class features plugins, but\n // it's because they can fallback to a transform separated from this helper.\n !hasFeature(file, FEATURES.privateMethods)\n ) {\n throw path.buildCodeFrameError(\n \"Class fields are not enabled. \" +\n \"Please add `@babel/plugin-transform-class-properties` to your configuration.\",\n );\n }\n\n if (staticBlockPath && !hasFeature(file, FEATURES.staticBlocks)) {\n throw path.buildCodeFrameError(\n \"Static class blocks are not enabled. \" +\n \"Please add `@babel/plugin-transform-class-static-block` to your configuration.\",\n );\n }\n\n if (decoratorPath || privateMethodPath || staticBlockPath) {\n // If one of those feature is used we know that its transform is\n // enabled, otherwise the previous checks throw.\n return true;\n }\n if (\n (publicFieldPath || privateFieldPath) &&\n hasFeature(file, FEATURES.fields)\n ) {\n return true;\n }\n\n return false;\n}\n"],"mappings":"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"}