@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","_helperEnvironmentVisitor","_helperMemberExpressionToFunctions","_helperOptimiseCallExpression","_helperAnnotateAsPure","_helperSkipTransparentExpressionWrappers","ts","buildPrivateNamesMap","props","privateNamesMap","Map","prop","isPrivate","name","node","key","id","update","has","get","scope","generateUidIdentifier","static","method","isProperty","isClassPrivateMethod","kind","getId","setId","methodId","set","buildPrivateNamesNodes","privateFieldsAsProperties","privateFieldsAsSymbols","state","initNodes","value","isStatic","isMethod","isAccessor","t","cloneNode","init","callExpression","addHelper","stringLiteral","identifier","newExpression","annotateAsPure","push","template","statement","ast","privateNameVisitorFactory","visitor","nestedVisitor","traverse","visitors","merge","Object","assign","environmentVisitor","privateNameVisitor","Class","path","body","visiblePrivateNames","redeclared","delete","length","skipKey","PrivateName","noDocumentAll","parentPath","isMemberExpression","property","isOptionalMemberExpression","includes","handle","unshadow","innerBinding","_scope","hasBinding","bindingIdentifierEquals","rename","parent","buildCheckInRHS","rhs","file","inRHSIsObject","availableHelper","privateInVisitor","BinaryExpression","operator","left","right","isPrivateName","classRef","replaceWith","expression","privateNameHandlerSpec","memoise","member","count","object","memo","maybeGenerateMemoised","memoiser","receiver","helperName","sequenceExpression","console","warn","boundGet","memberExpression","destructureSet","helper","_unused","Error","call","args","optimiseCall","optionalCall","privateNameHandlerLoose","BASE","REF","PROP","simpleSet","optionalCallExpression","transformPrivateNamesUsage","ref","size","handler","memberExpressionToFunctions","buildPrivateFieldInitLoose","buildUndefinedNode","inheritPropComments","buildPrivateInstanceFieldInitSpec","thisExpression","buildPrivateStaticFieldInitSpec","privateName","initAdded","buildPrivateMethodInitLoose","buildPrivateInstanceMethodInitSpec","buildPrivateAccessorInitialization","buildPrivateInstanceMethodInitialization","buildPublicFieldInitLoose","computed","expressionStatement","assignmentExpression","isLiteral","buildPublicFieldInitSpec","buildPrivateStaticMethodInitLoose","buildPrivateMethodDeclaration","getterDeclared","setterDeclared","params","generator","async","isGetter","isSetter","declId","functionDeclaration","thisContextVisitor","UnaryExpression","argument","skipTransparentExprWrapperNodes","isThisExpression","booleanLiteral","ThisExpression","needsClassRef","MetaProperty","meta","innerReferencesVisitor","ReferencedIdentifier","replaceThisContext","innerBindingRef","_state$classRef","isNameOrLength","type","inheritLeadingComments","inheritInnerComments","buildFieldsInitNodes","superRef","setPublicClassFields","constantSuper","_ref","_ref2","classRefFlags","injectSuperRef","staticNodes","instanceNodes","lastInstanceNodeReturnsThis","pureStaticNodes","classBindingNode","getSuperRef","isIdentifier","_injectSuperRef","generateUidIdentifierBasedOnNode","classRefForInnerBinding","isClassProperty","assertFieldTransformed","isStaticBlock","isInstance","isPublic","isField","ReplaceSupers","methodPath","refToPreserve","getObjectRef","replace","replaced","blockBody","isExpressionStatement","inheritsComments","unshift","filter","Boolean","wrapClass","leadingComments","remove","superClass","isClassExpression"],"sources":["../src/fields.ts"],"sourcesContent":["import { template, traverse, types as t } from \"@babel/core\";\nimport type { File } from \"@babel/core\";\nimport type { NodePath, Visitor, Scope } from \"@babel/traverse\";\nimport ReplaceSupers from \"@babel/helper-replace-supers\";\nimport environmentVisitor from \"@babel/helper-environment-visitor\";\nimport memberExpressionToFunctions from \"@babel/helper-member-expression-to-functions\";\nimport type {\n Handler,\n HandlerState,\n} from \"@babel/helper-member-expression-to-functions\";\nimport optimiseCall from \"@babel/helper-optimise-call-expression\";\nimport annotateAsPure from \"@babel/helper-annotate-as-pure\";\nimport { skipTransparentExprWrapperNodes } from \"@babel/helper-skip-transparent-expression-wrappers\";\n\nimport * as ts from \"./typescript.ts\";\n\ninterface PrivateNameMetadata {\n id: t.Identifier;\n static: boolean;\n method: boolean;\n getId?: t.Identifier;\n setId?: t.Identifier;\n methodId?: t.Identifier;\n initAdded?: boolean;\n getterDeclared?: boolean;\n setterDeclared?: boolean;\n}\n\ntype PrivateNamesMapGeneric<V> = Map<string, V>;\n\ntype PrivateNamesMap = PrivateNamesMapGeneric<PrivateNameMetadata>;\n\nexport function buildPrivateNamesMap(props: PropPath[]) {\n const privateNamesMap: PrivateNamesMap = new Map();\n for (const prop of props) {\n if (prop.isPrivate()) {\n const { name } = prop.node.key.id;\n const update: PrivateNameMetadata = privateNamesMap.has(name)\n ? privateNamesMap.get(name)\n : {\n id: prop.scope.generateUidIdentifier(name),\n static: prop.node.static,\n method: !prop.isProperty(),\n };\n if (prop.isClassPrivateMethod()) {\n if (prop.node.kind === \"get\") {\n update.getId = prop.scope.generateUidIdentifier(`get_${name}`);\n } else if (prop.node.kind === \"set\") {\n update.setId = prop.scope.generateUidIdentifier(`set_${name}`);\n } else if (prop.node.kind === \"method\") {\n update.methodId = prop.scope.generateUidIdentifier(name);\n }\n }\n privateNamesMap.set(name, update);\n }\n }\n return privateNamesMap;\n}\n\nexport function buildPrivateNamesNodes(\n privateNamesMap: PrivateNamesMap,\n privateFieldsAsProperties: boolean,\n privateFieldsAsSymbols: boolean,\n state: File,\n) {\n const initNodes: t.Statement[] = [];\n\n for (const [name, value] of privateNamesMap) {\n // - When the privateFieldsAsProperties assumption is enabled,\n // both static and instance fields are transpiled using a\n // secret non-enumerable property. Hence, we also need to generate that\n // key (using the classPrivateFieldLooseKey helper).\n // - When the privateFieldsAsSymbols assumption is enabled,\n // both static and instance fields are transpiled using a\n // unique Symbol to define a non-enumerable property.\n // - In spec mode, only instance fields need a \"private name\" initializer\n // because static fields are directly assigned to a variable in the\n // buildPrivateStaticFieldInitSpec function.\n const { static: isStatic, method: isMethod, getId, setId } = value;\n const isAccessor = getId || setId;\n const id = t.cloneNode(value.id);\n\n let init: t.Expression;\n\n if (privateFieldsAsProperties) {\n init = t.callExpression(state.addHelper(\"classPrivateFieldLooseKey\"), [\n t.stringLiteral(name),\n ]);\n } else if (privateFieldsAsSymbols) {\n init = t.callExpression(t.identifier(\"Symbol\"), [t.stringLiteral(name)]);\n } else if (!isStatic) {\n init = t.newExpression(\n t.identifier(!isMethod || isAccessor ? \"WeakMap\" : \"WeakSet\"),\n [],\n );\n }\n\n if (init) {\n annotateAsPure(init);\n initNodes.push(template.statement.ast`var ${id} = ${init}`);\n }\n }\n\n return initNodes;\n}\n\nexport interface PrivateNameVisitorState<V> {\n privateNamesMap: PrivateNamesMapGeneric<V>;\n redeclared?: string[];\n}\n\n// Traverses the class scope, handling private name references. If an inner\n// class redeclares the same private name, it will hand off traversal to the\n// restricted visitor (which doesn't traverse the inner class's inner scope).\nexport function privateNameVisitorFactory<S, V>(\n visitor: Visitor<PrivateNameVisitorState<V> & S>,\n) {\n // Traverses the outer portion of a class, without touching the class's inner\n // scope, for private names.\n const nestedVisitor = traverse.visitors.merge([\n {\n ...visitor,\n },\n environmentVisitor,\n ]);\n\n // @ts-expect-error: TS2590: Expression produces a union type that is too complex to represent.\n const privateNameVisitor: Visitor<\n PrivateNameVisitorState<PrivateNameMetadata> & S\n > = {\n ...visitor,\n\n Class(path) {\n const { privateNamesMap } = this;\n const body = path.get(\"body.body\");\n\n const visiblePrivateNames = new Map(privateNamesMap);\n const redeclared = [];\n for (const prop of body) {\n if (!prop.isPrivate()) continue;\n const { name } = prop.node.key.id;\n visiblePrivateNames.delete(name);\n redeclared.push(name);\n }\n\n // If the class doesn't redeclare any private fields, we can continue with\n // our overall traversal.\n if (!redeclared.length) {\n return;\n }\n\n // This class redeclares some private field. We need to process the outer\n // environment with access to all the outer privates, then we can process\n // the inner environment with only the still-visible outer privates.\n path.get(\"body\").traverse(nestedVisitor, {\n ...this,\n redeclared,\n });\n path.traverse(privateNameVisitor, {\n ...this,\n privateNamesMap: visiblePrivateNames,\n });\n\n // We'll eventually hit this class node again with the overall Class\n // Features visitor, which'll process the redeclared privates.\n path.skipKey(\"body\");\n },\n };\n\n return privateNameVisitor;\n}\n\ninterface PrivateNameState {\n privateNamesMap: PrivateNamesMap;\n classRef: t.Identifier;\n file: File;\n noDocumentAll: boolean;\n innerBinding?: t.Identifier;\n}\n\nconst privateNameVisitor = privateNameVisitorFactory<\n HandlerState<PrivateNameState> & PrivateNameState,\n PrivateNameMetadata\n>({\n PrivateName(path, { noDocumentAll }) {\n const { privateNamesMap, redeclared } = this;\n const { node, parentPath } = path;\n\n if (\n !parentPath.isMemberExpression({ property: node }) &&\n !parentPath.isOptionalMemberExpression({ property: node })\n ) {\n return;\n }\n const { name } = node.id;\n if (!privateNamesMap.has(name)) return;\n if (redeclared && redeclared.includes(name)) return;\n\n this.handle(parentPath, noDocumentAll);\n },\n});\n\n// rename all bindings that shadows innerBinding\nfunction unshadow(\n name: string,\n scope: Scope,\n innerBinding: t.Identifier | undefined,\n) {\n // in some cases, scope.getBinding(name) === undefined\n // so we check hasBinding to avoid keeping looping\n // see: https://github.com/babel/babel/pull/13656#discussion_r686030715\n while (\n scope?.hasBinding(name) &&\n !scope.bindingIdentifierEquals(name, innerBinding)\n ) {\n scope.rename(name);\n scope = scope.parent;\n }\n}\n\nexport function buildCheckInRHS(\n rhs: t.Expression,\n file: File,\n inRHSIsObject?: boolean,\n) {\n if (inRHSIsObject || !file.availableHelper?.(\"checkInRHS\")) return rhs;\n return t.callExpression(file.addHelper(\"checkInRHS\"), [rhs]);\n}\n\nconst privateInVisitor = privateNameVisitorFactory<\n {\n classRef: t.Identifier;\n file: File;\n innerBinding?: t.Identifier;\n privateFieldsAsProperties: boolean;\n },\n PrivateNameMetadata\n>({\n BinaryExpression(path, { file }) {\n const { operator, left, right } = path.node;\n if (operator !== \"in\") return;\n if (!t.isPrivateName(left)) return;\n\n const { privateFieldsAsProperties, privateNamesMap, redeclared } = this;\n\n const { name } = left.id;\n\n if (!privateNamesMap.has(name)) return;\n if (redeclared && redeclared.includes(name)) return;\n\n // if there are any local variable shadowing classRef, unshadow it\n // see #12960\n unshadow(this.classRef.name, path.scope, this.innerBinding);\n\n if (privateFieldsAsProperties) {\n const { id } = privateNamesMap.get(name);\n path.replaceWith(template.expression.ast`\n Object.prototype.hasOwnProperty.call(${buildCheckInRHS(\n right,\n file,\n )}, ${t.cloneNode(id)})\n `);\n return;\n }\n\n const { id, static: isStatic } = privateNamesMap.get(name);\n\n if (isStatic) {\n path.replaceWith(\n template.expression.ast`${buildCheckInRHS(\n right,\n file,\n )} === ${t.cloneNode(this.classRef)}`,\n );\n return;\n }\n\n path.replaceWith(\n template.expression.ast`${t.cloneNode(id)}.has(${buildCheckInRHS(\n right,\n file,\n )})`,\n );\n },\n});\n\ninterface Receiver {\n receiver(\n this: HandlerState<PrivateNameState> & PrivateNameState,\n member: NodePath<t.MemberExpression | t.OptionalMemberExpression>,\n ): t.Expression;\n}\n\nconst privateNameHandlerSpec: Handler<PrivateNameState & Receiver> & Receiver =\n {\n memoise(member, count) {\n const { scope } = member;\n const { object } = member.node as { object: t.Expression };\n\n const memo = scope.maybeGenerateMemoised(object);\n if (!memo) {\n return;\n }\n\n this.memoiser.set(object, memo, count);\n },\n\n receiver(member) {\n const { object } = member.node as { object: t.Expression };\n\n if (this.memoiser.has(object)) {\n return t.cloneNode(this.memoiser.get(object));\n }\n\n return t.cloneNode(object);\n },\n\n get(member) {\n const { classRef, privateNamesMap, file, innerBinding } = this;\n const { name } = (member.node.property as t.PrivateName).id;\n const {\n id,\n static: isStatic,\n method: isMethod,\n methodId,\n getId,\n setId,\n } = privateNamesMap.get(name);\n const isAccessor = getId || setId;\n\n if (isStatic) {\n // NOTE: This package has a peerDependency on @babel/core@^7.0.0, but these\n // helpers have been introduced in @babel/helpers@7.1.0.\n const helperName =\n isMethod && !isAccessor\n ? \"classStaticPrivateMethodGet\"\n : \"classStaticPrivateFieldSpecGet\";\n\n // if there are any local variable shadowing classRef, unshadow it\n // see #12960\n unshadow(classRef.name, member.scope, innerBinding);\n\n return t.callExpression(file.addHelper(helperName), [\n this.receiver(member),\n t.cloneNode(classRef),\n t.cloneNode(id),\n ]);\n }\n\n if (isMethod) {\n if (isAccessor) {\n if (!getId && setId) {\n if (file.availableHelper(\"writeOnlyError\")) {\n return t.sequenceExpression([\n this.receiver(member),\n t.callExpression(file.addHelper(\"writeOnlyError\"), [\n t.stringLiteral(`#${name}`),\n ]),\n ]);\n }\n console.warn(\n `@babel/helpers is outdated, update it to silence this warning.`,\n );\n }\n return t.callExpression(file.addHelper(\"classPrivateFieldGet\"), [\n this.receiver(member),\n t.cloneNode(id),\n ]);\n }\n return t.callExpression(file.addHelper(\"classPrivateMethodGet\"), [\n this.receiver(member),\n t.cloneNode(id),\n t.cloneNode(methodId),\n ]);\n }\n return t.callExpression(file.addHelper(\"classPrivateFieldGet\"), [\n this.receiver(member),\n t.cloneNode(id),\n ]);\n },\n\n boundGet(member) {\n this.memoise(member, 1);\n\n return t.callExpression(\n t.memberExpression(this.get(member), t.identifier(\"bind\")),\n [this.receiver(member)],\n );\n },\n\n set(member, value) {\n const { classRef, privateNamesMap, file } = this;\n const { name } = (member.node.property as t.PrivateName).id;\n const {\n id,\n static: isStatic,\n method: isMethod,\n setId,\n getId,\n } = privateNamesMap.get(name);\n const isAccessor = getId || setId;\n\n if (isStatic) {\n const helperName =\n isMethod && !isAccessor\n ? \"classStaticPrivateMethodSet\"\n : \"classStaticPrivateFieldSpecSet\";\n\n return t.callExpression(file.addHelper(helperName), [\n this.receiver(member),\n t.cloneNode(classRef),\n t.cloneNode(id),\n value,\n ]);\n }\n if (isMethod) {\n if (setId) {\n return t.callExpression(file.addHelper(\"classPrivateFieldSet\"), [\n this.receiver(member),\n t.cloneNode(id),\n value,\n ]);\n }\n return t.sequenceExpression([\n this.receiver(member),\n value,\n t.callExpression(file.addHelper(\"readOnlyError\"), [\n t.stringLiteral(`#${name}`),\n ]),\n ]);\n }\n return t.callExpression(file.addHelper(\"classPrivateFieldSet\"), [\n this.receiver(member),\n t.cloneNode(id),\n value,\n ]);\n },\n\n destructureSet(member) {\n const { classRef, privateNamesMap, file } = this;\n const { name } = (member.node.property as t.PrivateName).id;\n const { id, static: isStatic } = privateNamesMap.get(name);\n if (isStatic) {\n try {\n // classStaticPrivateFieldDestructureSet was introduced in 7.13.10\n // eslint-disable-next-line no-var\n var helper = file.addHelper(\"classStaticPrivateFieldDestructureSet\");\n } catch {\n throw new Error(\n \"Babel can not transpile `[C.#p] = [0]` with @babel/helpers < 7.13.10, \\n\" +\n \"please update @babel/helpers to the latest version.\",\n );\n }\n return t.memberExpression(\n t.callExpression(helper, [\n this.receiver(member),\n t.cloneNode(classRef),\n t.cloneNode(id),\n ]),\n t.identifier(\"value\"),\n );\n }\n\n return t.memberExpression(\n t.callExpression(file.addHelper(\"classPrivateFieldDestructureSet\"), [\n this.receiver(member),\n t.cloneNode(id),\n ]),\n t.identifier(\"value\"),\n );\n },\n\n call(member, args: (t.Expression | t.SpreadElement)[]) {\n // The first access (the get) should do the memo assignment.\n this.memoise(member, 1);\n\n return optimiseCall(this.get(member), this.receiver(member), args, false);\n },\n\n optionalCall(member, args: (t.Expression | t.SpreadElement)[]) {\n this.memoise(member, 1);\n\n return optimiseCall(this.get(member), this.receiver(member), args, true);\n },\n\n delete() {\n throw new Error(\n \"Internal Babel error: deleting private elements is a parsing error.\",\n );\n },\n };\n\nconst privateNameHandlerLoose: Handler<PrivateNameState> = {\n get(member) {\n const { privateNamesMap, file } = this;\n const { object } = member.node;\n const { name } = (member.node.property as t.PrivateName).id;\n\n return template.expression`BASE(REF, PROP)[PROP]`({\n BASE: file.addHelper(\"classPrivateFieldLooseBase\"),\n REF: t.cloneNode(object),\n PROP: t.cloneNode(privateNamesMap.get(name).id),\n });\n },\n\n set() {\n // noop\n throw new Error(\"private name handler with loose = true don't need set()\");\n },\n\n boundGet(member) {\n return t.callExpression(\n t.memberExpression(this.get(member), t.identifier(\"bind\")),\n // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion\n [t.cloneNode(member.node.object as t.Expression)],\n );\n },\n\n simpleSet(member) {\n return this.get(member);\n },\n\n destructureSet(member) {\n return this.get(member);\n },\n\n call(member, args) {\n return t.callExpression(this.get(member), args);\n },\n\n optionalCall(member, args) {\n return t.optionalCallExpression(this.get(member), args, true);\n },\n\n delete() {\n throw new Error(\n \"Internal Babel error: deleting private elements is a parsing error.\",\n );\n },\n};\n\nexport function transformPrivateNamesUsage(\n ref: t.Identifier,\n path: NodePath<t.Class>,\n privateNamesMap: PrivateNamesMap,\n {\n privateFieldsAsProperties,\n noDocumentAll,\n innerBinding,\n }: {\n privateFieldsAsProperties: boolean;\n noDocumentAll: boolean;\n innerBinding: t.Identifier;\n },\n state: File,\n) {\n if (!privateNamesMap.size) return;\n\n const body = path.get(\"body\");\n const handler = privateFieldsAsProperties\n ? privateNameHandlerLoose\n : privateNameHandlerSpec;\n\n memberExpressionToFunctions<PrivateNameState>(body, privateNameVisitor, {\n privateNamesMap,\n classRef: ref,\n file: state,\n ...handler,\n noDocumentAll,\n innerBinding,\n });\n body.traverse(privateInVisitor, {\n privateNamesMap,\n classRef: ref,\n file: state,\n privateFieldsAsProperties,\n innerBinding,\n });\n}\n\nfunction buildPrivateFieldInitLoose(\n ref: t.Expression,\n prop: NodePath<t.ClassPrivateProperty>,\n privateNamesMap: PrivateNamesMap,\n) {\n const { id } = privateNamesMap.get(prop.node.key.id.name);\n const value = prop.node.value || prop.scope.buildUndefinedNode();\n\n return inheritPropComments(\n template.statement.ast`\n Object.defineProperty(${ref}, ${t.cloneNode(id)}, {\n // configurable is false by default\n // enumerable is false by default\n writable: true,\n value: ${value}\n });\n ` as t.ExpressionStatement,\n prop,\n );\n}\n\nfunction buildPrivateInstanceFieldInitSpec(\n ref: t.Expression,\n prop: NodePath<t.ClassPrivateProperty>,\n privateNamesMap: PrivateNamesMap,\n state: File,\n) {\n const { id } = privateNamesMap.get(prop.node.key.id.name);\n const value = prop.node.value || prop.scope.buildUndefinedNode();\n\n if (!process.env.BABEL_8_BREAKING) {\n if (!state.availableHelper(\"classPrivateFieldInitSpec\")) {\n return inheritPropComments(\n template.statement.ast`${t.cloneNode(id)}.set(${ref}, {\n // configurable is always false for private elements\n // enumerable is always false for private elements\n writable: true,\n value: ${value},\n })` as t.ExpressionStatement,\n prop,\n );\n }\n }\n\n const helper = state.addHelper(\"classPrivateFieldInitSpec\");\n return inheritPropComments(\n template.statement.ast`${helper}(\n ${t.thisExpression()},\n ${t.cloneNode(id)},\n {\n writable: true,\n value: ${value}\n },\n )` as t.ExpressionStatement,\n prop,\n );\n}\n\nfunction buildPrivateStaticFieldInitSpec(\n prop: NodePath<t.ClassPrivateProperty>,\n privateNamesMap: PrivateNamesMap,\n) {\n const privateName = privateNamesMap.get(prop.node.key.id.name);\n const { id, getId, setId, initAdded } = privateName;\n const isAccessor = getId || setId;\n\n if (!prop.isProperty() && (initAdded || !isAccessor)) return;\n\n if (isAccessor) {\n privateNamesMap.set(prop.node.key.id.name, {\n ...privateName,\n initAdded: true,\n });\n\n return inheritPropComments(\n template.statement.ast`\n var ${t.cloneNode(id)} = {\n // configurable is false by default\n // enumerable is false by default\n // writable is false by default\n get: ${getId ? getId.name : prop.scope.buildUndefinedNode()},\n set: ${setId ? setId.name : prop.scope.buildUndefinedNode()}\n }\n `,\n prop,\n );\n }\n\n const value = prop.node.value || prop.scope.buildUndefinedNode();\n return inheritPropComments(\n template.statement.ast`\n var ${t.cloneNode(id)} = {\n // configurable is false by default\n // enumerable is false by default\n writable: true,\n value: ${value}\n };\n `,\n prop,\n );\n}\n\nfunction buildPrivateMethodInitLoose(\n ref: t.Expression,\n prop: NodePath<t.ClassPrivateMethod>,\n privateNamesMap: PrivateNamesMap,\n) {\n const privateName = privateNamesMap.get(prop.node.key.id.name);\n const { methodId, id, getId, setId, initAdded } = privateName;\n if (initAdded) return;\n\n if (methodId) {\n return inheritPropComments(\n template.statement.ast`\n Object.defineProperty(${ref}, ${id}, {\n // configurable is false by default\n // enumerable is false by default\n // writable is false by default\n value: ${methodId.name}\n });\n ` as t.ExpressionStatement,\n prop,\n );\n }\n const isAccessor = getId || setId;\n if (isAccessor) {\n privateNamesMap.set(prop.node.key.id.name, {\n ...privateName,\n initAdded: true,\n });\n\n return inheritPropComments(\n template.statement.ast`\n Object.defineProperty(${ref}, ${id}, {\n // configurable is false by default\n // enumerable is false by default\n // writable is false by default\n get: ${getId ? getId.name : prop.scope.buildUndefinedNode()},\n set: ${setId ? setId.name : prop.scope.buildUndefinedNode()}\n });\n ` as t.ExpressionStatement,\n prop,\n );\n }\n}\n\nfunction buildPrivateInstanceMethodInitSpec(\n ref: t.Expression,\n prop: NodePath<t.ClassPrivateMethod>,\n privateNamesMap: PrivateNamesMap,\n state: File,\n) {\n const privateName = privateNamesMap.get(prop.node.key.id.name);\n const { getId, setId, initAdded } = privateName;\n\n if (initAdded) return;\n\n const isAccessor = getId || setId;\n if (isAccessor) {\n return buildPrivateAccessorInitialization(\n ref,\n prop,\n privateNamesMap,\n state,\n );\n }\n\n return buildPrivateInstanceMethodInitialization(\n ref,\n prop,\n privateNamesMap,\n state,\n );\n}\n\nfunction buildPrivateAccessorInitialization(\n ref: t.Expression,\n prop: NodePath<t.ClassPrivateMethod>,\n privateNamesMap: PrivateNamesMap,\n state: File,\n) {\n const privateName = privateNamesMap.get(prop.node.key.id.name);\n const { id, getId, setId } = privateName;\n\n privateNamesMap.set(prop.node.key.id.name, {\n ...privateName,\n initAdded: true,\n });\n\n if (!process.env.BABEL_8_BREAKING) {\n if (!state.availableHelper(\"classPrivateFieldInitSpec\")) {\n return inheritPropComments(\n template.statement.ast`\n ${id}.set(${ref}, {\n get: ${getId ? getId.name : prop.scope.buildUndefinedNode()},\n set: ${setId ? setId.name : prop.scope.buildUndefinedNode()}\n });\n ` as t.ExpressionStatement,\n prop,\n );\n }\n }\n\n const helper = state.addHelper(\"classPrivateFieldInitSpec\");\n return inheritPropComments(\n template.statement.ast`${helper}(\n ${t.thisExpression()},\n ${t.cloneNode(id)},\n {\n get: ${getId ? getId.name : prop.scope.buildUndefinedNode()},\n set: ${setId ? setId.name : prop.scope.buildUndefinedNode()}\n },\n )` as t.ExpressionStatement,\n prop,\n );\n}\n\nfunction buildPrivateInstanceMethodInitialization(\n ref: t.Expression,\n prop: NodePath<t.ClassPrivateMethod>,\n privateNamesMap: PrivateNamesMap,\n state: File,\n) {\n const privateName = privateNamesMap.get(prop.node.key.id.name);\n const { id } = privateName;\n\n if (!process.env.BABEL_8_BREAKING) {\n if (!state.availableHelper(\"classPrivateMethodInitSpec\")) {\n return inheritPropComments(\n template.statement.ast`${id}.add(${ref})` as t.ExpressionStatement,\n prop,\n );\n }\n }\n\n const helper = state.addHelper(\"classPrivateMethodInitSpec\");\n return inheritPropComments(\n template.statement.ast`${helper}(\n ${t.thisExpression()},\n ${t.cloneNode(id)}\n )` as t.ExpressionStatement,\n prop,\n );\n}\n\nfunction buildPublicFieldInitLoose(\n ref: t.Expression,\n prop: NodePath<t.ClassProperty>,\n) {\n const { key, computed } = prop.node;\n const value = prop.node.value || prop.scope.buildUndefinedNode();\n\n return inheritPropComments(\n t.expressionStatement(\n t.assignmentExpression(\n \"=\",\n t.memberExpression(ref, key, computed || t.isLiteral(key)),\n value,\n ),\n ),\n prop,\n );\n}\n\nfunction buildPublicFieldInitSpec(\n ref: t.Expression,\n prop: NodePath<t.ClassProperty>,\n state: File,\n) {\n const { key, computed } = prop.node;\n const value = prop.node.value || prop.scope.buildUndefinedNode();\n\n return inheritPropComments(\n t.expressionStatement(\n t.callExpression(state.addHelper(\"defineProperty\"), [\n ref,\n computed || t.isLiteral(key)\n ? key\n : t.stringLiteral((key as t.Identifier).name),\n value,\n ]),\n ),\n prop,\n );\n}\n\nfunction buildPrivateStaticMethodInitLoose(\n ref: t.Expression,\n prop: NodePath<t.ClassPrivateMethod>,\n state: File,\n privateNamesMap: PrivateNamesMap,\n) {\n const privateName = privateNamesMap.get(prop.node.key.id.name);\n const { id, methodId, getId, setId, initAdded } = privateName;\n\n if (initAdded) return;\n\n const isAccessor = getId || setId;\n if (isAccessor) {\n privateNamesMap.set(prop.node.key.id.name, {\n ...privateName,\n initAdded: true,\n });\n\n return inheritPropComments(\n template.statement.ast`\n Object.defineProperty(${ref}, ${id}, {\n // configurable is false by default\n // enumerable is false by default\n // writable is false by default\n get: ${getId ? getId.name : prop.scope.buildUndefinedNode()},\n set: ${setId ? setId.name : prop.scope.buildUndefinedNode()}\n })\n `,\n prop,\n );\n }\n\n return inheritPropComments(\n template.statement.ast`\n Object.defineProperty(${ref}, ${id}, {\n // configurable is false by default\n // enumerable is false by default\n // writable is false by default\n value: ${methodId.name}\n });\n `,\n prop,\n );\n}\n\nfunction buildPrivateMethodDeclaration(\n prop: NodePath<t.ClassPrivateMethod>,\n privateNamesMap: PrivateNamesMap,\n privateFieldsAsProperties = false,\n) {\n const privateName = privateNamesMap.get(prop.node.key.id.name);\n const {\n id,\n methodId,\n getId,\n setId,\n getterDeclared,\n setterDeclared,\n static: isStatic,\n } = privateName;\n const { params, body, generator, async } = prop.node;\n const isGetter = getId && !getterDeclared && params.length === 0;\n const isSetter = setId && !setterDeclared && params.length > 0;\n\n let declId = methodId;\n\n if (isGetter) {\n privateNamesMap.set(prop.node.key.id.name, {\n ...privateName,\n getterDeclared: true,\n });\n declId = getId;\n } else if (isSetter) {\n privateNamesMap.set(prop.node.key.id.name, {\n ...privateName,\n setterDeclared: true,\n });\n declId = setId;\n } else if (isStatic && !privateFieldsAsProperties) {\n declId = id;\n }\n\n return inheritPropComments(\n t.functionDeclaration(\n t.cloneNode(declId),\n // @ts-expect-error params for ClassMethod has TSParameterProperty\n params,\n body,\n generator,\n async,\n ),\n prop,\n );\n}\n\ntype ReplaceThisState = {\n classRef: t.Identifier;\n needsClassRef: boolean;\n innerBinding: t.Identifier | null;\n};\n\ntype ReplaceInnerBindingReferenceState = ReplaceThisState;\n\nconst thisContextVisitor = traverse.visitors.merge<ReplaceThisState>([\n {\n UnaryExpression(path) {\n // Replace `delete this` with `true`\n const { node } = path;\n if (node.operator === \"delete\") {\n const argument = skipTransparentExprWrapperNodes(node.argument);\n if (t.isThisExpression(argument)) {\n path.replaceWith(t.booleanLiteral(true));\n }\n }\n },\n ThisExpression(path, state) {\n state.needsClassRef = true;\n path.replaceWith(t.cloneNode(state.classRef));\n },\n MetaProperty(path) {\n const { node, scope } = path;\n // if there are `new.target` in static field\n // we should replace it with `undefined`\n if (node.meta.name === \"new\" && node.property.name === \"target\") {\n path.replaceWith(scope.buildUndefinedNode());\n }\n },\n },\n environmentVisitor,\n]);\n\nconst innerReferencesVisitor: Visitor<ReplaceInnerBindingReferenceState> = {\n ReferencedIdentifier(path, state) {\n if (\n path.scope.bindingIdentifierEquals(path.node.name, state.innerBinding)\n ) {\n state.needsClassRef = true;\n path.node.name = state.classRef.name;\n }\n },\n};\n\nfunction replaceThisContext(\n path: PropPath,\n ref: t.Identifier,\n innerBindingRef: t.Identifier | null,\n) {\n const state: ReplaceThisState = {\n classRef: ref,\n needsClassRef: false,\n innerBinding: innerBindingRef,\n };\n if (!path.isMethod()) {\n // replace `this` in property initializers and static blocks\n path.traverse(thisContextVisitor, state);\n }\n\n // todo: use innerBinding.referencePaths to avoid full traversal\n if (\n innerBindingRef != null &&\n state.classRef?.name &&\n state.classRef.name !== innerBindingRef.name\n ) {\n path.traverse(innerReferencesVisitor, state);\n }\n\n return state.needsClassRef;\n}\n\nexport type PropNode =\n | t.ClassProperty\n | t.ClassPrivateMethod\n | t.ClassPrivateProperty\n | t.StaticBlock;\nexport type PropPath = NodePath<PropNode>;\n\nfunction isNameOrLength({ key, computed }: t.ClassProperty) {\n if (key.type === \"Identifier\") {\n return !computed && (key.name === \"name\" || key.name === \"length\");\n }\n if (key.type === \"StringLiteral\") {\n return key.value === \"name\" || key.value === \"length\";\n }\n return false;\n}\n\n/**\n * Inherit comments from class members. This is a reduced version of\n * t.inheritsComments: the trailing comments are not inherited because\n * for most class members except the last one, their trailing comments are\n * the next sibling's leading comments.\n *\n * @template T transformed class member type\n * @param {T} node transformed class member\n * @param {PropPath} prop class member\n * @returns transformed class member type with comments inherited\n */\nfunction inheritPropComments<T extends t.Node>(node: T, prop: PropPath) {\n t.inheritLeadingComments(node, prop.node);\n t.inheritInnerComments(node, prop.node);\n return node;\n}\n\n/**\n * ClassRefFlag records the requirement of the class binding reference.\n *\n * @enum {number}\n */\nconst enum ClassRefFlag {\n None,\n /**\n * When this flag is enabled, the binding reference can be the class id,\n * if exists, or the uid identifier generated for class expression. The\n * reference is safe to be consumed by [[Define]].\n */\n ForDefine = 1 << 0,\n /**\n * When this flag is enabled, the reference must be a uid, because the outer\n * class binding can be mutated by user codes.\n * E.g.\n * class C { static p = C }; const oldC = C; C = null; oldC.p;\n * we must memoize class `C` before defining the property `p`.\n */\n ForInnerBinding = 1 << 1,\n}\n\nexport function buildFieldsInitNodes(\n ref: t.Identifier | null,\n superRef: t.Expression | undefined,\n props: PropPath[],\n privateNamesMap: PrivateNamesMap,\n file: File,\n setPublicClassFields: boolean,\n privateFieldsAsProperties: boolean,\n constantSuper: boolean,\n innerBindingRef: t.Identifier | null,\n) {\n let classRefFlags = ClassRefFlag.None;\n let injectSuperRef: t.Identifier;\n const staticNodes: t.Statement[] = [];\n const instanceNodes: t.ExpressionStatement[] = [];\n let lastInstanceNodeReturnsThis = false;\n // These nodes are pure and can be moved to the closest statement position\n const pureStaticNodes: t.FunctionDeclaration[] = [];\n let classBindingNode: t.ExpressionStatement | null = null;\n\n const getSuperRef = t.isIdentifier(superRef)\n ? () => superRef\n : () => {\n injectSuperRef ??=\n props[0].scope.generateUidIdentifierBasedOnNode(superRef);\n return injectSuperRef;\n };\n\n const classRefForInnerBinding =\n ref ??\n props[0].scope.generateUidIdentifier(innerBindingRef?.name || \"Class\");\n ref ??= t.cloneNode(innerBindingRef);\n\n for (const prop of props) {\n prop.isClassProperty() && ts.assertFieldTransformed(prop);\n\n // @ts-expect-error: TS doesn't infer that prop.node is not a StaticBlock\n const isStatic = !t.isStaticBlock?.(prop.node) && prop.node.static;\n const isInstance = !isStatic;\n const isPrivate = prop.isPrivate();\n const isPublic = !isPrivate;\n const isField = prop.isProperty();\n const isMethod = !isField;\n const isStaticBlock = prop.isStaticBlock?.();\n\n if (isStatic) classRefFlags |= ClassRefFlag.ForDefine;\n\n if (isStatic || (isMethod && isPrivate) || isStaticBlock) {\n new ReplaceSupers({\n methodPath: prop,\n constantSuper,\n file: file,\n refToPreserve: innerBindingRef,\n getSuperRef,\n getObjectRef() {\n classRefFlags |= ClassRefFlag.ForInnerBinding;\n if (isStatic || isStaticBlock) {\n return classRefForInnerBinding;\n } else {\n return t.memberExpression(\n classRefForInnerBinding,\n t.identifier(\"prototype\"),\n );\n }\n },\n }).replace();\n\n const replaced = replaceThisContext(\n prop,\n classRefForInnerBinding,\n innerBindingRef,\n );\n if (replaced) {\n classRefFlags |= ClassRefFlag.ForInnerBinding;\n }\n }\n\n lastInstanceNodeReturnsThis = false;\n\n // TODO(ts): there are so many `ts-expect-error` inside cases since\n // ts can not infer type from pre-computed values (or a case test)\n // even change `isStaticBlock` to `t.isStaticBlock(prop)` will not make prop\n // a `NodePath<t.StaticBlock>`\n // this maybe a bug for ts\n switch (true) {\n case isStaticBlock: {\n const blockBody = (prop.node as t.StaticBlock).body;\n // We special-case the single expression case to avoid the iife, since\n // it's common.\n if (blockBody.length === 1 && t.isExpressionStatement(blockBody[0])) {\n staticNodes.push(inheritPropComments(blockBody[0], prop));\n } else {\n staticNodes.push(\n t.inheritsComments(\n template.statement.ast`(() => { ${blockBody} })()`,\n prop.node,\n ),\n );\n }\n break;\n }\n case isStatic && isPrivate && isField && privateFieldsAsProperties:\n staticNodes.push(\n buildPrivateFieldInitLoose(t.cloneNode(ref), prop, privateNamesMap),\n );\n break;\n case isStatic && isPrivate && isField && !privateFieldsAsProperties:\n staticNodes.push(\n buildPrivateStaticFieldInitSpec(prop, privateNamesMap),\n );\n break;\n case isStatic && isPublic && isField && setPublicClassFields:\n // Functions always have non-writable .name and .length properties,\n // so we must always use [[Define]] for them.\n // It might still be possible to a computed static fields whose resulting\n // key is \"name\" or \"length\", but the assumption is telling us that it's\n // not going to happen.\n // @ts-expect-error checked in switch\n if (!isNameOrLength(prop.node)) {\n // @ts-expect-error checked in switch\n staticNodes.push(buildPublicFieldInitLoose(t.cloneNode(ref), prop));\n break;\n }\n // falls through\n case isStatic && isPublic && isField && !setPublicClassFields:\n staticNodes.push(\n // @ts-expect-error checked in switch\n buildPublicFieldInitSpec(t.cloneNode(ref), prop, file),\n );\n break;\n case isInstance && isPrivate && isField && privateFieldsAsProperties:\n instanceNodes.push(\n buildPrivateFieldInitLoose(t.thisExpression(), prop, privateNamesMap),\n );\n break;\n case isInstance && isPrivate && isField && !privateFieldsAsProperties:\n instanceNodes.push(\n buildPrivateInstanceFieldInitSpec(\n t.thisExpression(),\n prop,\n privateNamesMap,\n file,\n ),\n );\n break;\n case isInstance && isPrivate && isMethod && privateFieldsAsProperties:\n instanceNodes.unshift(\n buildPrivateMethodInitLoose(\n t.thisExpression(),\n // @ts-expect-error checked in switch\n prop,\n privateNamesMap,\n ),\n );\n pureStaticNodes.push(\n buildPrivateMethodDeclaration(\n // @ts-expect-error checked in switch\n prop,\n privateNamesMap,\n privateFieldsAsProperties,\n ),\n );\n break;\n case isInstance && isPrivate && isMethod && !privateFieldsAsProperties:\n instanceNodes.unshift(\n buildPrivateInstanceMethodInitSpec(\n t.thisExpression(),\n // @ts-expect-error checked in switch\n prop,\n privateNamesMap,\n file,\n ),\n );\n pureStaticNodes.push(\n buildPrivateMethodDeclaration(\n // @ts-expect-error checked in switch\n prop,\n privateNamesMap,\n privateFieldsAsProperties,\n ),\n );\n break;\n case isStatic && isPrivate && isMethod && !privateFieldsAsProperties:\n staticNodes.unshift(\n // @ts-expect-error checked in switch\n buildPrivateStaticFieldInitSpec(prop, privateNamesMap),\n );\n pureStaticNodes.push(\n buildPrivateMethodDeclaration(\n // @ts-expect-error checked in switch\n prop,\n privateNamesMap,\n privateFieldsAsProperties,\n ),\n );\n break;\n case isStatic && isPrivate && isMethod && privateFieldsAsProperties:\n staticNodes.unshift(\n buildPrivateStaticMethodInitLoose(\n t.cloneNode(ref),\n // @ts-expect-error checked in switch\n prop,\n file,\n privateNamesMap,\n ),\n );\n pureStaticNodes.push(\n buildPrivateMethodDeclaration(\n // @ts-expect-error checked in switch\n prop,\n privateNamesMap,\n privateFieldsAsProperties,\n ),\n );\n break;\n case isInstance && isPublic && isField && setPublicClassFields:\n // @ts-expect-error checked in switch\n instanceNodes.push(buildPublicFieldInitLoose(t.thisExpression(), prop));\n break;\n case isInstance && isPublic && isField && !setPublicClassFields:\n lastInstanceNodeReturnsThis = true;\n instanceNodes.push(\n // @ts-expect-error checked in switch\n buildPublicFieldInitSpec(t.thisExpression(), prop, file),\n );\n break;\n default:\n throw new Error(\"Unreachable.\");\n }\n }\n\n if (classRefFlags & ClassRefFlag.ForInnerBinding && innerBindingRef != null) {\n classBindingNode = t.expressionStatement(\n t.assignmentExpression(\n \"=\",\n t.cloneNode(classRefForInnerBinding),\n t.cloneNode(innerBindingRef),\n ),\n );\n }\n\n return {\n staticNodes: staticNodes.filter(Boolean),\n instanceNodes: instanceNodes.filter(Boolean),\n lastInstanceNodeReturnsThis,\n pureStaticNodes: pureStaticNodes.filter(Boolean),\n classBindingNode,\n wrapClass(path: NodePath<t.Class>) {\n for (const prop of props) {\n // Delete leading comments so that they don't get attached as\n // trailing comments of the previous sibling.\n // When transforming props, we explicitly attach their leading\n // comments to the transformed node with `inheritPropComments`\n // above.\n prop.node.leadingComments = null;\n prop.remove();\n }\n\n if (injectSuperRef) {\n path.scope.push({ id: t.cloneNode(injectSuperRef) });\n path.set(\n \"superClass\",\n t.assignmentExpression(\"=\", injectSuperRef, path.node.superClass),\n );\n }\n\n if (classRefFlags !== ClassRefFlag.None) {\n if (path.isClassExpression()) {\n path.scope.push({ id: ref });\n path.replaceWith(\n t.assignmentExpression(\"=\", t.cloneNode(ref), path.node),\n );\n } else {\n if (innerBindingRef == null) {\n // export anonymous class declaration\n path.node.id = ref;\n }\n if (classBindingNode != null) {\n path.scope.push({ id: classRefForInnerBinding });\n }\n }\n }\n\n return path;\n },\n };\n}\n"],"mappings":"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"}
@@ -0,0 +1,242 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "FEATURES", {
7
+ enumerable: true,
8
+ get: function () {
9
+ return _features.FEATURES;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "buildCheckInRHS", {
13
+ enumerable: true,
14
+ get: function () {
15
+ return _fields.buildCheckInRHS;
16
+ }
17
+ });
18
+ exports.createClassFeaturePlugin = createClassFeaturePlugin;
19
+ Object.defineProperty(exports, "enableFeature", {
20
+ enumerable: true,
21
+ get: function () {
22
+ return _features.enableFeature;
23
+ }
24
+ });
25
+ Object.defineProperty(exports, "injectInitialization", {
26
+ enumerable: true,
27
+ get: function () {
28
+ return _misc.injectInitialization;
29
+ }
30
+ });
31
+ var _core = require("@babel/core");
32
+ var _helperFunctionName = require("@babel/helper-function-name");
33
+ var _helperSplitExportDeclaration = require("@babel/helper-split-export-declaration");
34
+ var _decorators = require("./decorators.js");
35
+ var _semver = require("semver");
36
+ var _fields = require("./fields.js");
37
+ var _decorators2 = require("./decorators-2018-09.js");
38
+ var _misc = require("./misc.js");
39
+ var _features = require("./features.js");
40
+ var _typescript = require("./typescript.js");
41
+ const versionKey = "@babel/plugin-class-features/version";
42
+ function createClassFeaturePlugin({
43
+ name,
44
+ feature,
45
+ loose,
46
+ manipulateOptions,
47
+ api,
48
+ inherits,
49
+ decoratorVersion
50
+ }) {
51
+ if (feature & _features.FEATURES.decorators) {
52
+ {
53
+ if (decoratorVersion === "2021-12" || decoratorVersion === "2022-03" || decoratorVersion === "2023-01" || decoratorVersion === "2023-05") {
54
+ return (0, _decorators.default)(api, {
55
+ loose
56
+ }, decoratorVersion, inherits);
57
+ }
58
+ }
59
+ }
60
+ {
61
+ var _api;
62
+ (_api = api) != null ? _api : api = {
63
+ assumption: () => void 0
64
+ };
65
+ }
66
+ const setPublicClassFields = api.assumption("setPublicClassFields");
67
+ const privateFieldsAsSymbols = api.assumption("privateFieldsAsSymbols");
68
+ const privateFieldsAsProperties = api.assumption("privateFieldsAsProperties");
69
+ const constantSuper = api.assumption("constantSuper");
70
+ const noDocumentAll = api.assumption("noDocumentAll");
71
+ if (privateFieldsAsProperties && privateFieldsAsSymbols) {
72
+ throw new Error(`Cannot enable both the "privateFieldsAsProperties" and ` + `"privateFieldsAsSymbols" assumptions as the same time.`);
73
+ }
74
+ const privateFieldsAsSymbolsOrProperties = privateFieldsAsProperties || privateFieldsAsSymbols;
75
+ if (loose === true) {
76
+ const explicit = [];
77
+ if (setPublicClassFields !== undefined) {
78
+ explicit.push(`"setPublicClassFields"`);
79
+ }
80
+ if (privateFieldsAsProperties !== undefined) {
81
+ explicit.push(`"privateFieldsAsProperties"`);
82
+ }
83
+ if (privateFieldsAsSymbols !== undefined) {
84
+ explicit.push(`"privateFieldsAsSymbols"`);
85
+ }
86
+ if (explicit.length !== 0) {
87
+ console.warn(`[${name}]: You are using the "loose: true" option and you are` + ` explicitly setting a value for the ${explicit.join(" and ")}` + ` assumption${explicit.length > 1 ? "s" : ""}. The "loose" option` + ` can cause incompatibilities with the other class features` + ` plugins, so it's recommended that you replace it with the` + ` following top-level option:\n` + `\t"assumptions": {\n` + `\t\t"setPublicClassFields": true,\n` + `\t\t"privateFieldsAsSymbols": true\n` + `\t}`);
88
+ }
89
+ }
90
+ return {
91
+ name,
92
+ manipulateOptions,
93
+ inherits,
94
+ pre(file) {
95
+ (0, _features.enableFeature)(file, feature, loose);
96
+ {
97
+ if (typeof file.get(versionKey) === "number") {
98
+ file.set(versionKey, "7.23.10");
99
+ return;
100
+ }
101
+ }
102
+ if (!file.get(versionKey) || _semver.lt(file.get(versionKey), "7.23.10")) {
103
+ file.set(versionKey, "7.23.10");
104
+ }
105
+ },
106
+ visitor: {
107
+ Class(path, {
108
+ file
109
+ }) {
110
+ var _ref;
111
+ if (file.get(versionKey) !== "7.23.10") return;
112
+ if (!(0, _features.shouldTransform)(path, file)) return;
113
+ const pathIsClassDeclaration = path.isClassDeclaration();
114
+ if (pathIsClassDeclaration) (0, _typescript.assertFieldTransformed)(path);
115
+ const loose = (0, _features.isLoose)(file, feature);
116
+ let constructor;
117
+ const isDecorated = (0, _decorators2.hasDecorators)(path.node);
118
+ const props = [];
119
+ const elements = [];
120
+ const computedPaths = [];
121
+ const privateNames = new Set();
122
+ const body = path.get("body");
123
+ for (const path of body.get("body")) {
124
+ if ((path.isClassProperty() || path.isClassMethod()) && path.node.computed) {
125
+ computedPaths.push(path);
126
+ }
127
+ if (path.isPrivate()) {
128
+ const {
129
+ name
130
+ } = path.node.key.id;
131
+ const getName = `get ${name}`;
132
+ const setName = `set ${name}`;
133
+ if (path.isClassPrivateMethod()) {
134
+ if (path.node.kind === "get") {
135
+ if (privateNames.has(getName) || privateNames.has(name) && !privateNames.has(setName)) {
136
+ throw path.buildCodeFrameError("Duplicate private field");
137
+ }
138
+ privateNames.add(getName).add(name);
139
+ } else if (path.node.kind === "set") {
140
+ if (privateNames.has(setName) || privateNames.has(name) && !privateNames.has(getName)) {
141
+ throw path.buildCodeFrameError("Duplicate private field");
142
+ }
143
+ privateNames.add(setName).add(name);
144
+ }
145
+ } else {
146
+ if (privateNames.has(name) && !privateNames.has(getName) && !privateNames.has(setName) || privateNames.has(name) && (privateNames.has(getName) || privateNames.has(setName))) {
147
+ throw path.buildCodeFrameError("Duplicate private field");
148
+ }
149
+ privateNames.add(name);
150
+ }
151
+ }
152
+ if (path.isClassMethod({
153
+ kind: "constructor"
154
+ })) {
155
+ constructor = path;
156
+ } else {
157
+ elements.push(path);
158
+ if (path.isProperty() || path.isPrivate() || path.isStaticBlock != null && path.isStaticBlock()) {
159
+ props.push(path);
160
+ }
161
+ }
162
+ }
163
+ {
164
+ if (!props.length && !isDecorated) return;
165
+ }
166
+ const innerBinding = path.node.id;
167
+ let ref;
168
+ if (!innerBinding || !pathIsClassDeclaration) {
169
+ (0, _helperFunctionName.default)(path);
170
+ ref = path.scope.generateUidIdentifier((innerBinding == null ? void 0 : innerBinding.name) || "Class");
171
+ }
172
+ const classRefForDefine = (_ref = ref) != null ? _ref : _core.types.cloneNode(innerBinding);
173
+ const privateNamesMap = (0, _fields.buildPrivateNamesMap)(props);
174
+ const privateNamesNodes = (0, _fields.buildPrivateNamesNodes)(privateNamesMap, privateFieldsAsProperties != null ? privateFieldsAsProperties : loose, privateFieldsAsSymbols != null ? privateFieldsAsSymbols : false, file);
175
+ (0, _fields.transformPrivateNamesUsage)(classRefForDefine, path, privateNamesMap, {
176
+ privateFieldsAsProperties: privateFieldsAsSymbolsOrProperties != null ? privateFieldsAsSymbolsOrProperties : loose,
177
+ noDocumentAll,
178
+ innerBinding
179
+ }, file);
180
+ let keysNodes, staticNodes, instanceNodes, lastInstanceNodeReturnsThis, pureStaticNodes, classBindingNode, wrapClass;
181
+ {
182
+ if (isDecorated) {
183
+ staticNodes = pureStaticNodes = keysNodes = [];
184
+ ({
185
+ instanceNodes,
186
+ wrapClass
187
+ } = (0, _decorators2.buildDecoratedClass)(classRefForDefine, path, elements, file));
188
+ } else {
189
+ keysNodes = (0, _misc.extractComputedKeys)(path, computedPaths, file);
190
+ ({
191
+ staticNodes,
192
+ pureStaticNodes,
193
+ instanceNodes,
194
+ lastInstanceNodeReturnsThis,
195
+ classBindingNode,
196
+ wrapClass
197
+ } = (0, _fields.buildFieldsInitNodes)(ref, path.node.superClass, props, privateNamesMap, file, setPublicClassFields != null ? setPublicClassFields : loose, privateFieldsAsSymbolsOrProperties != null ? privateFieldsAsSymbolsOrProperties : loose, constantSuper != null ? constantSuper : loose, innerBinding));
198
+ }
199
+ }
200
+ if (instanceNodes.length > 0) {
201
+ (0, _misc.injectInitialization)(path, constructor, instanceNodes, (referenceVisitor, state) => {
202
+ {
203
+ if (isDecorated) return;
204
+ }
205
+ for (const prop of props) {
206
+ if (_core.types.isStaticBlock != null && _core.types.isStaticBlock(prop.node) || prop.node.static) continue;
207
+ prop.traverse(referenceVisitor, state);
208
+ }
209
+ }, lastInstanceNodeReturnsThis);
210
+ }
211
+ const wrappedPath = wrapClass(path);
212
+ wrappedPath.insertBefore([...privateNamesNodes, ...keysNodes]);
213
+ if (staticNodes.length > 0) {
214
+ wrappedPath.insertAfter(staticNodes);
215
+ }
216
+ if (pureStaticNodes.length > 0) {
217
+ wrappedPath.find(parent => parent.isStatement() || parent.isDeclaration()).insertAfter(pureStaticNodes);
218
+ }
219
+ if (classBindingNode != null && pathIsClassDeclaration) {
220
+ wrappedPath.insertAfter(classBindingNode);
221
+ }
222
+ },
223
+ ExportDefaultDeclaration(path, {
224
+ file
225
+ }) {
226
+ {
227
+ if (file.get(versionKey) !== "7.23.10") return;
228
+ const decl = path.get("declaration");
229
+ if (decl.isClassDeclaration() && (0, _decorators2.hasDecorators)(decl.node)) {
230
+ if (decl.node.id) {
231
+ (0, _helperSplitExportDeclaration.default)(path);
232
+ } else {
233
+ decl.node.type = "ClassExpression";
234
+ }
235
+ }
236
+ }
237
+ }
238
+ }
239
+ };
240
+ }
241
+
242
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_core","require","_helperFunctionName","_helperSplitExportDeclaration","_decorators","_semver","_fields","_decorators2","_misc","_features","_typescript","versionKey","createClassFeaturePlugin","name","feature","loose","manipulateOptions","api","inherits","decoratorVersion","FEATURES","decorators","createDecoratorTransform","_api","assumption","setPublicClassFields","privateFieldsAsSymbols","privateFieldsAsProperties","constantSuper","noDocumentAll","Error","privateFieldsAsSymbolsOrProperties","explicit","undefined","push","length","console","warn","join","pre","file","enableFeature","get","set","semver","lt","visitor","Class","path","_ref","shouldTransform","pathIsClassDeclaration","isClassDeclaration","assertFieldTransformed","isLoose","constructor","isDecorated","hasDecorators","node","props","elements","computedPaths","privateNames","Set","body","isClassProperty","isClassMethod","computed","isPrivate","key","id","getName","setName","isClassPrivateMethod","kind","has","buildCodeFrameError","add","isProperty","isStaticBlock","innerBinding","ref","nameFunction","scope","generateUidIdentifier","classRefForDefine","t","cloneNode","privateNamesMap","buildPrivateNamesMap","privateNamesNodes","buildPrivateNamesNodes","transformPrivateNamesUsage","keysNodes","staticNodes","instanceNodes","lastInstanceNodeReturnsThis","pureStaticNodes","classBindingNode","wrapClass","buildDecoratedClass","extractComputedKeys","buildFieldsInitNodes","superClass","injectInitialization","referenceVisitor","state","prop","static","traverse","wrappedPath","insertBefore","insertAfter","find","parent","isStatement","isDeclaration","ExportDefaultDeclaration","decl","splitExportDeclaration","type"],"sources":["../src/index.ts"],"sourcesContent":["import { types as t } from \"@babel/core\";\nimport type { PluginAPI, PluginObject } from \"@babel/core\";\nimport type { NodePath } from \"@babel/traverse\";\nimport nameFunction from \"@babel/helper-function-name\";\nimport splitExportDeclaration from \"@babel/helper-split-export-declaration\";\nimport createDecoratorTransform from \"./decorators.ts\";\n\nimport semver from \"semver\";\n\nimport {\n buildPrivateNamesNodes,\n buildPrivateNamesMap,\n transformPrivateNamesUsage,\n buildFieldsInitNodes,\n buildCheckInRHS,\n} from \"./fields.ts\";\nimport type { PropPath } from \"./fields.ts\";\nimport { buildDecoratedClass, hasDecorators } from \"./decorators-2018-09.ts\";\nimport { injectInitialization, extractComputedKeys } from \"./misc.ts\";\nimport {\n enableFeature,\n FEATURES,\n isLoose,\n shouldTransform,\n} from \"./features.ts\";\nimport { assertFieldTransformed } from \"./typescript.ts\";\n\nexport { FEATURES, enableFeature, injectInitialization, buildCheckInRHS };\n\nconst versionKey = \"@babel/plugin-class-features/version\";\n\ninterface Options {\n name: string;\n feature: number;\n loose?: boolean;\n inherits?: PluginObject[\"inherits\"];\n manipulateOptions?: PluginObject[\"manipulateOptions\"];\n api?: PluginAPI;\n decoratorVersion?: \"2023-05\" | \"2023-01\" | \"2022-03\" | \"2021-12\" | \"2018-09\";\n}\n\nexport function createClassFeaturePlugin({\n name,\n feature,\n loose,\n manipulateOptions,\n api,\n inherits,\n decoratorVersion,\n}: Options): PluginObject {\n if (feature & FEATURES.decorators) {\n if (process.env.BABEL_8_BREAKING) {\n return createDecoratorTransform(api, { loose }, \"2023-05\", inherits);\n } else {\n if (\n decoratorVersion === \"2021-12\" ||\n decoratorVersion === \"2022-03\" ||\n decoratorVersion === \"2023-01\" ||\n decoratorVersion === \"2023-05\"\n ) {\n return createDecoratorTransform(\n api,\n { loose },\n decoratorVersion,\n inherits,\n );\n }\n }\n }\n if (!process.env.BABEL_8_BREAKING) {\n api ??= { assumption: () => void 0 as any } as any;\n }\n const setPublicClassFields = api.assumption(\"setPublicClassFields\");\n const privateFieldsAsSymbols = api.assumption(\"privateFieldsAsSymbols\");\n const privateFieldsAsProperties = api.assumption(\"privateFieldsAsProperties\");\n const constantSuper = api.assumption(\"constantSuper\");\n const noDocumentAll = api.assumption(\"noDocumentAll\");\n\n if (privateFieldsAsProperties && privateFieldsAsSymbols) {\n throw new Error(\n `Cannot enable both the \"privateFieldsAsProperties\" and ` +\n `\"privateFieldsAsSymbols\" assumptions as the same time.`,\n );\n }\n const privateFieldsAsSymbolsOrProperties =\n privateFieldsAsProperties || privateFieldsAsSymbols;\n\n if (loose === true) {\n type AssumptionName = Parameters<PluginAPI[\"assumption\"]>[0];\n const explicit: `\"${AssumptionName}\"`[] = [];\n\n if (setPublicClassFields !== undefined) {\n explicit.push(`\"setPublicClassFields\"`);\n }\n if (privateFieldsAsProperties !== undefined) {\n explicit.push(`\"privateFieldsAsProperties\"`);\n }\n if (privateFieldsAsSymbols !== undefined) {\n explicit.push(`\"privateFieldsAsSymbols\"`);\n }\n if (explicit.length !== 0) {\n console.warn(\n `[${name}]: You are using the \"loose: true\" option and you are` +\n ` explicitly setting a value for the ${explicit.join(\" and \")}` +\n ` assumption${explicit.length > 1 ? \"s\" : \"\"}. The \"loose\" option` +\n ` can cause incompatibilities with the other class features` +\n ` plugins, so it's recommended that you replace it with the` +\n ` following top-level option:\\n` +\n `\\t\"assumptions\": {\\n` +\n `\\t\\t\"setPublicClassFields\": true,\\n` +\n `\\t\\t\"privateFieldsAsSymbols\": true\\n` +\n `\\t}`,\n );\n }\n }\n\n return {\n name,\n manipulateOptions,\n inherits,\n\n pre(file) {\n enableFeature(file, feature, loose);\n\n if (!process.env.BABEL_8_BREAKING) {\n // Until 7.21.4, we used to encode the version as a number.\n // If file.get(versionKey) is a number, it has thus been\n // set by an older version of this plugin.\n if (typeof file.get(versionKey) === \"number\") {\n file.set(versionKey, PACKAGE_JSON.version);\n return;\n }\n }\n if (\n !file.get(versionKey) ||\n semver.lt(file.get(versionKey), PACKAGE_JSON.version)\n ) {\n file.set(versionKey, PACKAGE_JSON.version);\n }\n },\n\n visitor: {\n Class(path, { file }) {\n if (file.get(versionKey) !== PACKAGE_JSON.version) return;\n\n if (!shouldTransform(path, file)) return;\n\n const pathIsClassDeclaration = path.isClassDeclaration();\n\n if (pathIsClassDeclaration) assertFieldTransformed(path);\n\n const loose = isLoose(file, feature);\n\n let constructor: NodePath<t.ClassMethod>;\n const isDecorated = hasDecorators(path.node);\n const props: PropPath[] = [];\n const elements = [];\n const computedPaths: NodePath<t.ClassProperty | t.ClassMethod>[] = [];\n const privateNames = new Set<string>();\n const body = path.get(\"body\");\n\n for (const path of body.get(\"body\")) {\n if (\n // check path.node.computed is enough, but ts will complain\n (path.isClassProperty() || path.isClassMethod()) &&\n path.node.computed\n ) {\n computedPaths.push(path);\n }\n\n if (path.isPrivate()) {\n const { name } = path.node.key.id;\n const getName = `get ${name}`;\n const setName = `set ${name}`;\n\n if (path.isClassPrivateMethod()) {\n if (path.node.kind === \"get\") {\n if (\n privateNames.has(getName) ||\n (privateNames.has(name) && !privateNames.has(setName))\n ) {\n throw path.buildCodeFrameError(\"Duplicate private field\");\n }\n privateNames.add(getName).add(name);\n } else if (path.node.kind === \"set\") {\n if (\n privateNames.has(setName) ||\n (privateNames.has(name) && !privateNames.has(getName))\n ) {\n throw path.buildCodeFrameError(\"Duplicate private field\");\n }\n privateNames.add(setName).add(name);\n }\n } else {\n if (\n (privateNames.has(name) &&\n !privateNames.has(getName) &&\n !privateNames.has(setName)) ||\n (privateNames.has(name) &&\n (privateNames.has(getName) || privateNames.has(setName)))\n ) {\n throw path.buildCodeFrameError(\"Duplicate private field\");\n }\n\n privateNames.add(name);\n }\n }\n\n if (path.isClassMethod({ kind: \"constructor\" })) {\n constructor = path;\n } else {\n elements.push(path);\n if (\n path.isProperty() ||\n path.isPrivate() ||\n path.isStaticBlock?.()\n ) {\n props.push(path as PropPath);\n }\n }\n }\n\n if (process.env.BABEL_8_BREAKING) {\n if (!props.length) return;\n } else {\n if (!props.length && !isDecorated) return;\n }\n\n const innerBinding = path.node.id;\n let ref: t.Identifier | null;\n if (!innerBinding || !pathIsClassDeclaration) {\n nameFunction(path);\n ref = path.scope.generateUidIdentifier(innerBinding?.name || \"Class\");\n }\n const classRefForDefine = ref ?? t.cloneNode(innerBinding);\n\n // NODE: These three functions don't support decorators yet,\n // but verifyUsedFeatures throws if there are both\n // decorators and private fields.\n const privateNamesMap = buildPrivateNamesMap(props);\n const privateNamesNodes = buildPrivateNamesNodes(\n privateNamesMap,\n privateFieldsAsProperties ?? loose,\n privateFieldsAsSymbols ?? false,\n file,\n );\n\n transformPrivateNamesUsage(\n classRefForDefine,\n path,\n privateNamesMap,\n {\n privateFieldsAsProperties:\n privateFieldsAsSymbolsOrProperties ?? loose,\n noDocumentAll,\n innerBinding,\n },\n file,\n );\n\n let keysNodes: t.Statement[],\n staticNodes: t.Statement[],\n instanceNodes: t.ExpressionStatement[],\n lastInstanceNodeReturnsThis: boolean,\n pureStaticNodes: t.FunctionDeclaration[],\n classBindingNode: t.Statement | null,\n wrapClass: (path: NodePath<t.Class>) => NodePath;\n\n if (!process.env.BABEL_8_BREAKING) {\n if (isDecorated) {\n staticNodes = pureStaticNodes = keysNodes = [];\n ({ instanceNodes, wrapClass } = buildDecoratedClass(\n classRefForDefine,\n path,\n elements,\n file,\n ));\n } else {\n keysNodes = extractComputedKeys(path, computedPaths, file);\n ({\n staticNodes,\n pureStaticNodes,\n instanceNodes,\n lastInstanceNodeReturnsThis,\n classBindingNode,\n wrapClass,\n } = buildFieldsInitNodes(\n ref,\n path.node.superClass,\n props,\n privateNamesMap,\n file,\n setPublicClassFields ?? loose,\n privateFieldsAsSymbolsOrProperties ?? loose,\n constantSuper ?? loose,\n innerBinding,\n ));\n }\n } else {\n keysNodes = extractComputedKeys(path, computedPaths, file);\n ({\n staticNodes,\n pureStaticNodes,\n instanceNodes,\n lastInstanceNodeReturnsThis,\n classBindingNode,\n wrapClass,\n } = buildFieldsInitNodes(\n ref,\n path.node.superClass,\n props,\n privateNamesMap,\n file,\n setPublicClassFields ?? loose,\n privateFieldsAsSymbolsOrProperties ?? loose,\n constantSuper ?? loose,\n innerBinding,\n ));\n }\n\n if (instanceNodes.length > 0) {\n injectInitialization(\n path,\n constructor,\n instanceNodes,\n (referenceVisitor, state) => {\n if (!process.env.BABEL_8_BREAKING) {\n if (isDecorated) return;\n }\n for (const prop of props) {\n // @ts-expect-error: TS doesn't infer that prop.node is not a StaticBlock\n if (t.isStaticBlock?.(prop.node) || prop.node.static) continue;\n prop.traverse(referenceVisitor, state);\n }\n },\n lastInstanceNodeReturnsThis,\n );\n }\n\n // rename to make ts happy\n const wrappedPath = wrapClass(path);\n wrappedPath.insertBefore([...privateNamesNodes, ...keysNodes]);\n if (staticNodes.length > 0) {\n wrappedPath.insertAfter(staticNodes);\n }\n if (pureStaticNodes.length > 0) {\n wrappedPath\n .find(parent => parent.isStatement() || parent.isDeclaration())\n .insertAfter(pureStaticNodes);\n }\n if (classBindingNode != null && pathIsClassDeclaration) {\n wrappedPath.insertAfter(classBindingNode);\n }\n },\n\n ExportDefaultDeclaration(path, { file }) {\n if (!process.env.BABEL_8_BREAKING) {\n if (file.get(versionKey) !== PACKAGE_JSON.version) return;\n\n const decl = path.get(\"declaration\");\n\n if (decl.isClassDeclaration() && hasDecorators(decl.node)) {\n if (decl.node.id) {\n // export default class Foo {}\n // -->\n // class Foo {} export { Foo as default }\n splitExportDeclaration(path);\n } else {\n // @ts-expect-error Anonymous class declarations can be\n // transformed as if they were expressions\n decl.node.type = \"ClassExpression\";\n }\n }\n }\n },\n },\n };\n}\n"],"mappings":"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"}
@@ -0,0 +1,124 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.extractComputedKeys = extractComputedKeys;
7
+ exports.injectInitialization = injectInitialization;
8
+ var _core = require("@babel/core");
9
+ var _helperEnvironmentVisitor = require("@babel/helper-environment-visitor");
10
+ const findBareSupers = _core.traverse.visitors.merge([{
11
+ Super(path) {
12
+ const {
13
+ node,
14
+ parentPath
15
+ } = path;
16
+ if (parentPath.isCallExpression({
17
+ callee: node
18
+ })) {
19
+ this.push(parentPath);
20
+ }
21
+ }
22
+ }, _helperEnvironmentVisitor.default]);
23
+ const referenceVisitor = {
24
+ "TSTypeAnnotation|TypeAnnotation"(path) {
25
+ path.skip();
26
+ },
27
+ ReferencedIdentifier(path, {
28
+ scope
29
+ }) {
30
+ if (scope.hasOwnBinding(path.node.name)) {
31
+ scope.rename(path.node.name);
32
+ path.skip();
33
+ }
34
+ }
35
+ };
36
+ function handleClassTDZ(path, state) {
37
+ if (state.classBinding && state.classBinding === path.scope.getBinding(path.node.name)) {
38
+ const classNameTDZError = state.file.addHelper("classNameTDZError");
39
+ const throwNode = _core.types.callExpression(classNameTDZError, [_core.types.stringLiteral(path.node.name)]);
40
+ path.replaceWith(_core.types.sequenceExpression([throwNode, path.node]));
41
+ path.skip();
42
+ }
43
+ }
44
+ const classFieldDefinitionEvaluationTDZVisitor = {
45
+ ReferencedIdentifier: handleClassTDZ
46
+ };
47
+ function injectInitialization(path, constructor, nodes, renamer, lastReturnsThis) {
48
+ if (!nodes.length) return;
49
+ const isDerived = !!path.node.superClass;
50
+ if (!constructor) {
51
+ const newConstructor = _core.types.classMethod("constructor", _core.types.identifier("constructor"), [], _core.types.blockStatement([]));
52
+ if (isDerived) {
53
+ newConstructor.params = [_core.types.restElement(_core.types.identifier("args"))];
54
+ newConstructor.body.body.push(_core.template.statement.ast`super(...args)`);
55
+ }
56
+ [constructor] = path.get("body").unshiftContainer("body", newConstructor);
57
+ }
58
+ if (renamer) {
59
+ renamer(referenceVisitor, {
60
+ scope: constructor.scope
61
+ });
62
+ }
63
+ if (isDerived) {
64
+ const bareSupers = [];
65
+ constructor.traverse(findBareSupers, bareSupers);
66
+ let isFirst = true;
67
+ for (const bareSuper of bareSupers) {
68
+ if (isFirst) {
69
+ isFirst = false;
70
+ } else {
71
+ nodes = nodes.map(n => _core.types.cloneNode(n));
72
+ }
73
+ if (!bareSuper.parentPath.isExpressionStatement()) {
74
+ const allNodes = [bareSuper.node, ...nodes.map(n => _core.types.toExpression(n))];
75
+ if (!lastReturnsThis) allNodes.push(_core.types.thisExpression());
76
+ bareSuper.replaceWith(_core.types.sequenceExpression(allNodes));
77
+ } else {
78
+ bareSuper.insertAfter(nodes);
79
+ }
80
+ }
81
+ } else {
82
+ constructor.get("body").unshiftContainer("body", nodes);
83
+ }
84
+ }
85
+ function extractComputedKeys(path, computedPaths, file) {
86
+ const declarations = [];
87
+ const state = {
88
+ classBinding: path.node.id && path.scope.getBinding(path.node.id.name),
89
+ file
90
+ };
91
+ for (const computedPath of computedPaths) {
92
+ const computedKey = computedPath.get("key");
93
+ if (computedKey.isReferencedIdentifier()) {
94
+ handleClassTDZ(computedKey, state);
95
+ } else {
96
+ computedKey.traverse(classFieldDefinitionEvaluationTDZVisitor, state);
97
+ }
98
+ const computedNode = computedPath.node;
99
+ if (!computedKey.isConstantExpression()) {
100
+ const scope = path.scope;
101
+ const isUidReference = _core.types.isIdentifier(computedKey.node) && scope.hasUid(computedKey.node.name);
102
+ const isMemoiseAssignment = computedKey.isAssignmentExpression({
103
+ operator: "="
104
+ }) && _core.types.isIdentifier(computedKey.node.left) && scope.hasUid(computedKey.node.left.name);
105
+ if (isUidReference) {
106
+ continue;
107
+ } else if (isMemoiseAssignment) {
108
+ declarations.push(_core.types.expressionStatement(_core.types.cloneNode(computedNode.key)));
109
+ computedNode.key = _core.types.cloneNode(computedNode.key.left);
110
+ } else {
111
+ const ident = path.scope.generateUidIdentifierBasedOnNode(computedNode.key);
112
+ scope.push({
113
+ id: ident,
114
+ kind: "let"
115
+ });
116
+ declarations.push(_core.types.expressionStatement(_core.types.assignmentExpression("=", _core.types.cloneNode(ident), computedNode.key)));
117
+ computedNode.key = _core.types.cloneNode(ident);
118
+ }
119
+ }
120
+ }
121
+ return declarations;
122
+ }
123
+
124
+ //# sourceMappingURL=misc.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_core","require","_helperEnvironmentVisitor","findBareSupers","traverse","visitors","merge","Super","path","node","parentPath","isCallExpression","callee","push","environmentVisitor","referenceVisitor","TSTypeAnnotation|TypeAnnotation","skip","ReferencedIdentifier","scope","hasOwnBinding","name","rename","handleClassTDZ","state","classBinding","getBinding","classNameTDZError","file","addHelper","throwNode","t","callExpression","stringLiteral","replaceWith","sequenceExpression","classFieldDefinitionEvaluationTDZVisitor","injectInitialization","constructor","nodes","renamer","lastReturnsThis","length","isDerived","superClass","newConstructor","classMethod","identifier","blockStatement","params","restElement","body","template","statement","ast","get","unshiftContainer","bareSupers","isFirst","bareSuper","map","n","cloneNode","isExpressionStatement","allNodes","toExpression","thisExpression","insertAfter","extractComputedKeys","computedPaths","declarations","id","computedPath","computedKey","isReferencedIdentifier","computedNode","isConstantExpression","isUidReference","isIdentifier","hasUid","isMemoiseAssignment","isAssignmentExpression","operator","left","expressionStatement","key","ident","generateUidIdentifierBasedOnNode","kind","assignmentExpression"],"sources":["../src/misc.ts"],"sourcesContent":["import { template, traverse, types as t } from \"@babel/core\";\nimport type { File } from \"@babel/core\";\nimport type { NodePath, Scope, Visitor, Binding } from \"@babel/traverse\";\nimport environmentVisitor from \"@babel/helper-environment-visitor\";\n\nconst findBareSupers = traverse.visitors.merge<NodePath<t.CallExpression>[]>([\n {\n Super(path) {\n const { node, parentPath } = path;\n if (parentPath.isCallExpression({ callee: node })) {\n this.push(parentPath);\n }\n },\n },\n environmentVisitor,\n]);\n\nconst referenceVisitor: Visitor<{ scope: Scope }> = {\n \"TSTypeAnnotation|TypeAnnotation\"(\n path: NodePath<t.TSTypeAnnotation | t.TypeAnnotation>,\n ) {\n path.skip();\n },\n\n ReferencedIdentifier(path: NodePath<t.Identifier>, { scope }) {\n if (scope.hasOwnBinding(path.node.name)) {\n scope.rename(path.node.name);\n path.skip();\n }\n },\n};\n\ntype HandleClassTDZState = {\n classBinding: Binding;\n file: File;\n};\n\nfunction handleClassTDZ(\n path: NodePath<t.Identifier>,\n state: HandleClassTDZState,\n) {\n if (\n state.classBinding &&\n state.classBinding === path.scope.getBinding(path.node.name)\n ) {\n const classNameTDZError = state.file.addHelper(\"classNameTDZError\");\n const throwNode = t.callExpression(classNameTDZError, [\n t.stringLiteral(path.node.name),\n ]);\n\n path.replaceWith(t.sequenceExpression([throwNode, path.node]));\n path.skip();\n }\n}\n\nconst classFieldDefinitionEvaluationTDZVisitor: Visitor<HandleClassTDZState> = {\n ReferencedIdentifier: handleClassTDZ,\n};\n\ninterface RenamerState {\n scope: Scope;\n}\n\nexport function injectInitialization(\n path: NodePath<t.Class>,\n constructor: NodePath<t.ClassMethod> | undefined,\n nodes: t.ExpressionStatement[],\n renamer?: (visitor: Visitor<RenamerState>, state: RenamerState) => void,\n lastReturnsThis?: boolean,\n) {\n if (!nodes.length) return;\n\n const isDerived = !!path.node.superClass;\n\n if (!constructor) {\n const newConstructor = t.classMethod(\n \"constructor\",\n t.identifier(\"constructor\"),\n [],\n t.blockStatement([]),\n );\n\n if (isDerived) {\n newConstructor.params = [t.restElement(t.identifier(\"args\"))];\n newConstructor.body.body.push(template.statement.ast`super(...args)`);\n }\n\n [constructor] = path\n .get(\"body\")\n .unshiftContainer(\"body\", newConstructor) as NodePath<t.ClassMethod>[];\n }\n\n if (renamer) {\n renamer(referenceVisitor, { scope: constructor.scope });\n }\n\n if (isDerived) {\n const bareSupers: NodePath<t.CallExpression>[] = [];\n constructor.traverse(findBareSupers, bareSupers);\n let isFirst = true;\n for (const bareSuper of bareSupers) {\n if (isFirst) {\n isFirst = false;\n } else {\n nodes = nodes.map(n => t.cloneNode(n));\n }\n if (!bareSuper.parentPath.isExpressionStatement()) {\n const allNodes: t.Expression[] = [\n bareSuper.node,\n ...nodes.map(n => t.toExpression(n)),\n ];\n if (!lastReturnsThis) allNodes.push(t.thisExpression());\n bareSuper.replaceWith(t.sequenceExpression(allNodes));\n } else {\n bareSuper.insertAfter(nodes);\n }\n }\n } else {\n constructor.get(\"body\").unshiftContainer(\"body\", nodes);\n }\n}\n\nexport function extractComputedKeys(\n path: NodePath<t.Class>,\n computedPaths: NodePath<t.ClassProperty | t.ClassMethod>[],\n file: File,\n) {\n const declarations: t.ExpressionStatement[] = [];\n const state = {\n classBinding: path.node.id && path.scope.getBinding(path.node.id.name),\n file,\n };\n for (const computedPath of computedPaths) {\n const computedKey = computedPath.get(\"key\");\n if (computedKey.isReferencedIdentifier()) {\n handleClassTDZ(computedKey, state);\n } else {\n computedKey.traverse(classFieldDefinitionEvaluationTDZVisitor, state);\n }\n\n const computedNode = computedPath.node;\n // Make sure computed property names are only evaluated once (upon class definition)\n // and in the right order in combination with static properties\n if (!computedKey.isConstantExpression()) {\n const scope = path.scope;\n const isUidReference =\n t.isIdentifier(computedKey.node) && scope.hasUid(computedKey.node.name);\n const isMemoiseAssignment =\n computedKey.isAssignmentExpression({ operator: \"=\" }) &&\n t.isIdentifier(computedKey.node.left) &&\n scope.hasUid(computedKey.node.left.name);\n if (isUidReference) {\n continue;\n } else if (isMemoiseAssignment) {\n declarations.push(t.expressionStatement(t.cloneNode(computedNode.key)));\n computedNode.key = t.cloneNode(\n (computedNode.key as t.AssignmentExpression).left as t.Identifier,\n );\n } else {\n const ident = path.scope.generateUidIdentifierBasedOnNode(\n computedNode.key,\n );\n // Declaring in the same block scope\n // Ref: https://github.com/babel/babel/pull/10029/files#diff-fbbdd83e7a9c998721c1484529c2ce92\n scope.push({\n id: ident,\n kind: \"let\",\n });\n declarations.push(\n t.expressionStatement(\n t.assignmentExpression(\"=\", t.cloneNode(ident), computedNode.key),\n ),\n );\n computedNode.key = t.cloneNode(ident);\n }\n }\n }\n\n return declarations;\n}\n"],"mappings":"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"}