@alanszp/business-days-date-fns 10.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.
- package/dist/cache/index.d.ts +2 -1
- package/dist/cache/index.js +1 -1
- package/dist/cache/index.js.map +1 -1
- package/dist/utils/withNonBusinessDays.d.ts +2 -2
- package/dist/utils/withNonBusinessDays.js +18 -6
- package/dist/utils/withNonBusinessDays.js.map +1 -1
- package/dist/utils/withNonBusinessDays.test.js +3 -2
- package/dist/utils/withNonBusinessDays.test.js.map +1 -1
- package/node_modules/@alanszp/errors/.gitignore +3 -0
- package/node_modules/@alanszp/errors/.npmignore +3 -0
- package/node_modules/@alanszp/errors/LICENSE +21 -0
- package/node_modules/@alanszp/errors/dist/errors/BaseError.d.ts +3 -0
- package/node_modules/@alanszp/errors/dist/errors/BaseError.js +18 -0
- package/node_modules/@alanszp/errors/dist/errors/BaseError.js.map +1 -0
- package/node_modules/@alanszp/errors/dist/errors/RenderableError.d.ts +6 -0
- package/node_modules/@alanszp/errors/dist/errors/RenderableError.js +3 -0
- package/node_modules/@alanszp/errors/dist/errors/RenderableError.js.map +1 -0
- package/node_modules/@alanszp/errors/dist/errors/http/BadRequestError.d.ts +8 -0
- package/node_modules/@alanszp/errors/dist/errors/http/BadRequestError.js +20 -0
- package/node_modules/@alanszp/errors/dist/errors/http/BadRequestError.js.map +1 -0
- package/node_modules/@alanszp/errors/dist/errors/http/HttpError.d.ts +8 -0
- package/node_modules/@alanszp/errors/dist/errors/http/HttpError.js +18 -0
- package/node_modules/@alanszp/errors/dist/errors/http/HttpError.js.map +1 -0
- package/node_modules/@alanszp/errors/dist/errors/http/InternalServerError.d.ts +8 -0
- package/node_modules/@alanszp/errors/dist/errors/http/InternalServerError.js +32 -0
- package/node_modules/@alanszp/errors/dist/errors/http/InternalServerError.js.map +1 -0
- package/node_modules/@alanszp/errors/dist/errors/http/NotFoundError.d.ts +4 -0
- package/node_modules/@alanszp/errors/dist/errors/http/NotFoundError.js +11 -0
- package/node_modules/@alanszp/errors/dist/errors/http/NotFoundError.js.map +1 -0
- package/node_modules/@alanszp/errors/dist/errors/http/UnauthorizedError.d.ts +8 -0
- package/node_modules/@alanszp/errors/dist/errors/http/UnauthorizedError.js +20 -0
- package/node_modules/@alanszp/errors/dist/errors/http/UnauthorizedError.js.map +1 -0
- package/node_modules/@alanszp/errors/dist/errors/http/index.d.ts +5 -0
- package/node_modules/@alanszp/errors/dist/errors/http/index.js +18 -0
- package/node_modules/@alanszp/errors/dist/errors/http/index.js.map +1 -0
- package/node_modules/@alanszp/errors/dist/index.d.ts +3 -0
- package/node_modules/@alanszp/errors/dist/index.js +16 -0
- package/node_modules/@alanszp/errors/dist/index.js.map +1 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/LICENSE +21 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/README.md +15 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/assert.d.ts +996 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/async_hooks.d.ts +539 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/buffer.d.ts +2362 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/child_process.d.ts +1540 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/cluster.d.ts +432 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/console.d.ts +415 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/constants.d.ts +19 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/crypto.d.ts +4487 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/dgram.d.ts +596 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/diagnostics_channel.d.ts +545 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/dns/promises.d.ts +425 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/dns.d.ts +809 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/dom-events.d.ts +122 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/domain.d.ts +170 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/events.d.ts +879 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/fs/promises.d.ts +1239 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/fs.d.ts +4311 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/globals.d.ts +411 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/globals.global.d.ts +1 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/http.d.ts +1887 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/http2.d.ts +2382 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/https.d.ts +550 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/index.d.ts +88 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/inspector.d.ts +2747 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/module.d.ts +315 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/net.d.ts +949 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/os.d.ts +478 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/package.json +229 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/path.d.ts +191 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/perf_hooks.d.ts +645 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/process.d.ts +1561 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/punycode.d.ts +117 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/querystring.d.ts +141 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/readline/promises.d.ts +150 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/readline.d.ts +539 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/repl.d.ts +430 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/stream/consumers.d.ts +12 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/stream/promises.d.ts +83 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/stream/web.d.ts +366 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/stream.d.ts +1701 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/test.d.ts +1465 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/timers/promises.d.ts +93 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/timers.d.ts +240 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/tls.d.ts +1210 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/trace_events.d.ts +182 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/assert/strict.d.ts +8 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/assert.d.ts +996 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/async_hooks.d.ts +539 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/buffer.d.ts +2362 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/child_process.d.ts +1540 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/cluster.d.ts +432 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/console.d.ts +415 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/constants.d.ts +19 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/crypto.d.ts +4487 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/dgram.d.ts +596 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +545 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/dns/promises.d.ts +425 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/dns.d.ts +809 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/dom-events.d.ts +122 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/domain.d.ts +170 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/events.d.ts +879 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/fs/promises.d.ts +1239 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/fs.d.ts +4311 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/globals.d.ts +411 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/globals.global.d.ts +1 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/http.d.ts +1887 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/http2.d.ts +2382 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/https.d.ts +550 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/index.d.ts +88 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/inspector.d.ts +2747 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/module.d.ts +315 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/net.d.ts +949 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/os.d.ts +478 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/path.d.ts +191 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/perf_hooks.d.ts +645 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/process.d.ts +1561 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/punycode.d.ts +117 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/querystring.d.ts +141 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/readline/promises.d.ts +150 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/readline.d.ts +539 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/repl.d.ts +430 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/stream/consumers.d.ts +12 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/stream/promises.d.ts +83 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/stream/web.d.ts +366 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/stream.d.ts +1701 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/string_decoder.d.ts +67 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/test.d.ts +1465 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/timers/promises.d.ts +93 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/timers.d.ts +240 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/tls.d.ts +1210 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/trace_events.d.ts +182 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/tty.d.ts +208 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/url.d.ts +927 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/util.d.ts +2183 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/v8.d.ts +764 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/vm.d.ts +903 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/wasi.d.ts +179 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/worker_threads.d.ts +691 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/zlib.d.ts +517 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/tty.d.ts +208 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/url.d.ts +927 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/util.d.ts +2183 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/v8.d.ts +764 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/vm.d.ts +903 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/wasi.d.ts +179 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/worker_threads.d.ts +691 -0
- package/node_modules/@alanszp/errors/node_modules/@types/node/zlib.d.ts +517 -0
- package/node_modules/@alanszp/errors/package.json +27 -0
- package/node_modules/@alanszp/errors/src/errors/BaseError.ts +14 -0
- package/node_modules/@alanszp/errors/src/errors/RenderableError.ts +7 -0
- package/node_modules/@alanszp/errors/src/errors/http/BadRequestError.ts +21 -0
- package/node_modules/@alanszp/errors/src/errors/http/HttpError.ts +19 -0
- package/node_modules/@alanszp/errors/src/errors/http/InternalServerError.ts +34 -0
- package/node_modules/@alanszp/errors/src/errors/http/NotFoundError.ts +7 -0
- package/node_modules/@alanszp/errors/src/errors/http/UnauthorizedError.ts +21 -0
- package/node_modules/@alanszp/errors/src/errors/http/index.ts +5 -0
- package/node_modules/@alanszp/errors/src/index.ts +3 -0
- package/node_modules/@alanszp/errors/tsconfig.json +15 -0
- package/node_modules/@ampproject/remapping/LICENSE +202 -0
- package/node_modules/@ampproject/remapping/README.md +218 -0
- package/node_modules/@ampproject/remapping/dist/remapping.mjs +191 -0
- package/node_modules/@ampproject/remapping/dist/remapping.mjs.map +1 -0
- package/node_modules/@ampproject/remapping/dist/remapping.umd.js +196 -0
- package/node_modules/@ampproject/remapping/dist/remapping.umd.js.map +1 -0
- package/node_modules/@ampproject/remapping/dist/types/build-source-map-tree.d.ts +14 -0
- package/node_modules/@ampproject/remapping/dist/types/remapping.d.ts +19 -0
- package/node_modules/@ampproject/remapping/dist/types/source-map-tree.d.ts +42 -0
- package/node_modules/@ampproject/remapping/dist/types/source-map.d.ts +17 -0
- package/node_modules/@ampproject/remapping/dist/types/types.d.ts +14 -0
- package/node_modules/@ampproject/remapping/package.json +75 -0
- package/node_modules/@babel/code-frame/LICENSE +22 -0
- package/node_modules/@babel/code-frame/README.md +19 -0
- package/node_modules/@babel/code-frame/lib/index.js +157 -0
- package/node_modules/@babel/code-frame/lib/index.js.map +1 -0
- package/node_modules/@babel/code-frame/package.json +30 -0
- package/node_modules/@babel/compat-data/LICENSE +22 -0
- package/node_modules/@babel/compat-data/README.md +19 -0
- package/node_modules/@babel/compat-data/corejs2-built-ins.js +2 -0
- package/node_modules/@babel/compat-data/corejs3-shipped-proposals.js +2 -0
- package/node_modules/@babel/compat-data/data/corejs2-built-ins.json +2081 -0
- package/node_modules/@babel/compat-data/data/corejs3-shipped-proposals.json +5 -0
- package/node_modules/@babel/compat-data/data/native-modules.json +18 -0
- package/node_modules/@babel/compat-data/data/overlapping-plugins.json +31 -0
- package/node_modules/@babel/compat-data/data/plugin-bugfixes.json +201 -0
- package/node_modules/@babel/compat-data/data/plugins.json +777 -0
- package/node_modules/@babel/compat-data/native-modules.js +1 -0
- package/node_modules/@babel/compat-data/overlapping-plugins.js +1 -0
- package/node_modules/@babel/compat-data/package.json +40 -0
- package/node_modules/@babel/compat-data/plugin-bugfixes.js +1 -0
- package/node_modules/@babel/compat-data/plugins.js +1 -0
- package/node_modules/@babel/core/LICENSE +22 -0
- package/node_modules/@babel/core/README.md +19 -0
- package/node_modules/@babel/core/cjs-proxy.cjs +53 -0
- package/node_modules/@babel/core/lib/config/cache-contexts.js +3 -0
- package/node_modules/@babel/core/lib/config/cache-contexts.js.map +1 -0
- package/node_modules/@babel/core/lib/config/caching.js +261 -0
- package/node_modules/@babel/core/lib/config/caching.js.map +1 -0
- package/node_modules/@babel/core/lib/config/config-chain.js +469 -0
- package/node_modules/@babel/core/lib/config/config-chain.js.map +1 -0
- package/node_modules/@babel/core/lib/config/config-descriptors.js +190 -0
- package/node_modules/@babel/core/lib/config/config-descriptors.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/configuration.js +286 -0
- package/node_modules/@babel/core/lib/config/files/configuration.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
- package/node_modules/@babel/core/lib/config/files/import.cjs.map +1 -0
- package/node_modules/@babel/core/lib/config/files/index-browser.js +58 -0
- package/node_modules/@babel/core/lib/config/files/index-browser.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/index.js +78 -0
- package/node_modules/@babel/core/lib/config/files/index.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/module-types.js +173 -0
- package/node_modules/@babel/core/lib/config/files/module-types.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/package.js +61 -0
- package/node_modules/@babel/core/lib/config/files/package.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/plugins.js +217 -0
- package/node_modules/@babel/core/lib/config/files/plugins.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/types.js +3 -0
- package/node_modules/@babel/core/lib/config/files/types.js.map +1 -0
- package/node_modules/@babel/core/lib/config/files/utils.js +36 -0
- package/node_modules/@babel/core/lib/config/files/utils.js.map +1 -0
- package/node_modules/@babel/core/lib/config/full.js +310 -0
- package/node_modules/@babel/core/lib/config/full.js.map +1 -0
- package/node_modules/@babel/core/lib/config/helpers/config-api.js +84 -0
- package/node_modules/@babel/core/lib/config/helpers/config-api.js.map +1 -0
- package/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
- package/node_modules/@babel/core/lib/config/helpers/deep-array.js.map +1 -0
- package/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
- package/node_modules/@babel/core/lib/config/helpers/environment.js.map +1 -0
- package/node_modules/@babel/core/lib/config/index.js +93 -0
- package/node_modules/@babel/core/lib/config/index.js.map +1 -0
- package/node_modules/@babel/core/lib/config/item.js +67 -0
- package/node_modules/@babel/core/lib/config/item.js.map +1 -0
- package/node_modules/@babel/core/lib/config/partial.js +158 -0
- package/node_modules/@babel/core/lib/config/partial.js.map +1 -0
- package/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
- package/node_modules/@babel/core/lib/config/pattern-to-regex.js.map +1 -0
- package/node_modules/@babel/core/lib/config/plugin.js +33 -0
- package/node_modules/@babel/core/lib/config/plugin.js.map +1 -0
- package/node_modules/@babel/core/lib/config/printer.js +113 -0
- package/node_modules/@babel/core/lib/config/printer.js.map +1 -0
- package/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
- package/node_modules/@babel/core/lib/config/resolve-targets-browser.js.map +1 -0
- package/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
- package/node_modules/@babel/core/lib/config/resolve-targets.js.map +1 -0
- package/node_modules/@babel/core/lib/config/util.js +31 -0
- package/node_modules/@babel/core/lib/config/util.js.map +1 -0
- package/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
- package/node_modules/@babel/core/lib/config/validation/option-assertions.js.map +1 -0
- package/node_modules/@babel/core/lib/config/validation/options.js +192 -0
- package/node_modules/@babel/core/lib/config/validation/options.js.map +1 -0
- package/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
- package/node_modules/@babel/core/lib/config/validation/plugins.js.map +1 -0
- package/node_modules/@babel/core/lib/config/validation/removed.js +68 -0
- package/node_modules/@babel/core/lib/config/validation/removed.js.map +1 -0
- package/node_modules/@babel/core/lib/errors/config-error.js +18 -0
- package/node_modules/@babel/core/lib/errors/config-error.js.map +1 -0
- package/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
- package/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js.map +1 -0
- package/node_modules/@babel/core/lib/gensync-utils/async.js +90 -0
- package/node_modules/@babel/core/lib/gensync-utils/async.js.map +1 -0
- package/node_modules/@babel/core/lib/gensync-utils/fs.js +31 -0
- package/node_modules/@babel/core/lib/gensync-utils/fs.js.map +1 -0
- package/node_modules/@babel/core/lib/gensync-utils/functional.js +58 -0
- package/node_modules/@babel/core/lib/gensync-utils/functional.js.map +1 -0
- package/node_modules/@babel/core/lib/index.js +242 -0
- package/node_modules/@babel/core/lib/index.js.map +1 -0
- package/node_modules/@babel/core/lib/parse.js +47 -0
- package/node_modules/@babel/core/lib/parse.js.map +1 -0
- package/node_modules/@babel/core/lib/parser/index.js +79 -0
- package/node_modules/@babel/core/lib/parser/index.js.map +1 -0
- package/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +329 -0
- package/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js.map +1 -0
- package/node_modules/@babel/core/lib/tools/build-external-helpers.js +143 -0
- package/node_modules/@babel/core/lib/tools/build-external-helpers.js.map +1 -0
- package/node_modules/@babel/core/lib/transform-ast.js +50 -0
- package/node_modules/@babel/core/lib/transform-ast.js.map +1 -0
- package/node_modules/@babel/core/lib/transform-file-browser.js +23 -0
- package/node_modules/@babel/core/lib/transform-file-browser.js.map +1 -0
- package/node_modules/@babel/core/lib/transform-file.js +40 -0
- package/node_modules/@babel/core/lib/transform-file.js.map +1 -0
- package/node_modules/@babel/core/lib/transform.js +49 -0
- package/node_modules/@babel/core/lib/transform.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +77 -0
- package/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/file/file.js +211 -0
- package/node_modules/@babel/core/lib/transformation/file/file.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
- package/node_modules/@babel/core/lib/transformation/file/generate.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
- package/node_modules/@babel/core/lib/transformation/file/merge-map.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/index.js +101 -0
- package/node_modules/@babel/core/lib/transformation/index.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/normalize-file.js +129 -0
- package/node_modules/@babel/core/lib/transformation/normalize-file.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
- package/node_modules/@babel/core/lib/transformation/normalize-opts.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/plugin-pass.js +48 -0
- package/node_modules/@babel/core/lib/transformation/plugin-pass.js.map +1 -0
- package/node_modules/@babel/core/lib/transformation/util/clone-deep.js +36 -0
- package/node_modules/@babel/core/lib/transformation/util/clone-deep.js.map +1 -0
- package/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1033 -0
- package/node_modules/@babel/core/lib/vendor/import-meta-resolve.js.map +1 -0
- package/node_modules/@babel/core/package.json +82 -0
- package/node_modules/@babel/generator/LICENSE +22 -0
- package/node_modules/@babel/generator/README.md +19 -0
- package/node_modules/@babel/generator/lib/buffer.js +323 -0
- package/node_modules/@babel/generator/lib/buffer.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/base.js +92 -0
- package/node_modules/@babel/generator/lib/generators/base.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/classes.js +177 -0
- package/node_modules/@babel/generator/lib/generators/classes.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/expressions.js +309 -0
- package/node_modules/@babel/generator/lib/generators/expressions.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/flow.js +668 -0
- package/node_modules/@babel/generator/lib/generators/flow.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/index.js +128 -0
- package/node_modules/@babel/generator/lib/generators/index.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/jsx.js +123 -0
- package/node_modules/@babel/generator/lib/generators/jsx.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/methods.js +173 -0
- package/node_modules/@babel/generator/lib/generators/methods.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/modules.js +274 -0
- package/node_modules/@babel/generator/lib/generators/modules.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/statements.js +275 -0
- package/node_modules/@babel/generator/lib/generators/statements.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/template-literals.js +30 -0
- package/node_modules/@babel/generator/lib/generators/template-literals.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/types.js +221 -0
- package/node_modules/@babel/generator/lib/generators/types.js.map +1 -0
- package/node_modules/@babel/generator/lib/generators/typescript.js +687 -0
- package/node_modules/@babel/generator/lib/generators/typescript.js.map +1 -0
- package/node_modules/@babel/generator/lib/index.js +89 -0
- package/node_modules/@babel/generator/lib/index.js.map +1 -0
- package/node_modules/@babel/generator/lib/node/index.js +76 -0
- package/node_modules/@babel/generator/lib/node/index.js.map +1 -0
- package/node_modules/@babel/generator/lib/node/parentheses.js +225 -0
- package/node_modules/@babel/generator/lib/node/parentheses.js.map +1 -0
- package/node_modules/@babel/generator/lib/node/whitespace.js +145 -0
- package/node_modules/@babel/generator/lib/node/whitespace.js.map +1 -0
- package/node_modules/@babel/generator/lib/printer.js +684 -0
- package/node_modules/@babel/generator/lib/printer.js.map +1 -0
- package/node_modules/@babel/generator/lib/source-map.js +85 -0
- package/node_modules/@babel/generator/lib/source-map.js.map +1 -0
- package/node_modules/@babel/generator/package.json +38 -0
- package/node_modules/@babel/helper-annotate-as-pure/LICENSE +22 -0
- package/node_modules/@babel/helper-annotate-as-pure/README.md +19 -0
- package/node_modules/@babel/helper-annotate-as-pure/lib/index.js +23 -0
- package/node_modules/@babel/helper-annotate-as-pure/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-annotate-as-pure/package.json +24 -0
- package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/LICENSE +22 -0
- package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/README.md +19 -0
- package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/explode-assignable-expression.js +75 -0
- package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/explode-assignable-expression.js.map +1 -0
- package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/index.js +42 -0
- package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/package.json +27 -0
- package/node_modules/@babel/helper-compilation-targets/LICENSE +22 -0
- package/node_modules/@babel/helper-compilation-targets/README.md +19 -0
- package/node_modules/@babel/helper-compilation-targets/lib/debug.js +28 -0
- package/node_modules/@babel/helper-compilation-targets/lib/debug.js.map +1 -0
- package/node_modules/@babel/helper-compilation-targets/lib/filter-items.js +67 -0
- package/node_modules/@babel/helper-compilation-targets/lib/filter-items.js.map +1 -0
- package/node_modules/@babel/helper-compilation-targets/lib/index.js +224 -0
- package/node_modules/@babel/helper-compilation-targets/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-compilation-targets/lib/options.js +24 -0
- package/node_modules/@babel/helper-compilation-targets/lib/options.js.map +1 -0
- package/node_modules/@babel/helper-compilation-targets/lib/pretty.js +40 -0
- package/node_modules/@babel/helper-compilation-targets/lib/pretty.js.map +1 -0
- package/node_modules/@babel/helper-compilation-targets/lib/targets.js +28 -0
- package/node_modules/@babel/helper-compilation-targets/lib/targets.js.map +1 -0
- package/node_modules/@babel/helper-compilation-targets/lib/utils.js +58 -0
- package/node_modules/@babel/helper-compilation-targets/lib/utils.js.map +1 -0
- package/node_modules/@babel/helper-compilation-targets/package.json +40 -0
- package/node_modules/@babel/helper-create-class-features-plugin/LICENSE +22 -0
- package/node_modules/@babel/helper-create-class-features-plugin/README.md +19 -0
- package/node_modules/@babel/helper-create-class-features-plugin/lib/decorators-2018-09.js +137 -0
- package/node_modules/@babel/helper-create-class-features-plugin/lib/decorators-2018-09.js.map +1 -0
- package/node_modules/@babel/helper-create-class-features-plugin/lib/decorators.js +950 -0
- package/node_modules/@babel/helper-create-class-features-plugin/lib/decorators.js.map +1 -0
- package/node_modules/@babel/helper-create-class-features-plugin/lib/features.js +132 -0
- package/node_modules/@babel/helper-create-class-features-plugin/lib/features.js.map +1 -0
- package/node_modules/@babel/helper-create-class-features-plugin/lib/fields.js +845 -0
- package/node_modules/@babel/helper-create-class-features-plugin/lib/fields.js.map +1 -0
- package/node_modules/@babel/helper-create-class-features-plugin/lib/index.js +242 -0
- package/node_modules/@babel/helper-create-class-features-plugin/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-create-class-features-plugin/lib/misc.js +124 -0
- package/node_modules/@babel/helper-create-class-features-plugin/lib/misc.js.map +1 -0
- package/node_modules/@babel/helper-create-class-features-plugin/lib/typescript.js +13 -0
- package/node_modules/@babel/helper-create-class-features-plugin/lib/typescript.js.map +1 -0
- package/node_modules/@babel/helper-create-class-features-plugin/package.json +45 -0
- package/node_modules/@babel/helper-create-regexp-features-plugin/LICENSE +22 -0
- package/node_modules/@babel/helper-create-regexp-features-plugin/README.md +19 -0
- package/node_modules/@babel/helper-create-regexp-features-plugin/lib/features.js +33 -0
- package/node_modules/@babel/helper-create-regexp-features-plugin/lib/features.js.map +1 -0
- package/node_modules/@babel/helper-create-regexp-features-plugin/lib/index.js +116 -0
- package/node_modules/@babel/helper-create-regexp-features-plugin/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js +71 -0
- package/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js.map +1 -0
- package/node_modules/@babel/helper-create-regexp-features-plugin/package.json +36 -0
- package/node_modules/@babel/helper-define-polyfill-provider/LICENSE +22 -0
- package/node_modules/@babel/helper-define-polyfill-provider/README.md +15 -0
- package/node_modules/@babel/helper-define-polyfill-provider/esm/index.browser.mjs +761 -0
- package/node_modules/@babel/helper-define-polyfill-provider/esm/index.browser.mjs.map +1 -0
- package/node_modules/@babel/helper-define-polyfill-provider/esm/index.node.mjs +805 -0
- package/node_modules/@babel/helper-define-polyfill-provider/esm/index.node.mjs.map +1 -0
- package/node_modules/@babel/helper-define-polyfill-provider/lib/browser/dependencies.js +22 -0
- package/node_modules/@babel/helper-define-polyfill-provider/lib/debug-utils.js +15 -0
- package/node_modules/@babel/helper-define-polyfill-provider/lib/define-provider.js +9 -0
- package/node_modules/@babel/helper-define-polyfill-provider/lib/imports-injector.js +107 -0
- package/node_modules/@babel/helper-define-polyfill-provider/lib/index.js +278 -0
- package/node_modules/@babel/helper-define-polyfill-provider/lib/meta-resolver.js +52 -0
- package/node_modules/@babel/helper-define-polyfill-provider/lib/node/dependencies.js +67 -0
- package/node_modules/@babel/helper-define-polyfill-provider/lib/normalize-options.js +70 -0
- package/node_modules/@babel/helper-define-polyfill-provider/lib/types.js +3 -0
- package/node_modules/@babel/helper-define-polyfill-provider/lib/utils.js +165 -0
- package/node_modules/@babel/helper-define-polyfill-provider/lib/visitors/entry.js +26 -0
- package/node_modules/@babel/helper-define-polyfill-provider/lib/visitors/index.js +9 -0
- package/node_modules/@babel/helper-define-polyfill-provider/lib/visitors/usage.js +91 -0
- package/node_modules/@babel/helper-define-polyfill-provider/package.json +59 -0
- package/node_modules/@babel/helper-environment-visitor/LICENSE +22 -0
- package/node_modules/@babel/helper-environment-visitor/README.md +19 -0
- package/node_modules/@babel/helper-environment-visitor/lib/index.js +52 -0
- package/node_modules/@babel/helper-environment-visitor/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-environment-visitor/package.json +29 -0
- package/node_modules/@babel/helper-function-name/LICENSE +22 -0
- package/node_modules/@babel/helper-function-name/README.md +19 -0
- package/node_modules/@babel/helper-function-name/lib/index.js +170 -0
- package/node_modules/@babel/helper-function-name/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-function-name/package.json +25 -0
- package/node_modules/@babel/helper-hoist-variables/LICENSE +22 -0
- package/node_modules/@babel/helper-hoist-variables/README.md +19 -0
- package/node_modules/@babel/helper-hoist-variables/lib/index.js +50 -0
- package/node_modules/@babel/helper-hoist-variables/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-hoist-variables/package.json +28 -0
- package/node_modules/@babel/helper-member-expression-to-functions/LICENSE +22 -0
- package/node_modules/@babel/helper-member-expression-to-functions/README.md +19 -0
- package/node_modules/@babel/helper-member-expression-to-functions/lib/index.js +397 -0
- package/node_modules/@babel/helper-member-expression-to-functions/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-member-expression-to-functions/package.json +27 -0
- package/node_modules/@babel/helper-module-imports/LICENSE +22 -0
- package/node_modules/@babel/helper-module-imports/README.md +19 -0
- package/node_modules/@babel/helper-module-imports/lib/import-builder.js +122 -0
- package/node_modules/@babel/helper-module-imports/lib/import-builder.js.map +1 -0
- package/node_modules/@babel/helper-module-imports/lib/import-injector.js +240 -0
- package/node_modules/@babel/helper-module-imports/lib/import-injector.js.map +1 -0
- package/node_modules/@babel/helper-module-imports/lib/index.js +37 -0
- package/node_modules/@babel/helper-module-imports/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-module-imports/lib/is-module.js +11 -0
- package/node_modules/@babel/helper-module-imports/lib/is-module.js.map +1 -0
- package/node_modules/@babel/helper-module-imports/package.json +28 -0
- package/node_modules/@babel/helper-module-transforms/LICENSE +22 -0
- package/node_modules/@babel/helper-module-transforms/README.md +19 -0
- package/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js +48 -0
- package/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js.map +1 -0
- package/node_modules/@babel/helper-module-transforms/lib/get-module-name.js +48 -0
- package/node_modules/@babel/helper-module-transforms/lib/get-module-name.js.map +1 -0
- package/node_modules/@babel/helper-module-transforms/lib/index.js +380 -0
- package/node_modules/@babel/helper-module-transforms/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js +31 -0
- package/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js.map +1 -0
- package/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js +358 -0
- package/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js.map +1 -0
- package/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +376 -0
- package/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js.map +1 -0
- package/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js +24 -0
- package/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js.map +1 -0
- package/node_modules/@babel/helper-module-transforms/package.json +35 -0
- package/node_modules/@babel/helper-optimise-call-expression/LICENSE +22 -0
- package/node_modules/@babel/helper-optimise-call-expression/README.md +19 -0
- package/node_modules/@babel/helper-optimise-call-expression/lib/index.js +33 -0
- package/node_modules/@babel/helper-optimise-call-expression/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-optimise-call-expression/package.json +28 -0
- package/node_modules/@babel/helper-plugin-utils/LICENSE +22 -0
- package/node_modules/@babel/helper-plugin-utils/README.md +19 -0
- package/node_modules/@babel/helper-plugin-utils/lib/index.js +81 -0
- package/node_modules/@babel/helper-plugin-utils/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-plugin-utils/package.json +21 -0
- package/node_modules/@babel/helper-remap-async-to-generator/LICENSE +22 -0
- package/node_modules/@babel/helper-remap-async-to-generator/README.md +19 -0
- package/node_modules/@babel/helper-remap-async-to-generator/lib/index.js +64 -0
- package/node_modules/@babel/helper-remap-async-to-generator/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-remap-async-to-generator/package.json +33 -0
- package/node_modules/@babel/helper-replace-supers/LICENSE +22 -0
- package/node_modules/@babel/helper-replace-supers/README.md +19 -0
- package/node_modules/@babel/helper-replace-supers/lib/index.js +227 -0
- package/node_modules/@babel/helper-replace-supers/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-replace-supers/package.json +32 -0
- package/node_modules/@babel/helper-simple-access/LICENSE +22 -0
- package/node_modules/@babel/helper-simple-access/README.md +19 -0
- package/node_modules/@babel/helper-simple-access/lib/index.js +91 -0
- package/node_modules/@babel/helper-simple-access/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-simple-access/package.json +28 -0
- package/node_modules/@babel/helper-skip-transparent-expression-wrappers/LICENSE +22 -0
- package/node_modules/@babel/helper-skip-transparent-expression-wrappers/README.md +19 -0
- package/node_modules/@babel/helper-skip-transparent-expression-wrappers/lib/index.js +34 -0
- package/node_modules/@babel/helper-skip-transparent-expression-wrappers/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-skip-transparent-expression-wrappers/package.json +30 -0
- package/node_modules/@babel/helper-split-export-declaration/LICENSE +22 -0
- package/node_modules/@babel/helper-split-export-declaration/README.md +19 -0
- package/node_modules/@babel/helper-split-export-declaration/lib/index.js +59 -0
- package/node_modules/@babel/helper-split-export-declaration/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-split-export-declaration/package.json +24 -0
- package/node_modules/@babel/helper-string-parser/LICENSE +22 -0
- package/node_modules/@babel/helper-string-parser/README.md +19 -0
- package/node_modules/@babel/helper-string-parser/lib/index.js +295 -0
- package/node_modules/@babel/helper-string-parser/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-string-parser/package.json +28 -0
- package/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
- package/node_modules/@babel/helper-validator-identifier/README.md +19 -0
- package/node_modules/@babel/helper-validator-identifier/lib/identifier.js +70 -0
- package/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +1 -0
- package/node_modules/@babel/helper-validator-identifier/lib/index.js +57 -0
- package/node_modules/@babel/helper-validator-identifier/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-validator-identifier/lib/keyword.js +35 -0
- package/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +1 -0
- package/node_modules/@babel/helper-validator-identifier/package.json +28 -0
- package/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js +73 -0
- package/node_modules/@babel/helper-validator-option/LICENSE +22 -0
- package/node_modules/@babel/helper-validator-option/README.md +19 -0
- package/node_modules/@babel/helper-validator-option/lib/find-suggestion.js +39 -0
- package/node_modules/@babel/helper-validator-option/lib/find-suggestion.js.map +1 -0
- package/node_modules/@babel/helper-validator-option/lib/index.js +21 -0
- package/node_modules/@babel/helper-validator-option/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-validator-option/lib/validator.js +48 -0
- package/node_modules/@babel/helper-validator-option/lib/validator.js.map +1 -0
- package/node_modules/@babel/helper-validator-option/package.json +24 -0
- package/node_modules/@babel/helper-wrap-function/LICENSE +22 -0
- package/node_modules/@babel/helper-wrap-function/README.md +19 -0
- package/node_modules/@babel/helper-wrap-function/lib/index.js +123 -0
- package/node_modules/@babel/helper-wrap-function/lib/index.js.map +1 -0
- package/node_modules/@babel/helper-wrap-function/package.json +29 -0
- package/node_modules/@babel/helpers/LICENSE +22 -0
- package/node_modules/@babel/helpers/README.md +19 -0
- package/node_modules/@babel/helpers/lib/helpers/AsyncGenerator.js +92 -0
- package/node_modules/@babel/helpers/lib/helpers/AsyncGenerator.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/OverloadYield.js +12 -0
- package/node_modules/@babel/helpers/lib/helpers/OverloadYield.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs.js +459 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js +363 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js +376 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js +421 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js +235 -0
- package/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js +52 -0
- package/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/asyncIterator.js +70 -0
- package/node_modules/@babel/helpers/lib/helpers/asyncIterator.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js +12 -0
- package/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/callSuper.js +15 -0
- package/node_modules/@babel/helpers/lib/helpers/callSuper.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/checkInRHS.js +14 -0
- package/node_modules/@babel/helpers/lib/helpers/checkInRHS.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/construct.js +20 -0
- package/node_modules/@babel/helpers/lib/helpers/construct.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/defineAccessor.js +16 -0
- package/node_modules/@babel/helpers/lib/helpers/defineAccessor.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/dispose.js +47 -0
- package/node_modules/@babel/helpers/lib/helpers/dispose.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js +35 -0
- package/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js +49 -0
- package/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js +16 -0
- package/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js +41 -0
- package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimitLoose.js +18 -0
- package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimitLoose.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/jsx.js +47 -0
- package/node_modules/@babel/helpers/lib/helpers/jsx.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/objectSpread2.js +39 -0
- package/node_modules/@babel/helpers/lib/helpers/objectSpread2.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js +499 -0
- package/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/setFunctionName.js +21 -0
- package/node_modules/@babel/helpers/lib/helpers/setFunctionName.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/toPrimitive.js +18 -0
- package/node_modules/@babel/helpers/lib/helpers/toPrimitive.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js +13 -0
- package/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/typeof.js +22 -0
- package/node_modules/@babel/helpers/lib/helpers/typeof.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/using.js +29 -0
- package/node_modules/@babel/helpers/lib/helpers/using.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/usingCtx.js +68 -0
- package/node_modules/@babel/helpers/lib/helpers/usingCtx.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js +66 -0
- package/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers-generated.js +49 -0
- package/node_modules/@babel/helpers/lib/helpers-generated.js.map +1 -0
- package/node_modules/@babel/helpers/lib/helpers.js +1677 -0
- package/node_modules/@babel/helpers/lib/helpers.js.map +1 -0
- package/node_modules/@babel/helpers/lib/index.js +241 -0
- package/node_modules/@babel/helpers/lib/index.js.map +1 -0
- package/node_modules/@babel/helpers/package.json +32 -0
- package/node_modules/@babel/helpers/scripts/generate-helpers.js +119 -0
- package/node_modules/@babel/helpers/scripts/generate-regenerator-runtime.js +63 -0
- package/node_modules/@babel/helpers/scripts/package.json +1 -0
- package/node_modules/@babel/highlight/LICENSE +22 -0
- package/node_modules/@babel/highlight/README.md +19 -0
- package/node_modules/@babel/highlight/lib/index.js +105 -0
- package/node_modules/@babel/highlight/lib/index.js.map +1 -0
- package/node_modules/@babel/highlight/package.json +29 -0
- package/node_modules/@babel/parser/CHANGELOG.md +1073 -0
- package/node_modules/@babel/parser/LICENSE +19 -0
- package/node_modules/@babel/parser/README.md +19 -0
- package/node_modules/@babel/parser/bin/babel-parser.js +15 -0
- package/node_modules/@babel/parser/index.cjs +5 -0
- package/node_modules/@babel/parser/lib/index.js +13980 -0
- package/node_modules/@babel/parser/lib/index.js.map +1 -0
- package/node_modules/@babel/parser/package.json +46 -0
- package/node_modules/@babel/parser/typings/babel-parser.d.ts +251 -0
- package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/LICENSE +22 -0
- package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/README.md +19 -0
- package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/lib/index.js +47 -0
- package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/package.json +41 -0
- package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/LICENSE +22 -0
- package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/README.md +19 -0
- package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/lib/index.js +66 -0
- package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/package.json +42 -0
- package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/LICENSE +22 -0
- package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/README.md +19 -0
- package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/lib/index.js +172 -0
- package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/package.json +41 -0
- package/node_modules/@babel/plugin-proposal-private-property-in-object/LICENSE +22 -0
- package/node_modules/@babel/plugin-proposal-private-property-in-object/README.md +23 -0
- package/node_modules/@babel/plugin-proposal-private-property-in-object/lib/index.js +36 -0
- package/node_modules/@babel/plugin-proposal-private-property-in-object/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-proposal-private-property-in-object/package.json +27 -0
- package/node_modules/@babel/plugin-syntax-async-generators/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-async-generators/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-async-generators/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-async-generators/package.json +23 -0
- package/node_modules/@babel/plugin-syntax-class-properties/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-class-properties/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-class-properties/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-class-properties/package.json +28 -0
- package/node_modules/@babel/plugin-syntax-class-static-block/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-class-static-block/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-class-static-block/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-class-static-block/package.json +32 -0
- package/node_modules/@babel/plugin-syntax-dynamic-import/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-dynamic-import/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-dynamic-import/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-dynamic-import/package.json +23 -0
- package/node_modules/@babel/plugin-syntax-export-namespace-from/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-export-namespace-from/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-export-namespace-from/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-export-namespace-from/package.json +24 -0
- package/node_modules/@babel/plugin-syntax-import-assertions/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-import-assertions/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-import-assertions/lib/index.js +18 -0
- package/node_modules/@babel/plugin-syntax-import-assertions/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-syntax-import-assertions/package.json +32 -0
- package/node_modules/@babel/plugin-syntax-import-attributes/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-import-attributes/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-import-attributes/lib/index.js +30 -0
- package/node_modules/@babel/plugin-syntax-import-attributes/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-syntax-import-attributes/package.json +36 -0
- package/node_modules/@babel/plugin-syntax-import-meta/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-import-meta/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-import-meta/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-import-meta/package.json +28 -0
- package/node_modules/@babel/plugin-syntax-json-strings/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-json-strings/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-json-strings/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-json-strings/package.json +23 -0
- package/node_modules/@babel/plugin-syntax-jsx/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-jsx/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-jsx/lib/index.js +23 -0
- package/node_modules/@babel/plugin-syntax-jsx/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-syntax-jsx/package.json +33 -0
- package/node_modules/@babel/plugin-syntax-logical-assignment-operators/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-logical-assignment-operators/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-logical-assignment-operators/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-logical-assignment-operators/package.json +28 -0
- package/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/package.json +23 -0
- package/node_modules/@babel/plugin-syntax-numeric-separator/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-numeric-separator/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-numeric-separator/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-numeric-separator/package.json +28 -0
- package/node_modules/@babel/plugin-syntax-object-rest-spread/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-object-rest-spread/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-object-rest-spread/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-object-rest-spread/package.json +23 -0
- package/node_modules/@babel/plugin-syntax-optional-catch-binding/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-optional-catch-binding/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-optional-catch-binding/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-optional-catch-binding/package.json +23 -0
- package/node_modules/@babel/plugin-syntax-optional-chaining/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-optional-chaining/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-optional-chaining/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-optional-chaining/package.json +23 -0
- package/node_modules/@babel/plugin-syntax-private-property-in-object/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-private-property-in-object/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-private-property-in-object/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-private-property-in-object/package.json +32 -0
- package/node_modules/@babel/plugin-syntax-top-level-await/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-top-level-await/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-top-level-await/lib/index.js +22 -0
- package/node_modules/@babel/plugin-syntax-top-level-await/package.json +32 -0
- package/node_modules/@babel/plugin-syntax-typescript/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-typescript/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-typescript/lib/index.js +55 -0
- package/node_modules/@babel/plugin-syntax-typescript/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-syntax-typescript/package.json +35 -0
- package/node_modules/@babel/plugin-syntax-unicode-sets-regex/LICENSE +22 -0
- package/node_modules/@babel/plugin-syntax-unicode-sets-regex/README.md +19 -0
- package/node_modules/@babel/plugin-syntax-unicode-sets-regex/lib/index.js +25 -0
- package/node_modules/@babel/plugin-syntax-unicode-sets-regex/package.json +49 -0
- package/node_modules/@babel/plugin-transform-arrow-functions/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-arrow-functions/README.md +19 -0
- package/node_modules/@babel/plugin-transform-arrow-functions/lib/index.js +29 -0
- package/node_modules/@babel/plugin-transform-arrow-functions/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-arrow-functions/package.json +36 -0
- package/node_modules/@babel/plugin-transform-async-generator-functions/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-async-generator-functions/README.md +19 -0
- package/node_modules/@babel/plugin-transform-async-generator-functions/lib/for-await.js +77 -0
- package/node_modules/@babel/plugin-transform-async-generator-functions/lib/for-await.js.map +1 -0
- package/node_modules/@babel/plugin-transform-async-generator-functions/lib/index.js +84 -0
- package/node_modules/@babel/plugin-transform-async-generator-functions/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-async-generator-functions/package.json +39 -0
- package/node_modules/@babel/plugin-transform-async-to-generator/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-async-to-generator/README.md +19 -0
- package/node_modules/@babel/plugin-transform-async-to-generator/lib/index.js +52 -0
- package/node_modules/@babel/plugin-transform-async-to-generator/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-async-to-generator/package.json +36 -0
- package/node_modules/@babel/plugin-transform-block-scoped-functions/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-block-scoped-functions/README.md +19 -0
- package/node_modules/@babel/plugin-transform-block-scoped-functions/lib/index.js +43 -0
- package/node_modules/@babel/plugin-transform-block-scoped-functions/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-block-scoped-functions/package.json +34 -0
- package/node_modules/@babel/plugin-transform-block-scoping/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-block-scoping/README.md +19 -0
- package/node_modules/@babel/plugin-transform-block-scoping/lib/annex-B_3_3.js +100 -0
- package/node_modules/@babel/plugin-transform-block-scoping/lib/annex-B_3_3.js.map +1 -0
- package/node_modules/@babel/plugin-transform-block-scoping/lib/index.js +184 -0
- package/node_modules/@babel/plugin-transform-block-scoping/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-block-scoping/lib/loop.js +294 -0
- package/node_modules/@babel/plugin-transform-block-scoping/lib/loop.js.map +1 -0
- package/node_modules/@babel/plugin-transform-block-scoping/lib/validation.js +133 -0
- package/node_modules/@babel/plugin-transform-block-scoping/lib/validation.js.map +1 -0
- package/node_modules/@babel/plugin-transform-block-scoping/package.json +35 -0
- package/node_modules/@babel/plugin-transform-class-properties/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-class-properties/README.md +19 -0
- package/node_modules/@babel/plugin-transform-class-properties/lib/index.js +22 -0
- package/node_modules/@babel/plugin-transform-class-properties/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-class-properties/package.json +35 -0
- package/node_modules/@babel/plugin-transform-class-static-block/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-class-static-block/README.md +19 -0
- package/node_modules/@babel/plugin-transform-class-static-block/lib/index.js +62 -0
- package/node_modules/@babel/plugin-transform-class-static-block/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-class-static-block/package.json +42 -0
- package/node_modules/@babel/plugin-transform-classes/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-classes/README.md +19 -0
- package/node_modules/@babel/plugin-transform-classes/lib/index.js +72 -0
- package/node_modules/@babel/plugin-transform-classes/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-classes/lib/inline-callSuper-helpers.js +73 -0
- package/node_modules/@babel/plugin-transform-classes/lib/inline-callSuper-helpers.js.map +1 -0
- package/node_modules/@babel/plugin-transform-classes/lib/transformClass.js +511 -0
- package/node_modules/@babel/plugin-transform-classes/lib/transformClass.js.map +1 -0
- package/node_modules/@babel/plugin-transform-classes/package.json +42 -0
- package/node_modules/@babel/plugin-transform-computed-properties/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-computed-properties/README.md +19 -0
- package/node_modules/@babel/plugin-transform-computed-properties/lib/index.js +168 -0
- package/node_modules/@babel/plugin-transform-computed-properties/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-computed-properties/package.json +35 -0
- package/node_modules/@babel/plugin-transform-destructuring/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-destructuring/README.md +19 -0
- package/node_modules/@babel/plugin-transform-destructuring/lib/index.js +545 -0
- package/node_modules/@babel/plugin-transform-destructuring/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-destructuring/package.json +35 -0
- package/node_modules/@babel/plugin-transform-dotall-regex/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-dotall-regex/README.md +19 -0
- package/node_modules/@babel/plugin-transform-dotall-regex/lib/index.js +17 -0
- package/node_modules/@babel/plugin-transform-dotall-regex/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-dotall-regex/package.json +40 -0
- package/node_modules/@babel/plugin-transform-duplicate-keys/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-duplicate-keys/README.md +19 -0
- package/node_modules/@babel/plugin-transform-duplicate-keys/lib/index.js +60 -0
- package/node_modules/@babel/plugin-transform-duplicate-keys/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-duplicate-keys/package.json +34 -0
- package/node_modules/@babel/plugin-transform-dynamic-import/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-dynamic-import/README.md +19 -0
- package/node_modules/@babel/plugin-transform-dynamic-import/lib/index.js +40 -0
- package/node_modules/@babel/plugin-transform-dynamic-import/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-dynamic-import/package.json +34 -0
- package/node_modules/@babel/plugin-transform-exponentiation-operator/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-exponentiation-operator/README.md +19 -0
- package/node_modules/@babel/plugin-transform-exponentiation-operator/lib/index.js +23 -0
- package/node_modules/@babel/plugin-transform-exponentiation-operator/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-exponentiation-operator/package.json +35 -0
- package/node_modules/@babel/plugin-transform-export-namespace-from/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-export-namespace-from/README.md +19 -0
- package/node_modules/@babel/plugin-transform-export-namespace-from/lib/index.js +46 -0
- package/node_modules/@babel/plugin-transform-export-namespace-from/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-export-namespace-from/package.json +35 -0
- package/node_modules/@babel/plugin-transform-for-of/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-for-of/README.md +19 -0
- package/node_modules/@babel/plugin-transform-for-of/lib/index.js +194 -0
- package/node_modules/@babel/plugin-transform-for-of/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-for-of/lib/no-helper-implementation.js +153 -0
- package/node_modules/@babel/plugin-transform-for-of/lib/no-helper-implementation.js.map +1 -0
- package/node_modules/@babel/plugin-transform-for-of/package.json +35 -0
- package/node_modules/@babel/plugin-transform-function-name/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-function-name/README.md +19 -0
- package/node_modules/@babel/plugin-transform-function-name/lib/index.js +35 -0
- package/node_modules/@babel/plugin-transform-function-name/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-function-name/package.json +36 -0
- package/node_modules/@babel/plugin-transform-json-strings/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-json-strings/README.md +19 -0
- package/node_modules/@babel/plugin-transform-json-strings/lib/index.js +33 -0
- package/node_modules/@babel/plugin-transform-json-strings/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-json-strings/package.json +35 -0
- package/node_modules/@babel/plugin-transform-literals/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-literals/README.md +19 -0
- package/node_modules/@babel/plugin-transform-literals/lib/index.js +31 -0
- package/node_modules/@babel/plugin-transform-literals/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-literals/package.json +34 -0
- package/node_modules/@babel/plugin-transform-logical-assignment-operators/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-logical-assignment-operators/README.md +19 -0
- package/node_modules/@babel/plugin-transform-logical-assignment-operators/lib/index.js +55 -0
- package/node_modules/@babel/plugin-transform-logical-assignment-operators/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-logical-assignment-operators/package.json +36 -0
- package/node_modules/@babel/plugin-transform-member-expression-literals/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-member-expression-literals/README.md +19 -0
- package/node_modules/@babel/plugin-transform-member-expression-literals/lib/index.js +29 -0
- package/node_modules/@babel/plugin-transform-member-expression-literals/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-member-expression-literals/package.json +34 -0
- package/node_modules/@babel/plugin-transform-modules-amd/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-modules-amd/README.md +19 -0
- package/node_modules/@babel/plugin-transform-modules-amd/lib/index.js +144 -0
- package/node_modules/@babel/plugin-transform-modules-amd/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-modules-amd/package.json +36 -0
- package/node_modules/@babel/plugin-transform-modules-commonjs/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-modules-commonjs/README.md +19 -0
- package/node_modules/@babel/plugin-transform-modules-commonjs/lib/dynamic-import.js +16 -0
- package/node_modules/@babel/plugin-transform-modules-commonjs/lib/dynamic-import.js.map +1 -0
- package/node_modules/@babel/plugin-transform-modules-commonjs/lib/hooks.js +37 -0
- package/node_modules/@babel/plugin-transform-modules-commonjs/lib/hooks.js.map +1 -0
- package/node_modules/@babel/plugin-transform-modules-commonjs/lib/index.js +197 -0
- package/node_modules/@babel/plugin-transform-modules-commonjs/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-modules-commonjs/lib/lazy.js +44 -0
- package/node_modules/@babel/plugin-transform-modules-commonjs/lib/lazy.js.map +1 -0
- package/node_modules/@babel/plugin-transform-modules-commonjs/package.json +37 -0
- package/node_modules/@babel/plugin-transform-modules-systemjs/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-modules-systemjs/README.md +19 -0
- package/node_modules/@babel/plugin-transform-modules-systemjs/lib/index.js +403 -0
- package/node_modules/@babel/plugin-transform-modules-systemjs/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-modules-systemjs/package.json +39 -0
- package/node_modules/@babel/plugin-transform-modules-umd/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-modules-umd/README.md +19 -0
- package/node_modules/@babel/plugin-transform-modules-umd/lib/index.js +156 -0
- package/node_modules/@babel/plugin-transform-modules-umd/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-modules-umd/package.json +36 -0
- package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/README.md +19 -0
- package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/lib/index.js +26 -0
- package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/package.json +40 -0
- package/node_modules/@babel/plugin-transform-new-target/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-new-target/README.md +19 -0
- package/node_modules/@babel/plugin-transform-new-target/lib/index.js +71 -0
- package/node_modules/@babel/plugin-transform-new-target/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-new-target/package.json +36 -0
- package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/README.md +19 -0
- package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js +48 -0
- package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/package.json +35 -0
- package/node_modules/@babel/plugin-transform-numeric-separator/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-numeric-separator/README.md +19 -0
- package/node_modules/@babel/plugin-transform-numeric-separator/lib/index.js +31 -0
- package/node_modules/@babel/plugin-transform-numeric-separator/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-numeric-separator/package.json +37 -0
- package/node_modules/@babel/plugin-transform-object-rest-spread/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-object-rest-spread/README.md +19 -0
- package/node_modules/@babel/plugin-transform-object-rest-spread/lib/index.js +451 -0
- package/node_modules/@babel/plugin-transform-object-rest-spread/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-object-rest-spread/package.json +39 -0
- package/node_modules/@babel/plugin-transform-object-super/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-object-super/README.md +19 -0
- package/node_modules/@babel/plugin-transform-object-super/lib/index.js +67 -0
- package/node_modules/@babel/plugin-transform-object-super/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-object-super/package.json +35 -0
- package/node_modules/@babel/plugin-transform-optional-catch-binding/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-optional-catch-binding/README.md +19 -0
- package/node_modules/@babel/plugin-transform-optional-catch-binding/lib/index.js +25 -0
- package/node_modules/@babel/plugin-transform-optional-catch-binding/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-optional-catch-binding/package.json +35 -0
- package/node_modules/@babel/plugin-transform-optional-chaining/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-optional-chaining/README.md +19 -0
- package/node_modules/@babel/plugin-transform-optional-chaining/lib/index.js +240 -0
- package/node_modules/@babel/plugin-transform-optional-chaining/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-optional-chaining/package.json +38 -0
- package/node_modules/@babel/plugin-transform-parameters/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-parameters/README.md +19 -0
- package/node_modules/@babel/plugin-transform-parameters/lib/index.js +42 -0
- package/node_modules/@babel/plugin-transform-parameters/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-parameters/lib/params.js +143 -0
- package/node_modules/@babel/plugin-transform-parameters/lib/params.js.map +1 -0
- package/node_modules/@babel/plugin-transform-parameters/lib/rest.js +284 -0
- package/node_modules/@babel/plugin-transform-parameters/lib/rest.js.map +1 -0
- package/node_modules/@babel/plugin-transform-parameters/lib/shadow-utils.js +64 -0
- package/node_modules/@babel/plugin-transform-parameters/lib/shadow-utils.js.map +1 -0
- package/node_modules/@babel/plugin-transform-parameters/package.json +34 -0
- package/node_modules/@babel/plugin-transform-private-methods/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-private-methods/README.md +19 -0
- package/node_modules/@babel/plugin-transform-private-methods/lib/index.js +22 -0
- package/node_modules/@babel/plugin-transform-private-methods/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-private-methods/package.json +35 -0
- package/node_modules/@babel/plugin-transform-private-property-in-object/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-private-property-in-object/README.md +19 -0
- package/node_modules/@babel/plugin-transform-private-property-in-object/lib/index.js +126 -0
- package/node_modules/@babel/plugin-transform-private-property-in-object/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-private-property-in-object/package.json +37 -0
- package/node_modules/@babel/plugin-transform-property-literals/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-property-literals/README.md +19 -0
- package/node_modules/@babel/plugin-transform-property-literals/lib/index.js +28 -0
- package/node_modules/@babel/plugin-transform-property-literals/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-property-literals/package.json +34 -0
- package/node_modules/@babel/plugin-transform-regenerator/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-regenerator/README.md +19 -0
- package/node_modules/@babel/plugin-transform-regenerator/lib/index.js +43 -0
- package/node_modules/@babel/plugin-transform-regenerator/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-regenerator/package.json +32 -0
- package/node_modules/@babel/plugin-transform-reserved-words/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-reserved-words/README.md +19 -0
- package/node_modules/@babel/plugin-transform-reserved-words/lib/index.js +23 -0
- package/node_modules/@babel/plugin-transform-reserved-words/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-reserved-words/package.json +34 -0
- package/node_modules/@babel/plugin-transform-shorthand-properties/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-shorthand-properties/README.md +19 -0
- package/node_modules/@babel/plugin-transform-shorthand-properties/lib/index.js +50 -0
- package/node_modules/@babel/plugin-transform-shorthand-properties/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-shorthand-properties/package.json +34 -0
- package/node_modules/@babel/plugin-transform-spread/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-spread/README.md +19 -0
- package/node_modules/@babel/plugin-transform-spread/lib/index.js +144 -0
- package/node_modules/@babel/plugin-transform-spread/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-spread/package.json +35 -0
- package/node_modules/@babel/plugin-transform-sticky-regex/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-sticky-regex/README.md +19 -0
- package/node_modules/@babel/plugin-transform-sticky-regex/lib/index.js +25 -0
- package/node_modules/@babel/plugin-transform-sticky-regex/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-sticky-regex/package.json +34 -0
- package/node_modules/@babel/plugin-transform-template-literals/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-template-literals/README.md +19 -0
- package/node_modules/@babel/plugin-transform-template-literals/lib/index.js +108 -0
- package/node_modules/@babel/plugin-transform-template-literals/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-template-literals/package.json +34 -0
- package/node_modules/@babel/plugin-transform-typeof-symbol/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-typeof-symbol/README.md +19 -0
- package/node_modules/@babel/plugin-transform-typeof-symbol/lib/index.js +61 -0
- package/node_modules/@babel/plugin-transform-typeof-symbol/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-typeof-symbol/package.json +37 -0
- package/node_modules/@babel/plugin-transform-typescript/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-typescript/README.md +19 -0
- package/node_modules/@babel/plugin-transform-typescript/lib/const-enum.js +58 -0
- package/node_modules/@babel/plugin-transform-typescript/lib/const-enum.js.map +1 -0
- package/node_modules/@babel/plugin-transform-typescript/lib/enum.js +302 -0
- package/node_modules/@babel/plugin-transform-typescript/lib/enum.js.map +1 -0
- package/node_modules/@babel/plugin-transform-typescript/lib/global-types.js +22 -0
- package/node_modules/@babel/plugin-transform-typescript/lib/global-types.js.map +1 -0
- package/node_modules/@babel/plugin-transform-typescript/lib/index.js +484 -0
- package/node_modules/@babel/plugin-transform-typescript/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-typescript/lib/namespace.js +165 -0
- package/node_modules/@babel/plugin-transform-typescript/lib/namespace.js.map +1 -0
- package/node_modules/@babel/plugin-transform-typescript/package.json +40 -0
- package/node_modules/@babel/plugin-transform-unicode-escapes/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-unicode-escapes/README.md +19 -0
- package/node_modules/@babel/plugin-transform-unicode-escapes/lib/index.js +118 -0
- package/node_modules/@babel/plugin-transform-unicode-escapes/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-unicode-escapes/package.json +34 -0
- package/node_modules/@babel/plugin-transform-unicode-property-regex/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-unicode-property-regex/README.md +19 -0
- package/node_modules/@babel/plugin-transform-unicode-property-regex/lib/index.js +26 -0
- package/node_modules/@babel/plugin-transform-unicode-property-regex/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-unicode-property-regex/package.json +41 -0
- package/node_modules/@babel/plugin-transform-unicode-regex/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-unicode-regex/README.md +19 -0
- package/node_modules/@babel/plugin-transform-unicode-regex/lib/index.js +17 -0
- package/node_modules/@babel/plugin-transform-unicode-regex/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-unicode-regex/package.json +35 -0
- package/node_modules/@babel/plugin-transform-unicode-sets-regex/LICENSE +22 -0
- package/node_modules/@babel/plugin-transform-unicode-sets-regex/README.md +19 -0
- package/node_modules/@babel/plugin-transform-unicode-sets-regex/lib/index.js +20 -0
- package/node_modules/@babel/plugin-transform-unicode-sets-regex/lib/index.js.map +1 -0
- package/node_modules/@babel/plugin-transform-unicode-sets-regex/package.json +49 -0
- package/node_modules/@babel/preset-env/LICENSE +22 -0
- package/node_modules/@babel/preset-env/README.md +19 -0
- package/node_modules/@babel/preset-env/data/built-in-modules.js +3 -0
- package/node_modules/@babel/preset-env/data/built-in-modules.json.js +3 -0
- package/node_modules/@babel/preset-env/data/built-ins.js +4 -0
- package/node_modules/@babel/preset-env/data/built-ins.json.js +4 -0
- package/node_modules/@babel/preset-env/data/core-js-compat.js +1 -0
- package/node_modules/@babel/preset-env/data/corejs2-built-ins.js +3 -0
- package/node_modules/@babel/preset-env/data/corejs2-built-ins.json.js +3 -0
- package/node_modules/@babel/preset-env/data/package.json +1 -0
- package/node_modules/@babel/preset-env/data/plugins.js +3 -0
- package/node_modules/@babel/preset-env/data/plugins.json.js +3 -0
- package/node_modules/@babel/preset-env/data/shipped-proposals.js +2 -0
- package/node_modules/@babel/preset-env/data/unreleased-labels.js +3 -0
- package/node_modules/@babel/preset-env/lib/available-plugins.js +159 -0
- package/node_modules/@babel/preset-env/lib/available-plugins.js.map +1 -0
- package/node_modules/@babel/preset-env/lib/debug.js +37 -0
- package/node_modules/@babel/preset-env/lib/debug.js.map +1 -0
- package/node_modules/@babel/preset-env/lib/filter-items.js +31 -0
- package/node_modules/@babel/preset-env/lib/filter-items.js.map +1 -0
- package/node_modules/@babel/preset-env/lib/index.js +344 -0
- package/node_modules/@babel/preset-env/lib/index.js.map +1 -0
- package/node_modules/@babel/preset-env/lib/module-transformations.js +15 -0
- package/node_modules/@babel/preset-env/lib/module-transformations.js.map +1 -0
- package/node_modules/@babel/preset-env/lib/normalize-options.js +153 -0
- package/node_modules/@babel/preset-env/lib/normalize-options.js.map +1 -0
- package/node_modules/@babel/preset-env/lib/options.js +43 -0
- package/node_modules/@babel/preset-env/lib/options.js.map +1 -0
- package/node_modules/@babel/preset-env/lib/plugins-compat-data.js +26 -0
- package/node_modules/@babel/preset-env/lib/plugins-compat-data.js.map +1 -0
- package/node_modules/@babel/preset-env/lib/polyfills/babel-7-plugins.cjs +18 -0
- package/node_modules/@babel/preset-env/lib/polyfills/babel-7-plugins.cjs.map +1 -0
- package/node_modules/@babel/preset-env/lib/polyfills/babel-polyfill.cjs +69 -0
- package/node_modules/@babel/preset-env/lib/polyfills/babel-polyfill.cjs.map +1 -0
- package/node_modules/@babel/preset-env/lib/polyfills/regenerator.cjs +44 -0
- package/node_modules/@babel/preset-env/lib/polyfills/regenerator.cjs.map +1 -0
- package/node_modules/@babel/preset-env/lib/polyfills/utils.cjs +22 -0
- package/node_modules/@babel/preset-env/lib/polyfills/utils.cjs.map +1 -0
- package/node_modules/@babel/preset-env/lib/shipped-proposals.js +29 -0
- package/node_modules/@babel/preset-env/lib/shipped-proposals.js.map +1 -0
- package/node_modules/@babel/preset-env/lib/targets-parser.js +20 -0
- package/node_modules/@babel/preset-env/lib/targets-parser.js.map +1 -0
- package/node_modules/@babel/preset-env/package.json +113 -0
- package/node_modules/@babel/preset-modules/LICENSE +21 -0
- package/node_modules/@babel/preset-modules/README.md +171 -0
- package/node_modules/@babel/preset-modules/lib/index.js +27 -0
- package/node_modules/@babel/preset-modules/lib/plugins/transform-async-arrows-in-class/index.js +45 -0
- package/node_modules/@babel/preset-modules/lib/plugins/transform-edge-default-parameters/index.js +36 -0
- package/node_modules/@babel/preset-modules/lib/plugins/transform-edge-function-name/index.js +42 -0
- package/node_modules/@babel/preset-modules/lib/plugins/transform-jsx-spread/index.js +115 -0
- package/node_modules/@babel/preset-modules/lib/plugins/transform-safari-block-shadowing/index.js +47 -0
- package/node_modules/@babel/preset-modules/lib/plugins/transform-safari-for-shadowing/index.js +42 -0
- package/node_modules/@babel/preset-modules/lib/plugins/transform-tagged-template-caching/index.js +75 -0
- package/node_modules/@babel/preset-modules/package.json +104 -0
- package/node_modules/@babel/preset-typescript/LICENSE +22 -0
- package/node_modules/@babel/preset-typescript/README.md +19 -0
- package/node_modules/@babel/preset-typescript/lib/index.js +146 -0
- package/node_modules/@babel/preset-typescript/lib/index.js.map +1 -0
- package/node_modules/@babel/preset-typescript/package.json +40 -0
- package/node_modules/@babel/regjsgen/LICENSE-MIT.txt +22 -0
- package/node_modules/@babel/regjsgen/README.md +44 -0
- package/node_modules/@babel/regjsgen/package.json +43 -0
- package/node_modules/@babel/regjsgen/regjsgen.js +425 -0
- package/node_modules/@babel/runtime/LICENSE +22 -0
- package/node_modules/@babel/runtime/README.md +19 -0
- package/node_modules/@babel/runtime/helpers/AsyncGenerator.js +64 -0
- package/node_modules/@babel/runtime/helpers/AwaitValue.js +4 -0
- package/node_modules/@babel/runtime/helpers/OverloadYield.js +4 -0
- package/node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js +24 -0
- package/node_modules/@babel/runtime/helpers/applyDecs.js +236 -0
- package/node_modules/@babel/runtime/helpers/applyDecs2203.js +184 -0
- package/node_modules/@babel/runtime/helpers/applyDecs2203R.js +191 -0
- package/node_modules/@babel/runtime/helpers/applyDecs2301.js +222 -0
- package/node_modules/@babel/runtime/helpers/applyDecs2305.js +133 -0
- package/node_modules/@babel/runtime/helpers/arrayLikeToArray.js +6 -0
- package/node_modules/@babel/runtime/helpers/arrayWithHoles.js +4 -0
- package/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js +5 -0
- package/node_modules/@babel/runtime/helpers/assertThisInitialized.js +7 -0
- package/node_modules/@babel/runtime/helpers/asyncGeneratorDelegate.js +24 -0
- package/node_modules/@babel/runtime/helpers/asyncIterator.js +45 -0
- package/node_modules/@babel/runtime/helpers/asyncToGenerator.js +31 -0
- package/node_modules/@babel/runtime/helpers/awaitAsyncGenerator.js +5 -0
- package/node_modules/@babel/runtime/helpers/callSuper.js +7 -0
- package/node_modules/@babel/runtime/helpers/checkInRHS.js +6 -0
- package/node_modules/@babel/runtime/helpers/checkPrivateRedeclaration.js +6 -0
- package/node_modules/@babel/runtime/helpers/classApplyDescriptorDestructureSet.js +18 -0
- package/node_modules/@babel/runtime/helpers/classApplyDescriptorGet.js +7 -0
- package/node_modules/@babel/runtime/helpers/classApplyDescriptorSet.js +11 -0
- package/node_modules/@babel/runtime/helpers/classCallCheck.js +6 -0
- package/node_modules/@babel/runtime/helpers/classCheckPrivateStaticAccess.js +6 -0
- package/node_modules/@babel/runtime/helpers/classCheckPrivateStaticFieldDescriptor.js +6 -0
- package/node_modules/@babel/runtime/helpers/classExtractFieldDescriptor.js +7 -0
- package/node_modules/@babel/runtime/helpers/classNameTDZError.js +4 -0
- package/node_modules/@babel/runtime/helpers/classPrivateFieldDestructureSet.js +7 -0
- package/node_modules/@babel/runtime/helpers/classPrivateFieldGet.js +7 -0
- package/node_modules/@babel/runtime/helpers/classPrivateFieldInitSpec.js +6 -0
- package/node_modules/@babel/runtime/helpers/classPrivateFieldLooseBase.js +7 -0
- package/node_modules/@babel/runtime/helpers/classPrivateFieldLooseKey.js +5 -0
- package/node_modules/@babel/runtime/helpers/classPrivateFieldSet.js +8 -0
- package/node_modules/@babel/runtime/helpers/classPrivateMethodGet.js +7 -0
- package/node_modules/@babel/runtime/helpers/classPrivateMethodInitSpec.js +6 -0
- package/node_modules/@babel/runtime/helpers/classPrivateMethodSet.js +4 -0
- package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldDestructureSet.js +9 -0
- package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecGet.js +9 -0
- package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecSet.js +10 -0
- package/node_modules/@babel/runtime/helpers/classStaticPrivateMethodGet.js +6 -0
- package/node_modules/@babel/runtime/helpers/classStaticPrivateMethodSet.js +4 -0
- package/node_modules/@babel/runtime/helpers/construct.js +10 -0
- package/node_modules/@babel/runtime/helpers/createClass.js +19 -0
- package/node_modules/@babel/runtime/helpers/createForOfIteratorHelper.js +53 -0
- package/node_modules/@babel/runtime/helpers/createForOfIteratorHelperLoose.js +20 -0
- package/node_modules/@babel/runtime/helpers/createSuper.js +18 -0
- package/node_modules/@babel/runtime/helpers/decorate.js +343 -0
- package/node_modules/@babel/runtime/helpers/defaults.js +12 -0
- package/node_modules/@babel/runtime/helpers/defineAccessor.js +8 -0
- package/node_modules/@babel/runtime/helpers/defineEnumerableProperties.js +20 -0
- package/node_modules/@babel/runtime/helpers/defineProperty.js +16 -0
- package/node_modules/@babel/runtime/helpers/dispose.js +28 -0
- package/node_modules/@babel/runtime/helpers/esm/AsyncGenerator.js +63 -0
- package/node_modules/@babel/runtime/helpers/esm/AwaitValue.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/OverloadYield.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/applyDecoratedDescriptor.js +23 -0
- package/node_modules/@babel/runtime/helpers/esm/applyDecs.js +235 -0
- package/node_modules/@babel/runtime/helpers/esm/applyDecs2203.js +183 -0
- package/node_modules/@babel/runtime/helpers/esm/applyDecs2203R.js +190 -0
- package/node_modules/@babel/runtime/helpers/esm/applyDecs2301.js +221 -0
- package/node_modules/@babel/runtime/helpers/esm/applyDecs2305.js +132 -0
- package/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js +5 -0
- package/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js +4 -0
- package/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +6 -0
- package/node_modules/@babel/runtime/helpers/esm/asyncGeneratorDelegate.js +23 -0
- package/node_modules/@babel/runtime/helpers/esm/asyncIterator.js +44 -0
- package/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js +30 -0
- package/node_modules/@babel/runtime/helpers/esm/awaitAsyncGenerator.js +4 -0
- package/node_modules/@babel/runtime/helpers/esm/callSuper.js +6 -0
- package/node_modules/@babel/runtime/helpers/esm/checkInRHS.js +5 -0
- package/node_modules/@babel/runtime/helpers/esm/checkPrivateRedeclaration.js +5 -0
- package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorDestructureSet.js +17 -0
- package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorGet.js +6 -0
- package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorSet.js +10 -0
- package/node_modules/@babel/runtime/helpers/esm/classCallCheck.js +5 -0
- package/node_modules/@babel/runtime/helpers/esm/classCheckPrivateStaticAccess.js +5 -0
- package/node_modules/@babel/runtime/helpers/esm/classCheckPrivateStaticFieldDescriptor.js +5 -0
- package/node_modules/@babel/runtime/helpers/esm/classExtractFieldDescriptor.js +6 -0
- package/node_modules/@babel/runtime/helpers/esm/classNameTDZError.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldDestructureSet.js +6 -0
- package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldGet.js +6 -0
- package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldInitSpec.js +5 -0
- package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseBase.js +6 -0
- package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseKey.js +4 -0
- package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldSet.js +7 -0
- package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodGet.js +6 -0
- package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodInitSpec.js +5 -0
- package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodSet.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldDestructureSet.js +8 -0
- package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecGet.js +8 -0
- package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecSet.js +9 -0
- package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodGet.js +5 -0
- package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodSet.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/construct.js +9 -0
- package/node_modules/@babel/runtime/helpers/esm/createClass.js +18 -0
- package/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelper.js +52 -0
- package/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelperLoose.js +19 -0
- package/node_modules/@babel/runtime/helpers/esm/createSuper.js +17 -0
- package/node_modules/@babel/runtime/helpers/esm/decorate.js +342 -0
- package/node_modules/@babel/runtime/helpers/esm/defaults.js +11 -0
- package/node_modules/@babel/runtime/helpers/esm/defineAccessor.js +7 -0
- package/node_modules/@babel/runtime/helpers/esm/defineEnumerableProperties.js +19 -0
- package/node_modules/@babel/runtime/helpers/esm/defineProperty.js +15 -0
- package/node_modules/@babel/runtime/helpers/esm/dispose.js +27 -0
- package/node_modules/@babel/runtime/helpers/esm/extends.js +14 -0
- package/node_modules/@babel/runtime/helpers/esm/get.js +17 -0
- package/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js +6 -0
- package/node_modules/@babel/runtime/helpers/esm/identity.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/importDeferProxy.js +26 -0
- package/node_modules/@babel/runtime/helpers/esm/inherits.js +17 -0
- package/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js +6 -0
- package/node_modules/@babel/runtime/helpers/esm/initializerDefineProperty.js +9 -0
- package/node_modules/@babel/runtime/helpers/esm/initializerWarningHelper.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/instanceof.js +7 -0
- package/node_modules/@babel/runtime/helpers/esm/interopRequireDefault.js +5 -0
- package/node_modules/@babel/runtime/helpers/esm/interopRequireWildcard.js +26 -0
- package/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js +7 -0
- package/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js +8 -0
- package/node_modules/@babel/runtime/helpers/esm/iterableToArray.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +27 -0
- package/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimitLoose.js +9 -0
- package/node_modules/@babel/runtime/helpers/esm/jsx.js +21 -0
- package/node_modules/@babel/runtime/helpers/esm/maybeArrayLike.js +8 -0
- package/node_modules/@babel/runtime/helpers/esm/newArrowCheck.js +5 -0
- package/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/nullishReceiverError.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/objectSpread.js +16 -0
- package/node_modules/@babel/runtime/helpers/esm/objectSpread2.js +22 -0
- package/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js +16 -0
- package/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +12 -0
- package/node_modules/@babel/runtime/helpers/esm/package.json +3 -0
- package/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js +10 -0
- package/node_modules/@babel/runtime/helpers/esm/readOnlyError.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js +303 -0
- package/node_modules/@babel/runtime/helpers/esm/set.js +40 -0
- package/node_modules/@babel/runtime/helpers/esm/setFunctionName.js +11 -0
- package/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +7 -0
- package/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js +7 -0
- package/node_modules/@babel/runtime/helpers/esm/slicedToArray.js +7 -0
- package/node_modules/@babel/runtime/helpers/esm/slicedToArrayLoose.js +7 -0
- package/node_modules/@babel/runtime/helpers/esm/superPropBase.js +8 -0
- package/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js +10 -0
- package/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteralLoose.js +7 -0
- package/node_modules/@babel/runtime/helpers/esm/tdz.js +3 -0
- package/node_modules/@babel/runtime/helpers/esm/temporalRef.js +5 -0
- package/node_modules/@babel/runtime/helpers/esm/temporalUndefined.js +1 -0
- package/node_modules/@babel/runtime/helpers/esm/toArray.js +7 -0
- package/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js +7 -0
- package/node_modules/@babel/runtime/helpers/esm/toPrimitive.js +11 -0
- package/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js +6 -0
- package/node_modules/@babel/runtime/helpers/esm/typeof.js +9 -0
- package/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +9 -0
- package/node_modules/@babel/runtime/helpers/esm/using.js +11 -0
- package/node_modules/@babel/runtime/helpers/esm/usingCtx.js +43 -0
- package/node_modules/@babel/runtime/helpers/esm/wrapAsyncGenerator.js +6 -0
- package/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js +30 -0
- package/node_modules/@babel/runtime/helpers/esm/wrapRegExp.js +50 -0
- package/node_modules/@babel/runtime/helpers/esm/writeOnlyError.js +3 -0
- package/node_modules/@babel/runtime/helpers/extends.js +15 -0
- package/node_modules/@babel/runtime/helpers/get.js +18 -0
- package/node_modules/@babel/runtime/helpers/getPrototypeOf.js +7 -0
- package/node_modules/@babel/runtime/helpers/identity.js +4 -0
- package/node_modules/@babel/runtime/helpers/importDeferProxy.js +27 -0
- package/node_modules/@babel/runtime/helpers/inherits.js +18 -0
- package/node_modules/@babel/runtime/helpers/inheritsLoose.js +7 -0
- package/node_modules/@babel/runtime/helpers/initializerDefineProperty.js +10 -0
- package/node_modules/@babel/runtime/helpers/initializerWarningHelper.js +4 -0
- package/node_modules/@babel/runtime/helpers/instanceof.js +8 -0
- package/node_modules/@babel/runtime/helpers/interopRequireDefault.js +6 -0
- package/node_modules/@babel/runtime/helpers/interopRequireWildcard.js +27 -0
- package/node_modules/@babel/runtime/helpers/isNativeFunction.js +8 -0
- package/node_modules/@babel/runtime/helpers/isNativeReflectConstruct.js +9 -0
- package/node_modules/@babel/runtime/helpers/iterableToArray.js +4 -0
- package/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js +28 -0
- package/node_modules/@babel/runtime/helpers/iterableToArrayLimitLoose.js +10 -0
- package/node_modules/@babel/runtime/helpers/jsx.js +22 -0
- package/node_modules/@babel/runtime/helpers/maybeArrayLike.js +9 -0
- package/node_modules/@babel/runtime/helpers/newArrowCheck.js +6 -0
- package/node_modules/@babel/runtime/helpers/nonIterableRest.js +4 -0
- package/node_modules/@babel/runtime/helpers/nonIterableSpread.js +4 -0
- package/node_modules/@babel/runtime/helpers/nullishReceiverError.js +4 -0
- package/node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js +4 -0
- package/node_modules/@babel/runtime/helpers/objectSpread.js +17 -0
- package/node_modules/@babel/runtime/helpers/objectSpread2.js +23 -0
- package/node_modules/@babel/runtime/helpers/objectWithoutProperties.js +17 -0
- package/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js +13 -0
- package/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js +11 -0
- package/node_modules/@babel/runtime/helpers/readOnlyError.js +4 -0
- package/node_modules/@babel/runtime/helpers/regeneratorRuntime.js +304 -0
- package/node_modules/@babel/runtime/helpers/set.js +41 -0
- package/node_modules/@babel/runtime/helpers/setFunctionName.js +12 -0
- package/node_modules/@babel/runtime/helpers/setPrototypeOf.js +8 -0
- package/node_modules/@babel/runtime/helpers/skipFirstGeneratorNext.js +8 -0
- package/node_modules/@babel/runtime/helpers/slicedToArray.js +8 -0
- package/node_modules/@babel/runtime/helpers/slicedToArrayLoose.js +8 -0
- package/node_modules/@babel/runtime/helpers/superPropBase.js +9 -0
- package/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js +11 -0
- package/node_modules/@babel/runtime/helpers/taggedTemplateLiteralLoose.js +8 -0
- package/node_modules/@babel/runtime/helpers/tdz.js +4 -0
- package/node_modules/@babel/runtime/helpers/temporalRef.js +6 -0
- package/node_modules/@babel/runtime/helpers/temporalUndefined.js +2 -0
- package/node_modules/@babel/runtime/helpers/toArray.js +8 -0
- package/node_modules/@babel/runtime/helpers/toConsumableArray.js +8 -0
- package/node_modules/@babel/runtime/helpers/toPrimitive.js +12 -0
- package/node_modules/@babel/runtime/helpers/toPropertyKey.js +7 -0
- package/node_modules/@babel/runtime/helpers/typeof.js +10 -0
- package/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js +10 -0
- package/node_modules/@babel/runtime/helpers/using.js +12 -0
- package/node_modules/@babel/runtime/helpers/usingCtx.js +44 -0
- package/node_modules/@babel/runtime/helpers/wrapAsyncGenerator.js +7 -0
- package/node_modules/@babel/runtime/helpers/wrapNativeSuper.js +31 -0
- package/node_modules/@babel/runtime/helpers/wrapRegExp.js +51 -0
- package/node_modules/@babel/runtime/helpers/writeOnlyError.js +4 -0
- package/node_modules/@babel/runtime/package.json +1002 -0
- package/node_modules/@babel/runtime/regenerator/index.js +15 -0
- package/node_modules/@babel/template/LICENSE +22 -0
- package/node_modules/@babel/template/README.md +19 -0
- package/node_modules/@babel/template/lib/builder.js +69 -0
- package/node_modules/@babel/template/lib/builder.js.map +1 -0
- package/node_modules/@babel/template/lib/formatters.js +61 -0
- package/node_modules/@babel/template/lib/formatters.js.map +1 -0
- package/node_modules/@babel/template/lib/index.js +23 -0
- package/node_modules/@babel/template/lib/index.js.map +1 -0
- package/node_modules/@babel/template/lib/literal.js +69 -0
- package/node_modules/@babel/template/lib/literal.js.map +1 -0
- package/node_modules/@babel/template/lib/options.js +73 -0
- package/node_modules/@babel/template/lib/options.js.map +1 -0
- package/node_modules/@babel/template/lib/parse.js +160 -0
- package/node_modules/@babel/template/lib/parse.js.map +1 -0
- package/node_modules/@babel/template/lib/populate.js +122 -0
- package/node_modules/@babel/template/lib/populate.js.map +1 -0
- package/node_modules/@babel/template/lib/string.js +20 -0
- package/node_modules/@babel/template/lib/string.js.map +1 -0
- package/node_modules/@babel/template/package.json +27 -0
- package/node_modules/@babel/traverse/LICENSE +22 -0
- package/node_modules/@babel/traverse/README.md +19 -0
- package/node_modules/@babel/traverse/lib/cache.js +44 -0
- package/node_modules/@babel/traverse/lib/cache.js.map +1 -0
- package/node_modules/@babel/traverse/lib/context.js +115 -0
- package/node_modules/@babel/traverse/lib/context.js.map +1 -0
- package/node_modules/@babel/traverse/lib/hub.js +19 -0
- package/node_modules/@babel/traverse/lib/hub.js.map +1 -0
- package/node_modules/@babel/traverse/lib/index.js +94 -0
- package/node_modules/@babel/traverse/lib/index.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/ancestry.js +141 -0
- package/node_modules/@babel/traverse/lib/path/ancestry.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/comments.js +52 -0
- package/node_modules/@babel/traverse/lib/path/comments.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/context.js +222 -0
- package/node_modules/@babel/traverse/lib/path/context.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/conversion.js +468 -0
- package/node_modules/@babel/traverse/lib/path/conversion.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/evaluation.js +347 -0
- package/node_modules/@babel/traverse/lib/path/evaluation.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/family.js +336 -0
- package/node_modules/@babel/traverse/lib/path/family.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/index.js +189 -0
- package/node_modules/@babel/traverse/lib/path/index.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/inference/index.js +149 -0
- package/node_modules/@babel/traverse/lib/path/inference/index.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +151 -0
- package/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/inference/inferers.js +207 -0
- package/node_modules/@babel/traverse/lib/path/inference/inferers.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/inference/util.js +30 -0
- package/node_modules/@babel/traverse/lib/path/inference/util.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/introspection.js +384 -0
- package/node_modules/@babel/traverse/lib/path/introspection.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/lib/hoister.js +171 -0
- package/node_modules/@babel/traverse/lib/path/lib/hoister.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js +37 -0
- package/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js +161 -0
- package/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/lib/virtual-types.js +26 -0
- package/node_modules/@babel/traverse/lib/path/lib/virtual-types.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/modification.js +225 -0
- package/node_modules/@babel/traverse/lib/path/modification.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/removal.js +66 -0
- package/node_modules/@babel/traverse/lib/path/removal.js.map +1 -0
- package/node_modules/@babel/traverse/lib/path/replacement.js +264 -0
- package/node_modules/@babel/traverse/lib/path/replacement.js.map +1 -0
- package/node_modules/@babel/traverse/lib/scope/binding.js +83 -0
- package/node_modules/@babel/traverse/lib/scope/binding.js.map +1 -0
- package/node_modules/@babel/traverse/lib/scope/index.js +888 -0
- package/node_modules/@babel/traverse/lib/scope/index.js.map +1 -0
- package/node_modules/@babel/traverse/lib/scope/lib/renamer.js +113 -0
- package/node_modules/@babel/traverse/lib/scope/lib/renamer.js.map +1 -0
- package/node_modules/@babel/traverse/lib/traverse-node.js +29 -0
- package/node_modules/@babel/traverse/lib/traverse-node.js.map +1 -0
- package/node_modules/@babel/traverse/lib/types.js +3 -0
- package/node_modules/@babel/traverse/lib/types.js.map +1 -0
- package/node_modules/@babel/traverse/lib/visitors.js +221 -0
- package/node_modules/@babel/traverse/lib/visitors.js.map +1 -0
- package/node_modules/@babel/traverse/package.json +38 -0
- package/node_modules/@babel/types/LICENSE +22 -0
- package/node_modules/@babel/types/README.md +19 -0
- package/node_modules/@babel/types/lib/asserts/assertNode.js +16 -0
- package/node_modules/@babel/types/lib/asserts/assertNode.js.map +1 -0
- package/node_modules/@babel/types/lib/asserts/generated/index.js +1235 -0
- package/node_modules/@babel/types/lib/asserts/generated/index.js.map +1 -0
- package/node_modules/@babel/types/lib/ast-types/generated/index.js +3 -0
- package/node_modules/@babel/types/lib/ast-types/generated/index.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +18 -0
- package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +31 -0
- package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/generated/index.js +1991 -0
- package/node_modules/@babel/types/lib/builders/generated/index.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/generated/uppercase.js +1532 -0
- package/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/productions.js +12 -0
- package/node_modules/@babel/types/lib/builders/productions.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/react/buildChildren.js +24 -0
- package/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +22 -0
- package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +1 -0
- package/node_modules/@babel/types/lib/builders/validateNode.js +17 -0
- package/node_modules/@babel/types/lib/builders/validateNode.js.map +1 -0
- package/node_modules/@babel/types/lib/clone/clone.js +12 -0
- package/node_modules/@babel/types/lib/clone/clone.js.map +1 -0
- package/node_modules/@babel/types/lib/clone/cloneDeep.js +12 -0
- package/node_modules/@babel/types/lib/clone/cloneDeep.js.map +1 -0
- package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +12 -0
- package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +1 -0
- package/node_modules/@babel/types/lib/clone/cloneNode.js +100 -0
- package/node_modules/@babel/types/lib/clone/cloneNode.js.map +1 -0
- package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +12 -0
- package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +1 -0
- package/node_modules/@babel/types/lib/comments/addComment.js +15 -0
- package/node_modules/@babel/types/lib/comments/addComment.js.map +1 -0
- package/node_modules/@babel/types/lib/comments/addComments.js +22 -0
- package/node_modules/@babel/types/lib/comments/addComments.js.map +1 -0
- package/node_modules/@babel/types/lib/comments/inheritInnerComments.js +12 -0
- package/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +1 -0
- package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +12 -0
- package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +1 -0
- package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +12 -0
- package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +1 -0
- package/node_modules/@babel/types/lib/comments/inheritsComments.js +17 -0
- package/node_modules/@babel/types/lib/comments/inheritsComments.js.map +1 -0
- package/node_modules/@babel/types/lib/comments/removeComments.js +15 -0
- package/node_modules/@babel/types/lib/comments/removeComments.js.map +1 -0
- package/node_modules/@babel/types/lib/constants/generated/index.js +59 -0
- package/node_modules/@babel/types/lib/constants/generated/index.js.map +1 -0
- package/node_modules/@babel/types/lib/constants/index.js +31 -0
- package/node_modules/@babel/types/lib/constants/index.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/ensureBlock.js +14 -0
- package/node_modules/@babel/types/lib/converters/ensureBlock.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +65 -0
- package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +14 -0
- package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toBlock.js +29 -0
- package/node_modules/@babel/types/lib/converters/toBlock.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toComputedKey.js +14 -0
- package/node_modules/@babel/types/lib/converters/toComputedKey.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toExpression.js +27 -0
- package/node_modules/@babel/types/lib/converters/toExpression.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toIdentifier.js +25 -0
- package/node_modules/@babel/types/lib/converters/toIdentifier.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toKeyAlias.js +38 -0
- package/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toSequenceExpression.js +20 -0
- package/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/toStatement.js +39 -0
- package/node_modules/@babel/types/lib/converters/toStatement.js.map +1 -0
- package/node_modules/@babel/types/lib/converters/valueToNode.js +76 -0
- package/node_modules/@babel/types/lib/converters/valueToNode.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/core.js +1689 -0
- package/node_modules/@babel/types/lib/definitions/core.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +11 -0
- package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/experimental.js +134 -0
- package/node_modules/@babel/types/lib/definitions/experimental.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/flow.js +488 -0
- package/node_modules/@babel/types/lib/definitions/flow.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/index.js +96 -0
- package/node_modules/@babel/types/lib/definitions/index.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/jsx.js +158 -0
- package/node_modules/@babel/types/lib/definitions/jsx.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/misc.js +32 -0
- package/node_modules/@babel/types/lib/definitions/misc.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/placeholders.js +27 -0
- package/node_modules/@babel/types/lib/definitions/placeholders.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/typescript.js +489 -0
- package/node_modules/@babel/types/lib/definitions/typescript.js.map +1 -0
- package/node_modules/@babel/types/lib/definitions/utils.js +273 -0
- package/node_modules/@babel/types/lib/definitions/utils.js.map +1 -0
- package/node_modules/@babel/types/lib/index-legacy.d.ts +2757 -0
- package/node_modules/@babel/types/lib/index.d.ts +3260 -0
- package/node_modules/@babel/types/lib/index.js +576 -0
- package/node_modules/@babel/types/lib/index.js.flow +2611 -0
- package/node_modules/@babel/types/lib/index.js.map +1 -0
- package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +15 -0
- package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +1 -0
- package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +65 -0
- package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +1 -0
- package/node_modules/@babel/types/lib/modifications/inherits.js +28 -0
- package/node_modules/@babel/types/lib/modifications/inherits.js.map +1 -0
- package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +17 -0
- package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +1 -0
- package/node_modules/@babel/types/lib/modifications/removeProperties.js +24 -0
- package/node_modules/@babel/types/lib/modifications/removeProperties.js.map +1 -0
- package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +14 -0
- package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +1 -0
- package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +65 -0
- package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +1 -0
- package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +96 -0
- package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +1 -0
- package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +13 -0
- package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +1 -0
- package/node_modules/@babel/types/lib/traverse/traverse.js +50 -0
- package/node_modules/@babel/types/lib/traverse/traverse.js.map +1 -0
- package/node_modules/@babel/types/lib/traverse/traverseFast.js +26 -0
- package/node_modules/@babel/types/lib/traverse/traverseFast.js.map +1 -0
- package/node_modules/@babel/types/lib/utils/deprecationWarning.js +44 -0
- package/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +1 -0
- package/node_modules/@babel/types/lib/utils/inherit.js +13 -0
- package/node_modules/@babel/types/lib/utils/inherit.js.map +1 -0
- package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +40 -0
- package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +1 -0
- package/node_modules/@babel/types/lib/utils/shallowEqual.js +17 -0
- package/node_modules/@babel/types/lib/utils/shallowEqual.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +13 -0
- package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/generated/index.js +2752 -0
- package/node_modules/@babel/types/lib/validators/generated/index.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/is.js +27 -0
- package/node_modules/@babel/types/lib/validators/is.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isBinding.js +27 -0
- package/node_modules/@babel/types/lib/validators/isBinding.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isBlockScoped.js +13 -0
- package/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isImmutable.js +21 -0
- package/node_modules/@babel/types/lib/validators/isImmutable.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isLet.js +13 -0
- package/node_modules/@babel/types/lib/validators/isLet.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isNode.js +12 -0
- package/node_modules/@babel/types/lib/validators/isNode.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +57 -0
- package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isPlaceholderType.js +19 -0
- package/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isReferenced.js +96 -0
- package/node_modules/@babel/types/lib/validators/isReferenced.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isScope.js +18 -0
- package/node_modules/@babel/types/lib/validators/isScope.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +14 -0
- package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isType.js +22 -0
- package/node_modules/@babel/types/lib/validators/isType.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +13 -0
- package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isValidIdentifier.js +18 -0
- package/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/isVar.js +15 -0
- package/node_modules/@babel/types/lib/validators/isVar.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/matchesPattern.js +36 -0
- package/node_modules/@babel/types/lib/validators/matchesPattern.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/react/isCompatTag.js +11 -0
- package/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/react/isReactComponent.js +11 -0
- package/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +1 -0
- package/node_modules/@babel/types/lib/validators/validate.js +30 -0
- package/node_modules/@babel/types/lib/validators/validate.js.map +1 -0
- package/node_modules/@babel/types/package.json +40 -0
- package/node_modules/@bcoe/v8-coverage/.editorconfig +9 -0
- package/node_modules/@bcoe/v8-coverage/.gitattributes +2 -0
- package/node_modules/@bcoe/v8-coverage/CHANGELOG.md +250 -0
- package/node_modules/@bcoe/v8-coverage/LICENSE.md +21 -0
- package/node_modules/@bcoe/v8-coverage/LICENSE.txt +14 -0
- package/node_modules/@bcoe/v8-coverage/README.md +11 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/CHANGELOG.md +250 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/LICENSE.md +21 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/README.md +11 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/_src/ascii.ts +146 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/_src/clone.ts +70 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/_src/compare.ts +40 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/_src/index.ts +6 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/_src/merge.ts +343 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/_src/normalize.ts +84 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/_src/range-tree.ts +156 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/_src/types.ts +26 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/ascii.d.ts +12 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/ascii.js +136 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/ascii.mjs +130 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/clone.d.ts +29 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/clone.js +70 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/clone.mjs +64 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/compare.d.ts +21 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/compare.js +46 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/compare.mjs +41 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/index.d.ts +6 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/index.js +24 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/index.mjs +7 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/merge.d.ts +39 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/merge.js +302 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/merge.mjs +297 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/normalize.d.ts +53 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/normalize.js +87 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/normalize.mjs +79 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/package.json +44 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/range-tree.d.ts +24 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/range-tree.js +139 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/range-tree.mjs +136 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/tsconfig.json +62 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/types.d.ts +22 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/types.js +4 -0
- package/node_modules/@bcoe/v8-coverage/dist/lib/types.mjs +3 -0
- package/node_modules/@bcoe/v8-coverage/gulpfile.ts +95 -0
- package/node_modules/@bcoe/v8-coverage/package.json +48 -0
- package/node_modules/@bcoe/v8-coverage/tsconfig.json +59 -0
- package/node_modules/@cspotcode/source-map-consumer/README.md +7 -0
- package/node_modules/@cspotcode/source-map-consumer/lib/array-set.js +100 -0
- package/node_modules/@cspotcode/source-map-consumer/lib/binary-search.js +107 -0
- package/node_modules/@cspotcode/source-map-consumer/lib/mappings.wasm +0 -0
- package/node_modules/@cspotcode/source-map-consumer/lib/read-wasm.js +25 -0
- package/node_modules/@cspotcode/source-map-consumer/lib/source-map-consumer.js +1229 -0
- package/node_modules/@cspotcode/source-map-consumer/lib/util.js +546 -0
- package/node_modules/@cspotcode/source-map-consumer/lib/wasm.js +153 -0
- package/node_modules/@cspotcode/source-map-consumer/package.json +91 -0
- package/node_modules/@cspotcode/source-map-consumer/source-map.d.ts +369 -0
- package/node_modules/@cspotcode/source-map-consumer/source-map.js +6 -0
- package/node_modules/@cspotcode/source-map-support/LICENSE.md +21 -0
- package/node_modules/@cspotcode/source-map-support/README.md +289 -0
- package/node_modules/@cspotcode/source-map-support/package.json +46 -0
- package/node_modules/@cspotcode/source-map-support/register-hook-require.d.ts +7 -0
- package/node_modules/@cspotcode/source-map-support/register-hook-require.js +3 -0
- package/node_modules/@cspotcode/source-map-support/register.d.ts +7 -0
- package/node_modules/@cspotcode/source-map-support/register.js +1 -0
- package/node_modules/@cspotcode/source-map-support/source-map-support.d.ts +68 -0
- package/node_modules/@cspotcode/source-map-support/source-map-support.js +806 -0
- package/node_modules/@istanbuljs/load-nyc-config/CHANGELOG.md +41 -0
- package/node_modules/@istanbuljs/load-nyc-config/LICENSE +16 -0
- package/node_modules/@istanbuljs/load-nyc-config/README.md +64 -0
- package/node_modules/@istanbuljs/load-nyc-config/index.js +166 -0
- package/node_modules/@istanbuljs/load-nyc-config/load-esm.js +12 -0
- package/node_modules/@istanbuljs/load-nyc-config/package.json +49 -0
- package/node_modules/@istanbuljs/schema/CHANGELOG.md +44 -0
- package/node_modules/@istanbuljs/schema/LICENSE +21 -0
- package/node_modules/@istanbuljs/schema/README.md +30 -0
- package/node_modules/@istanbuljs/schema/default-exclude.js +22 -0
- package/node_modules/@istanbuljs/schema/default-extension.js +10 -0
- package/node_modules/@istanbuljs/schema/index.js +466 -0
- package/node_modules/@istanbuljs/schema/package.json +30 -0
- package/node_modules/@jest/console/LICENSE +21 -0
- package/node_modules/@jest/console/build/BufferedConsole.js +197 -0
- package/node_modules/@jest/console/build/CustomConsole.js +182 -0
- package/node_modules/@jest/console/build/NullConsole.js +35 -0
- package/node_modules/@jest/console/build/getConsoleOutput.js +70 -0
- package/node_modules/@jest/console/build/index.d.ts +131 -0
- package/node_modules/@jest/console/build/index.js +36 -0
- package/node_modules/@jest/console/build/types.js +1 -0
- package/node_modules/@jest/console/package.json +37 -0
- package/node_modules/@jest/core/LICENSE +21 -0
- package/node_modules/@jest/core/README.md +3 -0
- package/node_modules/@jest/core/build/FailedTestsCache.js +46 -0
- package/node_modules/@jest/core/build/FailedTestsInteractiveMode.js +195 -0
- package/node_modules/@jest/core/build/ReporterDispatcher.js +87 -0
- package/node_modules/@jest/core/build/SearchSource.js +408 -0
- package/node_modules/@jest/core/build/SnapshotInteractiveMode.js +238 -0
- package/node_modules/@jest/core/build/TestNamePatternPrompt.js +39 -0
- package/node_modules/@jest/core/build/TestPathPatternPrompt.js +39 -0
- package/node_modules/@jest/core/build/TestScheduler.js +463 -0
- package/node_modules/@jest/core/build/cli/index.js +417 -0
- package/node_modules/@jest/core/build/collectHandles.js +266 -0
- package/node_modules/@jest/core/build/getChangedFilesPromise.js +65 -0
- package/node_modules/@jest/core/build/getConfigsOfProjectsToRun.js +40 -0
- package/node_modules/@jest/core/build/getNoTestFound.js +80 -0
- package/node_modules/@jest/core/build/getNoTestFoundFailed.js +43 -0
- package/node_modules/@jest/core/build/getNoTestFoundPassWithNoTests.js +26 -0
- package/node_modules/@jest/core/build/getNoTestFoundRelatedToChangedFiles.js +48 -0
- package/node_modules/@jest/core/build/getNoTestFoundVerbose.js +91 -0
- package/node_modules/@jest/core/build/getNoTestsFoundMessage.js +64 -0
- package/node_modules/@jest/core/build/getProjectDisplayName.js +16 -0
- package/node_modules/@jest/core/build/getProjectNamesMissingWarning.js +49 -0
- package/node_modules/@jest/core/build/getSelectProjectsMessage.js +71 -0
- package/node_modules/@jest/core/build/index.d.ts +118 -0
- package/node_modules/@jest/core/build/index.js +36 -0
- package/node_modules/@jest/core/build/lib/activeFiltersMessage.js +52 -0
- package/node_modules/@jest/core/build/lib/createContext.js +31 -0
- package/node_modules/@jest/core/build/lib/handleDeprecationWarnings.js +65 -0
- package/node_modules/@jest/core/build/lib/isValidPath.js +26 -0
- package/node_modules/@jest/core/build/lib/logDebugMessages.js +24 -0
- package/node_modules/@jest/core/build/lib/updateGlobalConfig.js +95 -0
- package/node_modules/@jest/core/build/lib/watchPluginsHelpers.js +56 -0
- package/node_modules/@jest/core/build/plugins/FailedTestsInteractive.js +96 -0
- package/node_modules/@jest/core/build/plugins/Quit.js +42 -0
- package/node_modules/@jest/core/build/plugins/TestNamePattern.js +70 -0
- package/node_modules/@jest/core/build/plugins/TestPathPattern.js +70 -0
- package/node_modules/@jest/core/build/plugins/UpdateSnapshots.js +51 -0
- package/node_modules/@jest/core/build/plugins/UpdateSnapshotsInteractive.js +99 -0
- package/node_modules/@jest/core/build/runGlobalHook.js +133 -0
- package/node_modules/@jest/core/build/runJest.js +391 -0
- package/node_modules/@jest/core/build/testSchedulerHelper.js +57 -0
- package/node_modules/@jest/core/build/types.js +1 -0
- package/node_modules/@jest/core/build/version.js +18 -0
- package/node_modules/@jest/core/build/watch.js +666 -0
- package/node_modules/@jest/core/package.json +102 -0
- package/node_modules/@jest/environment/LICENSE +21 -0
- package/node_modules/@jest/environment/build/index.d.ts +418 -0
- package/node_modules/@jest/environment/build/index.js +1 -0
- package/node_modules/@jest/environment/package.json +32 -0
- package/node_modules/@jest/expect/LICENSE +21 -0
- package/node_modules/@jest/expect/README.md +5 -0
- package/node_modules/@jest/expect/build/index.d.ts +68 -0
- package/node_modules/@jest/expect/build/index.js +40 -0
- package/node_modules/@jest/expect/build/types.js +1 -0
- package/node_modules/@jest/expect/package.json +34 -0
- package/node_modules/@jest/expect-utils/LICENSE +21 -0
- package/node_modules/@jest/expect-utils/README.md +5 -0
- package/node_modules/@jest/expect-utils/build/immutableUtils.js +66 -0
- package/node_modules/@jest/expect-utils/build/index.d.ts +93 -0
- package/node_modules/@jest/expect-utils/build/index.js +34 -0
- package/node_modules/@jest/expect-utils/build/jasmineUtils.js +210 -0
- package/node_modules/@jest/expect-utils/build/types.js +1 -0
- package/node_modules/@jest/expect-utils/build/utils.js +394 -0
- package/node_modules/@jest/expect-utils/package.json +35 -0
- package/node_modules/@jest/fake-timers/LICENSE +21 -0
- package/node_modules/@jest/fake-timers/build/index.d.ts +110 -0
- package/node_modules/@jest/fake-timers/build/index.js +22 -0
- package/node_modules/@jest/fake-timers/build/legacyFakeTimers.js +545 -0
- package/node_modules/@jest/fake-timers/build/modernFakeTimers.js +191 -0
- package/node_modules/@jest/fake-timers/package.json +38 -0
- package/node_modules/@jest/globals/LICENSE +21 -0
- package/node_modules/@jest/globals/build/index.d.ts +71 -0
- package/node_modules/@jest/globals/build/index.js +14 -0
- package/node_modules/@jest/globals/package.json +32 -0
- package/node_modules/@jest/reporters/LICENSE +21 -0
- package/node_modules/@jest/reporters/assets/jest_logo.png +0 -0
- package/node_modules/@jest/reporters/build/BaseReporter.js +48 -0
- package/node_modules/@jest/reporters/build/CoverageReporter.js +561 -0
- package/node_modules/@jest/reporters/build/CoverageWorker.js +89 -0
- package/node_modules/@jest/reporters/build/DefaultReporter.js +229 -0
- package/node_modules/@jest/reporters/build/GitHubActionsReporter.js +381 -0
- package/node_modules/@jest/reporters/build/NotifyReporter.js +218 -0
- package/node_modules/@jest/reporters/build/Status.js +214 -0
- package/node_modules/@jest/reporters/build/SummaryReporter.js +239 -0
- package/node_modules/@jest/reporters/build/VerboseReporter.js +175 -0
- package/node_modules/@jest/reporters/build/formatTestPath.js +84 -0
- package/node_modules/@jest/reporters/build/generateEmptyCoverage.js +151 -0
- package/node_modules/@jest/reporters/build/getResultHeader.js +65 -0
- package/node_modules/@jest/reporters/build/getSnapshotStatus.js +92 -0
- package/node_modules/@jest/reporters/build/getSnapshotSummary.js +169 -0
- package/node_modules/@jest/reporters/build/getSummary.js +206 -0
- package/node_modules/@jest/reporters/build/getWatermarks.js +38 -0
- package/node_modules/@jest/reporters/build/index.d.ts +325 -0
- package/node_modules/@jest/reporters/build/index.js +88 -0
- package/node_modules/@jest/reporters/build/printDisplayName.js +35 -0
- package/node_modules/@jest/reporters/build/relativePath.js +72 -0
- package/node_modules/@jest/reporters/build/trimAndFormatPath.js +118 -0
- package/node_modules/@jest/reporters/build/types.js +1 -0
- package/node_modules/@jest/reporters/build/wrapAnsiString.js +69 -0
- package/node_modules/@jest/reporters/package.json +82 -0
- package/node_modules/@jest/schemas/LICENSE +21 -0
- package/node_modules/@jest/schemas/README.md +3 -0
- package/node_modules/@jest/schemas/build/index.d.ts +72 -0
- package/node_modules/@jest/schemas/build/index.js +65 -0
- package/node_modules/@jest/schemas/package.json +29 -0
- package/node_modules/@jest/source-map/LICENSE +21 -0
- package/node_modules/@jest/source-map/build/getCallsite.js +85 -0
- package/node_modules/@jest/source-map/build/index.d.ts +16 -0
- package/node_modules/@jest/source-map/build/index.js +15 -0
- package/node_modules/@jest/source-map/build/types.js +1 -0
- package/node_modules/@jest/source-map/package.json +34 -0
- package/node_modules/@jest/test-result/LICENSE +21 -0
- package/node_modules/@jest/test-result/build/formatTestResults.js +69 -0
- package/node_modules/@jest/test-result/build/helpers.js +175 -0
- package/node_modules/@jest/test-result/build/index.d.ts +232 -0
- package/node_modules/@jest/test-result/build/index.js +40 -0
- package/node_modules/@jest/test-result/build/types.js +1 -0
- package/node_modules/@jest/test-result/package.json +36 -0
- package/node_modules/@jest/test-sequencer/LICENSE +21 -0
- package/node_modules/@jest/test-sequencer/build/index.d.ts +91 -0
- package/node_modules/@jest/test-sequencer/build/index.js +287 -0
- package/node_modules/@jest/test-sequencer/package.json +36 -0
- package/node_modules/@jest/transform/LICENSE +21 -0
- package/node_modules/@jest/transform/build/ScriptTransformer.js +1000 -0
- package/node_modules/@jest/transform/build/enhanceUnexpectedTokenMessage.js +76 -0
- package/node_modules/@jest/transform/build/index.d.ts +240 -0
- package/node_modules/@jest/transform/build/index.js +37 -0
- package/node_modules/@jest/transform/build/runtimeErrorsAndWarnings.js +94 -0
- package/node_modules/@jest/transform/build/shouldInstrument.js +177 -0
- package/node_modules/@jest/transform/build/types.js +1 -0
- package/node_modules/@jest/transform/package.json +52 -0
- package/node_modules/@jest/types/LICENSE +21 -0
- package/node_modules/@jest/types/README.md +30 -0
- package/node_modules/@jest/types/build/Circus.js +1 -0
- package/node_modules/@jest/types/build/Config.js +1 -0
- package/node_modules/@jest/types/build/Global.js +1 -0
- package/node_modules/@jest/types/build/TestResult.js +1 -0
- package/node_modules/@jest/types/build/Transform.js +1 -0
- package/node_modules/@jest/types/build/index.d.ts +1204 -0
- package/node_modules/@jest/types/build/index.js +1 -0
- package/node_modules/@jest/types/package.json +38 -0
- package/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
- package/node_modules/@jridgewell/gen-mapping/README.md +227 -0
- package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs +230 -0
- package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs.map +1 -0
- package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js +236 -0
- package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js.map +1 -0
- package/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts +90 -0
- package/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts +12 -0
- package/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts +35 -0
- package/node_modules/@jridgewell/gen-mapping/package.json +77 -0
- package/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
- package/node_modules/@jridgewell/resolve-uri/README.md +40 -0
- package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs +242 -0
- package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs.map +1 -0
- package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js +250 -0
- package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js.map +1 -0
- package/node_modules/@jridgewell/resolve-uri/dist/types/resolve-uri.d.ts +4 -0
- package/node_modules/@jridgewell/resolve-uri/package.json +69 -0
- package/node_modules/@jridgewell/set-array/LICENSE +19 -0
- package/node_modules/@jridgewell/set-array/README.md +37 -0
- package/node_modules/@jridgewell/set-array/dist/set-array.mjs +48 -0
- package/node_modules/@jridgewell/set-array/dist/set-array.mjs.map +1 -0
- package/node_modules/@jridgewell/set-array/dist/set-array.umd.js +58 -0
- package/node_modules/@jridgewell/set-array/dist/set-array.umd.js.map +1 -0
- package/node_modules/@jridgewell/set-array/dist/types/set-array.d.ts +26 -0
- package/node_modules/@jridgewell/set-array/package.json +66 -0
- package/node_modules/@jridgewell/sourcemap-codec/LICENSE +21 -0
- package/node_modules/@jridgewell/sourcemap-codec/README.md +200 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +164 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +1 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +175 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
- package/node_modules/@jridgewell/sourcemap-codec/dist/types/sourcemap-codec.d.ts +6 -0
- package/node_modules/@jridgewell/sourcemap-codec/package.json +75 -0
- package/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
- package/node_modules/@jridgewell/trace-mapping/README.md +252 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +552 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +560 -0
- package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts +8 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/binary-search.d.ts +32 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/by-source.d.ts +7 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/resolve.d.ts +1 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/sort.d.ts +2 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts +16 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/strip-filename.d.ts +4 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts +74 -0
- package/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts +92 -0
- package/node_modules/@jridgewell/trace-mapping/package.json +75 -0
- package/node_modules/@sinclair/typebox/compiler/compiler.d.ts +28 -0
- package/node_modules/@sinclair/typebox/compiler/compiler.js +404 -0
- package/node_modules/@sinclair/typebox/compiler/index.d.ts +2 -0
- package/node_modules/@sinclair/typebox/compiler/index.js +47 -0
- package/node_modules/@sinclair/typebox/conditional/conditional.d.ts +17 -0
- package/node_modules/@sinclair/typebox/conditional/conditional.js +91 -0
- package/node_modules/@sinclair/typebox/conditional/index.d.ts +2 -0
- package/node_modules/@sinclair/typebox/conditional/index.js +45 -0
- package/node_modules/@sinclair/typebox/conditional/structural.d.ts +11 -0
- package/node_modules/@sinclair/typebox/conditional/structural.js +657 -0
- package/node_modules/@sinclair/typebox/errors/errors.d.ts +59 -0
- package/node_modules/@sinclair/typebox/errors/errors.js +382 -0
- package/node_modules/@sinclair/typebox/errors/index.d.ts +1 -0
- package/node_modules/@sinclair/typebox/errors/index.js +44 -0
- package/node_modules/@sinclair/typebox/format/format.d.ts +12 -0
- package/node_modules/@sinclair/typebox/format/format.js +55 -0
- package/node_modules/@sinclair/typebox/format/index.d.ts +1 -0
- package/node_modules/@sinclair/typebox/format/index.js +44 -0
- package/node_modules/@sinclair/typebox/guard/guard.d.ts +56 -0
- package/node_modules/@sinclair/typebox/guard/guard.js +348 -0
- package/node_modules/@sinclair/typebox/guard/index.d.ts +1 -0
- package/node_modules/@sinclair/typebox/guard/index.js +44 -0
- package/node_modules/@sinclair/typebox/license +23 -0
- package/node_modules/@sinclair/typebox/package.json +40 -0
- package/node_modules/@sinclair/typebox/readme.md +1152 -0
- package/node_modules/@sinclair/typebox/typebox.d.ts +406 -0
- package/node_modules/@sinclair/typebox/typebox.js +383 -0
- package/node_modules/@sinclair/typebox/value/cast.d.ts +26 -0
- package/node_modules/@sinclair/typebox/value/cast.js +355 -0
- package/node_modules/@sinclair/typebox/value/check.d.ts +8 -0
- package/node_modules/@sinclair/typebox/value/check.js +322 -0
- package/node_modules/@sinclair/typebox/value/clone.d.ts +3 -0
- package/node_modules/@sinclair/typebox/value/clone.js +65 -0
- package/node_modules/@sinclair/typebox/value/create.d.ts +14 -0
- package/node_modules/@sinclair/typebox/value/create.js +357 -0
- package/node_modules/@sinclair/typebox/value/delta.d.ts +22 -0
- package/node_modules/@sinclair/typebox/value/delta.js +168 -0
- package/node_modules/@sinclair/typebox/value/equal.d.ts +3 -0
- package/node_modules/@sinclair/typebox/value/equal.js +74 -0
- package/node_modules/@sinclair/typebox/value/index.d.ts +3 -0
- package/node_modules/@sinclair/typebox/value/index.js +48 -0
- package/node_modules/@sinclair/typebox/value/is.d.ts +10 -0
- package/node_modules/@sinclair/typebox/value/is.js +49 -0
- package/node_modules/@sinclair/typebox/value/pointer.d.ts +24 -0
- package/node_modules/@sinclair/typebox/value/pointer.js +142 -0
- package/node_modules/@sinclair/typebox/value/value.d.ts +31 -0
- package/node_modules/@sinclair/typebox/value/value.js +81 -0
- package/node_modules/@sinonjs/commons/LICENSE +29 -0
- package/node_modules/@sinonjs/commons/README.md +16 -0
- package/node_modules/@sinonjs/commons/lib/called-in-order.js +55 -0
- package/node_modules/@sinonjs/commons/lib/called-in-order.test.js +121 -0
- package/node_modules/@sinonjs/commons/lib/class-name.js +13 -0
- package/node_modules/@sinonjs/commons/lib/class-name.test.js +37 -0
- package/node_modules/@sinonjs/commons/lib/deprecated.js +48 -0
- package/node_modules/@sinonjs/commons/lib/deprecated.test.js +101 -0
- package/node_modules/@sinonjs/commons/lib/every.js +26 -0
- package/node_modules/@sinonjs/commons/lib/every.test.js +41 -0
- package/node_modules/@sinonjs/commons/lib/function-name.js +28 -0
- package/node_modules/@sinonjs/commons/lib/function-name.test.js +76 -0
- package/node_modules/@sinonjs/commons/lib/global.js +21 -0
- package/node_modules/@sinonjs/commons/lib/global.test.js +16 -0
- package/node_modules/@sinonjs/commons/lib/index.js +14 -0
- package/node_modules/@sinonjs/commons/lib/index.test.js +31 -0
- package/node_modules/@sinonjs/commons/lib/order-by-first-call.js +34 -0
- package/node_modules/@sinonjs/commons/lib/order-by-first-call.test.js +52 -0
- package/node_modules/@sinonjs/commons/lib/prototypes/README.md +43 -0
- package/node_modules/@sinonjs/commons/lib/prototypes/array.js +5 -0
- package/node_modules/@sinonjs/commons/lib/prototypes/copy-prototype-methods.js +40 -0
- package/node_modules/@sinonjs/commons/lib/prototypes/copy-prototype-methods.test.js +12 -0
- package/node_modules/@sinonjs/commons/lib/prototypes/function.js +5 -0
- package/node_modules/@sinonjs/commons/lib/prototypes/index.js +10 -0
- package/node_modules/@sinonjs/commons/lib/prototypes/index.test.js +61 -0
- package/node_modules/@sinonjs/commons/lib/prototypes/map.js +5 -0
- package/node_modules/@sinonjs/commons/lib/prototypes/object.js +5 -0
- package/node_modules/@sinonjs/commons/lib/prototypes/set.js +5 -0
- package/node_modules/@sinonjs/commons/lib/prototypes/string.js +5 -0
- package/node_modules/@sinonjs/commons/lib/prototypes/throws-on-proto.js +24 -0
- package/node_modules/@sinonjs/commons/lib/type-of.js +12 -0
- package/node_modules/@sinonjs/commons/lib/type-of.test.js +51 -0
- package/node_modules/@sinonjs/commons/lib/value-to-string.js +16 -0
- package/node_modules/@sinonjs/commons/lib/value-to-string.test.js +20 -0
- package/node_modules/@sinonjs/commons/package.json +57 -0
- package/node_modules/@sinonjs/commons/types/called-in-order.d.ts +34 -0
- package/node_modules/@sinonjs/commons/types/class-name.d.ts +7 -0
- package/node_modules/@sinonjs/commons/types/deprecated.d.ts +3 -0
- package/node_modules/@sinonjs/commons/types/every.d.ts +2 -0
- package/node_modules/@sinonjs/commons/types/function-name.d.ts +2 -0
- package/node_modules/@sinonjs/commons/types/global.d.ts +6 -0
- package/node_modules/@sinonjs/commons/types/index.d.ts +17 -0
- package/node_modules/@sinonjs/commons/types/order-by-first-call.d.ts +24 -0
- package/node_modules/@sinonjs/commons/types/prototypes/array.d.ts +2 -0
- package/node_modules/@sinonjs/commons/types/prototypes/copy-prototype-methods.d.ts +2 -0
- package/node_modules/@sinonjs/commons/types/prototypes/function.d.ts +2 -0
- package/node_modules/@sinonjs/commons/types/prototypes/index.d.ts +7 -0
- package/node_modules/@sinonjs/commons/types/prototypes/map.d.ts +2 -0
- package/node_modules/@sinonjs/commons/types/prototypes/object.d.ts +2 -0
- package/node_modules/@sinonjs/commons/types/prototypes/set.d.ts +2 -0
- package/node_modules/@sinonjs/commons/types/prototypes/string.d.ts +2 -0
- package/node_modules/@sinonjs/commons/types/prototypes/throws-on-proto.d.ts +10 -0
- package/node_modules/@sinonjs/commons/types/type-of.d.ts +2 -0
- package/node_modules/@sinonjs/commons/types/value-to-string.d.ts +7 -0
- package/node_modules/@sinonjs/fake-timers/LICENSE +11 -0
- package/node_modules/@sinonjs/fake-timers/README.md +358 -0
- package/node_modules/@sinonjs/fake-timers/package.json +65 -0
- package/node_modules/@tsconfig/node10/LICENSE +21 -0
- package/node_modules/@tsconfig/node10/README.md +39 -0
- package/node_modules/@tsconfig/node10/package.json +1 -0
- package/node_modules/@tsconfig/node10/tsconfig.json +15 -0
- package/node_modules/@tsconfig/node12/LICENSE +21 -0
- package/node_modules/@tsconfig/node12/README.md +39 -0
- package/node_modules/@tsconfig/node12/package.json +1 -0
- package/node_modules/@tsconfig/node12/tsconfig.json +15 -0
- package/node_modules/@tsconfig/node14/LICENSE +21 -0
- package/node_modules/@tsconfig/node14/README.md +39 -0
- package/node_modules/@tsconfig/node14/package.json +1 -0
- package/node_modules/@tsconfig/node14/tsconfig.json +15 -0
- package/node_modules/@tsconfig/node16/LICENSE +21 -0
- package/node_modules/@tsconfig/node16/README.md +39 -0
- package/node_modules/@tsconfig/node16/package.json +1 -0
- package/node_modules/@tsconfig/node16/tsconfig.json +15 -0
- package/node_modules/@types/babel__core/LICENSE +21 -0
- package/node_modules/@types/babel__core/README.md +16 -0
- package/node_modules/@types/babel__core/index.d.ts +799 -0
- package/node_modules/@types/babel__core/package.json +51 -0
- package/node_modules/@types/babel__generator/LICENSE +21 -0
- package/node_modules/@types/babel__generator/README.md +16 -0
- package/node_modules/@types/babel__generator/index.d.ts +211 -0
- package/node_modules/@types/babel__generator/package.json +42 -0
- package/node_modules/@types/babel__template/LICENSE +21 -0
- package/node_modules/@types/babel__template/README.md +16 -0
- package/node_modules/@types/babel__template/index.d.ts +100 -0
- package/node_modules/@types/babel__template/package.json +43 -0
- package/node_modules/@types/babel__traverse/LICENSE +21 -0
- package/node_modules/@types/babel__traverse/README.md +16 -0
- package/node_modules/@types/babel__traverse/index.d.ts +1172 -0
- package/node_modules/@types/babel__traverse/package.json +69 -0
- package/node_modules/@types/babel__traverse/ts4.1/index.d.ts +1160 -0
- package/node_modules/@types/graceful-fs/LICENSE +21 -0
- package/node_modules/@types/graceful-fs/README.md +16 -0
- package/node_modules/@types/graceful-fs/index.d.ts +19 -0
- package/node_modules/@types/graceful-fs/package.json +31 -0
- package/node_modules/@types/istanbul-lib-coverage/LICENSE +21 -0
- package/node_modules/@types/istanbul-lib-coverage/README.md +16 -0
- package/node_modules/@types/istanbul-lib-coverage/index.d.ts +117 -0
- package/node_modules/@types/istanbul-lib-coverage/package.json +25 -0
- package/node_modules/@types/istanbul-lib-report/LICENSE +21 -0
- package/node_modules/@types/istanbul-lib-report/README.md +16 -0
- package/node_modules/@types/istanbul-lib-report/index.d.ts +191 -0
- package/node_modules/@types/istanbul-lib-report/package.json +31 -0
- package/node_modules/@types/istanbul-reports/LICENSE +21 -0
- package/node_modules/@types/istanbul-reports/README.md +94 -0
- package/node_modules/@types/istanbul-reports/index.d.ts +74 -0
- package/node_modules/@types/istanbul-reports/package.json +32 -0
- package/node_modules/@types/jest/LICENSE +21 -0
- package/node_modules/@types/jest/README.md +16 -0
- package/node_modules/@types/jest/index.d.ts +1748 -0
- package/node_modules/@types/jest/package.json +159 -0
- package/node_modules/@types/lru-cache/LICENSE +21 -0
- package/node_modules/@types/lru-cache/README.md +16 -0
- package/node_modules/@types/lru-cache/index.d.ts +193 -0
- package/node_modules/@types/lru-cache/package.json +30 -0
- package/node_modules/@types/node/LICENSE +21 -0
- package/node_modules/@types/node/README.md +15 -0
- package/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/node_modules/@types/node/assert.d.ts +996 -0
- package/node_modules/@types/node/async_hooks.d.ts +539 -0
- package/node_modules/@types/node/buffer.d.ts +2362 -0
- package/node_modules/@types/node/child_process.d.ts +1540 -0
- package/node_modules/@types/node/cluster.d.ts +432 -0
- package/node_modules/@types/node/console.d.ts +415 -0
- package/node_modules/@types/node/constants.d.ts +19 -0
- package/node_modules/@types/node/crypto.d.ts +4487 -0
- package/node_modules/@types/node/dgram.d.ts +596 -0
- package/node_modules/@types/node/diagnostics_channel.d.ts +545 -0
- package/node_modules/@types/node/dns/promises.d.ts +425 -0
- package/node_modules/@types/node/dns.d.ts +809 -0
- package/node_modules/@types/node/dom-events.d.ts +122 -0
- package/node_modules/@types/node/domain.d.ts +170 -0
- package/node_modules/@types/node/events.d.ts +879 -0
- package/node_modules/@types/node/fs/promises.d.ts +1239 -0
- package/node_modules/@types/node/fs.d.ts +4311 -0
- package/node_modules/@types/node/globals.d.ts +411 -0
- package/node_modules/@types/node/globals.global.d.ts +1 -0
- package/node_modules/@types/node/http.d.ts +1887 -0
- package/node_modules/@types/node/http2.d.ts +2382 -0
- package/node_modules/@types/node/https.d.ts +550 -0
- package/node_modules/@types/node/index.d.ts +88 -0
- package/node_modules/@types/node/inspector.d.ts +2747 -0
- package/node_modules/@types/node/module.d.ts +315 -0
- package/node_modules/@types/node/net.d.ts +949 -0
- package/node_modules/@types/node/os.d.ts +478 -0
- package/node_modules/@types/node/package.json +229 -0
- package/node_modules/@types/node/path.d.ts +191 -0
- package/node_modules/@types/node/perf_hooks.d.ts +645 -0
- package/node_modules/@types/node/process.d.ts +1561 -0
- package/node_modules/@types/node/punycode.d.ts +117 -0
- package/node_modules/@types/node/querystring.d.ts +141 -0
- package/node_modules/@types/node/readline/promises.d.ts +150 -0
- package/node_modules/@types/node/readline.d.ts +539 -0
- package/node_modules/@types/node/repl.d.ts +430 -0
- package/node_modules/@types/node/stream/consumers.d.ts +12 -0
- package/node_modules/@types/node/stream/promises.d.ts +83 -0
- package/node_modules/@types/node/stream/web.d.ts +366 -0
- package/node_modules/@types/node/stream.d.ts +1701 -0
- package/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/node_modules/@types/node/test.d.ts +1465 -0
- package/node_modules/@types/node/timers/promises.d.ts +93 -0
- package/node_modules/@types/node/timers.d.ts +240 -0
- package/node_modules/@types/node/tls.d.ts +1210 -0
- package/node_modules/@types/node/trace_events.d.ts +182 -0
- package/node_modules/@types/node/ts4.8/assert/strict.d.ts +8 -0
- package/node_modules/@types/node/ts4.8/assert.d.ts +996 -0
- package/node_modules/@types/node/ts4.8/async_hooks.d.ts +539 -0
- package/node_modules/@types/node/ts4.8/buffer.d.ts +2362 -0
- package/node_modules/@types/node/ts4.8/child_process.d.ts +1540 -0
- package/node_modules/@types/node/ts4.8/cluster.d.ts +432 -0
- package/node_modules/@types/node/ts4.8/console.d.ts +415 -0
- package/node_modules/@types/node/ts4.8/constants.d.ts +19 -0
- package/node_modules/@types/node/ts4.8/crypto.d.ts +4487 -0
- package/node_modules/@types/node/ts4.8/dgram.d.ts +596 -0
- package/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +545 -0
- package/node_modules/@types/node/ts4.8/dns/promises.d.ts +425 -0
- package/node_modules/@types/node/ts4.8/dns.d.ts +809 -0
- package/node_modules/@types/node/ts4.8/dom-events.d.ts +122 -0
- package/node_modules/@types/node/ts4.8/domain.d.ts +170 -0
- package/node_modules/@types/node/ts4.8/events.d.ts +879 -0
- package/node_modules/@types/node/ts4.8/fs/promises.d.ts +1239 -0
- package/node_modules/@types/node/ts4.8/fs.d.ts +4311 -0
- package/node_modules/@types/node/ts4.8/globals.d.ts +411 -0
- package/node_modules/@types/node/ts4.8/globals.global.d.ts +1 -0
- package/node_modules/@types/node/ts4.8/http.d.ts +1887 -0
- package/node_modules/@types/node/ts4.8/http2.d.ts +2382 -0
- package/node_modules/@types/node/ts4.8/https.d.ts +550 -0
- package/node_modules/@types/node/ts4.8/index.d.ts +88 -0
- package/node_modules/@types/node/ts4.8/inspector.d.ts +2747 -0
- package/node_modules/@types/node/ts4.8/module.d.ts +315 -0
- package/node_modules/@types/node/ts4.8/net.d.ts +949 -0
- package/node_modules/@types/node/ts4.8/os.d.ts +478 -0
- package/node_modules/@types/node/ts4.8/path.d.ts +191 -0
- package/node_modules/@types/node/ts4.8/perf_hooks.d.ts +645 -0
- package/node_modules/@types/node/ts4.8/process.d.ts +1561 -0
- package/node_modules/@types/node/ts4.8/punycode.d.ts +117 -0
- package/node_modules/@types/node/ts4.8/querystring.d.ts +141 -0
- package/node_modules/@types/node/ts4.8/readline/promises.d.ts +150 -0
- package/node_modules/@types/node/ts4.8/readline.d.ts +539 -0
- package/node_modules/@types/node/ts4.8/repl.d.ts +430 -0
- package/node_modules/@types/node/ts4.8/stream/consumers.d.ts +12 -0
- package/node_modules/@types/node/ts4.8/stream/promises.d.ts +83 -0
- package/node_modules/@types/node/ts4.8/stream/web.d.ts +366 -0
- package/node_modules/@types/node/ts4.8/stream.d.ts +1701 -0
- package/node_modules/@types/node/ts4.8/string_decoder.d.ts +67 -0
- package/node_modules/@types/node/ts4.8/test.d.ts +1465 -0
- package/node_modules/@types/node/ts4.8/timers/promises.d.ts +93 -0
- package/node_modules/@types/node/ts4.8/timers.d.ts +240 -0
- package/node_modules/@types/node/ts4.8/tls.d.ts +1210 -0
- package/node_modules/@types/node/ts4.8/trace_events.d.ts +182 -0
- package/node_modules/@types/node/ts4.8/tty.d.ts +208 -0
- package/node_modules/@types/node/ts4.8/url.d.ts +927 -0
- package/node_modules/@types/node/ts4.8/util.d.ts +2183 -0
- package/node_modules/@types/node/ts4.8/v8.d.ts +764 -0
- package/node_modules/@types/node/ts4.8/vm.d.ts +903 -0
- package/node_modules/@types/node/ts4.8/wasi.d.ts +179 -0
- package/node_modules/@types/node/ts4.8/worker_threads.d.ts +691 -0
- package/node_modules/@types/node/ts4.8/zlib.d.ts +517 -0
- package/node_modules/@types/node/tty.d.ts +208 -0
- package/node_modules/@types/node/url.d.ts +927 -0
- package/node_modules/@types/node/util.d.ts +2183 -0
- package/node_modules/@types/node/v8.d.ts +764 -0
- package/node_modules/@types/node/vm.d.ts +903 -0
- package/node_modules/@types/node/wasi.d.ts +179 -0
- package/node_modules/@types/node/worker_threads.d.ts +691 -0
- package/node_modules/@types/node/zlib.d.ts +517 -0
- package/node_modules/@types/stack-utils/LICENSE +21 -0
- package/node_modules/@types/stack-utils/README.md +85 -0
- package/node_modules/@types/stack-utils/index.d.ts +65 -0
- package/node_modules/@types/stack-utils/package.json +25 -0
- package/node_modules/@types/yargs/LICENSE +21 -0
- package/node_modules/@types/yargs/README.md +16 -0
- package/node_modules/@types/yargs/helpers.d.mts +1 -0
- package/node_modules/@types/yargs/helpers.d.ts +5 -0
- package/node_modules/@types/yargs/index.d.mts +43 -0
- package/node_modules/@types/yargs/index.d.ts +906 -0
- package/node_modules/@types/yargs/package.json +94 -0
- package/node_modules/@types/yargs/ts4.1/index.d.ts +857 -0
- package/node_modules/@types/yargs/yargs.d.ts +9 -0
- package/node_modules/@types/yargs-parser/LICENSE +21 -0
- package/node_modules/@types/yargs-parser/README.md +16 -0
- package/node_modules/@types/yargs-parser/index.d.ts +112 -0
- package/node_modules/@types/yargs-parser/package.json +25 -0
- package/package.json +10 -4
- package/src/cache/index.ts +4 -3
- package/src/utils/withNonBusinessDays.test.ts +3 -2
- package/src/utils/withNonBusinessDays.ts +10 -8
|
@@ -0,0 +1,384 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports._guessExecutionStatusRelativeTo = _guessExecutionStatusRelativeTo;
|
|
7
|
+
exports._resolve = _resolve;
|
|
8
|
+
exports.canHaveVariableDeclarationOrExpression = canHaveVariableDeclarationOrExpression;
|
|
9
|
+
exports.canSwapBetweenExpressionAndStatement = canSwapBetweenExpressionAndStatement;
|
|
10
|
+
exports.equals = equals;
|
|
11
|
+
exports.getSource = getSource;
|
|
12
|
+
exports.has = has;
|
|
13
|
+
exports.is = void 0;
|
|
14
|
+
exports.isCompletionRecord = isCompletionRecord;
|
|
15
|
+
exports.isConstantExpression = isConstantExpression;
|
|
16
|
+
exports.isInStrictMode = isInStrictMode;
|
|
17
|
+
exports.isNodeType = isNodeType;
|
|
18
|
+
exports.isStatementOrBlock = isStatementOrBlock;
|
|
19
|
+
exports.isStatic = isStatic;
|
|
20
|
+
exports.isnt = isnt;
|
|
21
|
+
exports.matchesPattern = matchesPattern;
|
|
22
|
+
exports.referencesImport = referencesImport;
|
|
23
|
+
exports.resolve = resolve;
|
|
24
|
+
exports.willIMaybeExecuteBefore = willIMaybeExecuteBefore;
|
|
25
|
+
var _t = require("@babel/types");
|
|
26
|
+
const {
|
|
27
|
+
STATEMENT_OR_BLOCK_KEYS,
|
|
28
|
+
VISITOR_KEYS,
|
|
29
|
+
isBlockStatement,
|
|
30
|
+
isExpression,
|
|
31
|
+
isIdentifier,
|
|
32
|
+
isLiteral,
|
|
33
|
+
isStringLiteral,
|
|
34
|
+
isType,
|
|
35
|
+
matchesPattern: _matchesPattern
|
|
36
|
+
} = _t;
|
|
37
|
+
function matchesPattern(pattern, allowPartial) {
|
|
38
|
+
return _matchesPattern(this.node, pattern, allowPartial);
|
|
39
|
+
}
|
|
40
|
+
function has(key) {
|
|
41
|
+
const val = this.node && this.node[key];
|
|
42
|
+
if (val && Array.isArray(val)) {
|
|
43
|
+
return !!val.length;
|
|
44
|
+
} else {
|
|
45
|
+
return !!val;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
function isStatic() {
|
|
49
|
+
return this.scope.isStatic(this.node);
|
|
50
|
+
}
|
|
51
|
+
const is = exports.is = has;
|
|
52
|
+
function isnt(key) {
|
|
53
|
+
return !this.has(key);
|
|
54
|
+
}
|
|
55
|
+
function equals(key, value) {
|
|
56
|
+
return this.node[key] === value;
|
|
57
|
+
}
|
|
58
|
+
function isNodeType(type) {
|
|
59
|
+
return isType(this.type, type);
|
|
60
|
+
}
|
|
61
|
+
function canHaveVariableDeclarationOrExpression() {
|
|
62
|
+
return (this.key === "init" || this.key === "left") && this.parentPath.isFor();
|
|
63
|
+
}
|
|
64
|
+
function canSwapBetweenExpressionAndStatement(replacement) {
|
|
65
|
+
if (this.key !== "body" || !this.parentPath.isArrowFunctionExpression()) {
|
|
66
|
+
return false;
|
|
67
|
+
}
|
|
68
|
+
if (this.isExpression()) {
|
|
69
|
+
return isBlockStatement(replacement);
|
|
70
|
+
} else if (this.isBlockStatement()) {
|
|
71
|
+
return isExpression(replacement);
|
|
72
|
+
}
|
|
73
|
+
return false;
|
|
74
|
+
}
|
|
75
|
+
function isCompletionRecord(allowInsideFunction) {
|
|
76
|
+
let path = this;
|
|
77
|
+
let first = true;
|
|
78
|
+
do {
|
|
79
|
+
const {
|
|
80
|
+
type,
|
|
81
|
+
container
|
|
82
|
+
} = path;
|
|
83
|
+
if (!first && (path.isFunction() || type === "StaticBlock")) {
|
|
84
|
+
return !!allowInsideFunction;
|
|
85
|
+
}
|
|
86
|
+
first = false;
|
|
87
|
+
if (Array.isArray(container) && path.key !== container.length - 1) {
|
|
88
|
+
return false;
|
|
89
|
+
}
|
|
90
|
+
} while ((path = path.parentPath) && !path.isProgram() && !path.isDoExpression());
|
|
91
|
+
return true;
|
|
92
|
+
}
|
|
93
|
+
function isStatementOrBlock() {
|
|
94
|
+
if (this.parentPath.isLabeledStatement() || isBlockStatement(this.container)) {
|
|
95
|
+
return false;
|
|
96
|
+
} else {
|
|
97
|
+
return STATEMENT_OR_BLOCK_KEYS.includes(this.key);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
function referencesImport(moduleSource, importName) {
|
|
101
|
+
if (!this.isReferencedIdentifier()) {
|
|
102
|
+
if (this.isJSXMemberExpression() && this.node.property.name === importName || (this.isMemberExpression() || this.isOptionalMemberExpression()) && (this.node.computed ? isStringLiteral(this.node.property, {
|
|
103
|
+
value: importName
|
|
104
|
+
}) : this.node.property.name === importName)) {
|
|
105
|
+
const object = this.get("object");
|
|
106
|
+
return object.isReferencedIdentifier() && object.referencesImport(moduleSource, "*");
|
|
107
|
+
}
|
|
108
|
+
return false;
|
|
109
|
+
}
|
|
110
|
+
const binding = this.scope.getBinding(this.node.name);
|
|
111
|
+
if (!binding || binding.kind !== "module") return false;
|
|
112
|
+
const path = binding.path;
|
|
113
|
+
const parent = path.parentPath;
|
|
114
|
+
if (!parent.isImportDeclaration()) return false;
|
|
115
|
+
if (parent.node.source.value === moduleSource) {
|
|
116
|
+
if (!importName) return true;
|
|
117
|
+
} else {
|
|
118
|
+
return false;
|
|
119
|
+
}
|
|
120
|
+
if (path.isImportDefaultSpecifier() && importName === "default") {
|
|
121
|
+
return true;
|
|
122
|
+
}
|
|
123
|
+
if (path.isImportNamespaceSpecifier() && importName === "*") {
|
|
124
|
+
return true;
|
|
125
|
+
}
|
|
126
|
+
if (path.isImportSpecifier() && isIdentifier(path.node.imported, {
|
|
127
|
+
name: importName
|
|
128
|
+
})) {
|
|
129
|
+
return true;
|
|
130
|
+
}
|
|
131
|
+
return false;
|
|
132
|
+
}
|
|
133
|
+
function getSource() {
|
|
134
|
+
const node = this.node;
|
|
135
|
+
if (node.end) {
|
|
136
|
+
const code = this.hub.getCode();
|
|
137
|
+
if (code) return code.slice(node.start, node.end);
|
|
138
|
+
}
|
|
139
|
+
return "";
|
|
140
|
+
}
|
|
141
|
+
function willIMaybeExecuteBefore(target) {
|
|
142
|
+
return this._guessExecutionStatusRelativeTo(target) !== "after";
|
|
143
|
+
}
|
|
144
|
+
function getOuterFunction(path) {
|
|
145
|
+
return path.isProgram() ? path : (path.parentPath.scope.getFunctionParent() || path.parentPath.scope.getProgramParent()).path;
|
|
146
|
+
}
|
|
147
|
+
function isExecutionUncertain(type, key) {
|
|
148
|
+
switch (type) {
|
|
149
|
+
case "LogicalExpression":
|
|
150
|
+
return key === "right";
|
|
151
|
+
case "ConditionalExpression":
|
|
152
|
+
case "IfStatement":
|
|
153
|
+
return key === "consequent" || key === "alternate";
|
|
154
|
+
case "WhileStatement":
|
|
155
|
+
case "DoWhileStatement":
|
|
156
|
+
case "ForInStatement":
|
|
157
|
+
case "ForOfStatement":
|
|
158
|
+
return key === "body";
|
|
159
|
+
case "ForStatement":
|
|
160
|
+
return key === "body" || key === "update";
|
|
161
|
+
case "SwitchStatement":
|
|
162
|
+
return key === "cases";
|
|
163
|
+
case "TryStatement":
|
|
164
|
+
return key === "handler";
|
|
165
|
+
case "AssignmentPattern":
|
|
166
|
+
return key === "right";
|
|
167
|
+
case "OptionalMemberExpression":
|
|
168
|
+
return key === "property";
|
|
169
|
+
case "OptionalCallExpression":
|
|
170
|
+
return key === "arguments";
|
|
171
|
+
default:
|
|
172
|
+
return false;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
function isExecutionUncertainInList(paths, maxIndex) {
|
|
176
|
+
for (let i = 0; i < maxIndex; i++) {
|
|
177
|
+
const path = paths[i];
|
|
178
|
+
if (isExecutionUncertain(path.parent.type, path.parentKey)) {
|
|
179
|
+
return true;
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
return false;
|
|
183
|
+
}
|
|
184
|
+
const SYMBOL_CHECKING = Symbol();
|
|
185
|
+
function _guessExecutionStatusRelativeTo(target) {
|
|
186
|
+
return _guessExecutionStatusRelativeToCached(this, target, new Map());
|
|
187
|
+
}
|
|
188
|
+
function _guessExecutionStatusRelativeToCached(base, target, cache) {
|
|
189
|
+
const funcParent = {
|
|
190
|
+
this: getOuterFunction(base),
|
|
191
|
+
target: getOuterFunction(target)
|
|
192
|
+
};
|
|
193
|
+
if (funcParent.target.node !== funcParent.this.node) {
|
|
194
|
+
return _guessExecutionStatusRelativeToDifferentFunctionsCached(base, funcParent.target, cache);
|
|
195
|
+
}
|
|
196
|
+
const paths = {
|
|
197
|
+
target: target.getAncestry(),
|
|
198
|
+
this: base.getAncestry()
|
|
199
|
+
};
|
|
200
|
+
if (paths.target.indexOf(base) >= 0) return "after";
|
|
201
|
+
if (paths.this.indexOf(target) >= 0) return "before";
|
|
202
|
+
let commonPath;
|
|
203
|
+
const commonIndex = {
|
|
204
|
+
target: 0,
|
|
205
|
+
this: 0
|
|
206
|
+
};
|
|
207
|
+
while (!commonPath && commonIndex.this < paths.this.length) {
|
|
208
|
+
const path = paths.this[commonIndex.this];
|
|
209
|
+
commonIndex.target = paths.target.indexOf(path);
|
|
210
|
+
if (commonIndex.target >= 0) {
|
|
211
|
+
commonPath = path;
|
|
212
|
+
} else {
|
|
213
|
+
commonIndex.this++;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
if (!commonPath) {
|
|
217
|
+
throw new Error("Internal Babel error - The two compared nodes" + " don't appear to belong to the same program.");
|
|
218
|
+
}
|
|
219
|
+
if (isExecutionUncertainInList(paths.this, commonIndex.this - 1) || isExecutionUncertainInList(paths.target, commonIndex.target - 1)) {
|
|
220
|
+
return "unknown";
|
|
221
|
+
}
|
|
222
|
+
const divergence = {
|
|
223
|
+
this: paths.this[commonIndex.this - 1],
|
|
224
|
+
target: paths.target[commonIndex.target - 1]
|
|
225
|
+
};
|
|
226
|
+
if (divergence.target.listKey && divergence.this.listKey && divergence.target.container === divergence.this.container) {
|
|
227
|
+
return divergence.target.key > divergence.this.key ? "before" : "after";
|
|
228
|
+
}
|
|
229
|
+
const keys = VISITOR_KEYS[commonPath.type];
|
|
230
|
+
const keyPosition = {
|
|
231
|
+
this: keys.indexOf(divergence.this.parentKey),
|
|
232
|
+
target: keys.indexOf(divergence.target.parentKey)
|
|
233
|
+
};
|
|
234
|
+
return keyPosition.target > keyPosition.this ? "before" : "after";
|
|
235
|
+
}
|
|
236
|
+
function _guessExecutionStatusRelativeToDifferentFunctionsInternal(base, target, cache) {
|
|
237
|
+
if (!target.isFunctionDeclaration()) {
|
|
238
|
+
if (_guessExecutionStatusRelativeToCached(base, target, cache) === "before") {
|
|
239
|
+
return "before";
|
|
240
|
+
}
|
|
241
|
+
return "unknown";
|
|
242
|
+
} else if (target.parentPath.isExportDeclaration()) {
|
|
243
|
+
return "unknown";
|
|
244
|
+
}
|
|
245
|
+
const binding = target.scope.getBinding(target.node.id.name);
|
|
246
|
+
if (!binding.references) return "before";
|
|
247
|
+
const referencePaths = binding.referencePaths;
|
|
248
|
+
let allStatus;
|
|
249
|
+
for (const path of referencePaths) {
|
|
250
|
+
const childOfFunction = !!path.find(path => path.node === target.node);
|
|
251
|
+
if (childOfFunction) continue;
|
|
252
|
+
if (path.key !== "callee" || !path.parentPath.isCallExpression()) {
|
|
253
|
+
return "unknown";
|
|
254
|
+
}
|
|
255
|
+
const status = _guessExecutionStatusRelativeToCached(base, path, cache);
|
|
256
|
+
if (allStatus && allStatus !== status) {
|
|
257
|
+
return "unknown";
|
|
258
|
+
} else {
|
|
259
|
+
allStatus = status;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
return allStatus;
|
|
263
|
+
}
|
|
264
|
+
function _guessExecutionStatusRelativeToDifferentFunctionsCached(base, target, cache) {
|
|
265
|
+
let nodeMap = cache.get(base.node);
|
|
266
|
+
let cached;
|
|
267
|
+
if (!nodeMap) {
|
|
268
|
+
cache.set(base.node, nodeMap = new Map());
|
|
269
|
+
} else if (cached = nodeMap.get(target.node)) {
|
|
270
|
+
if (cached === SYMBOL_CHECKING) {
|
|
271
|
+
return "unknown";
|
|
272
|
+
}
|
|
273
|
+
return cached;
|
|
274
|
+
}
|
|
275
|
+
nodeMap.set(target.node, SYMBOL_CHECKING);
|
|
276
|
+
const result = _guessExecutionStatusRelativeToDifferentFunctionsInternal(base, target, cache);
|
|
277
|
+
nodeMap.set(target.node, result);
|
|
278
|
+
return result;
|
|
279
|
+
}
|
|
280
|
+
function resolve(dangerous, resolved) {
|
|
281
|
+
return this._resolve(dangerous, resolved) || this;
|
|
282
|
+
}
|
|
283
|
+
function _resolve(dangerous, resolved) {
|
|
284
|
+
if (resolved && resolved.indexOf(this) >= 0) return;
|
|
285
|
+
resolved = resolved || [];
|
|
286
|
+
resolved.push(this);
|
|
287
|
+
if (this.isVariableDeclarator()) {
|
|
288
|
+
if (this.get("id").isIdentifier()) {
|
|
289
|
+
return this.get("init").resolve(dangerous, resolved);
|
|
290
|
+
} else {}
|
|
291
|
+
} else if (this.isReferencedIdentifier()) {
|
|
292
|
+
const binding = this.scope.getBinding(this.node.name);
|
|
293
|
+
if (!binding) return;
|
|
294
|
+
if (!binding.constant) return;
|
|
295
|
+
if (binding.kind === "module") return;
|
|
296
|
+
if (binding.path !== this) {
|
|
297
|
+
const ret = binding.path.resolve(dangerous, resolved);
|
|
298
|
+
if (this.find(parent => parent.node === ret.node)) return;
|
|
299
|
+
return ret;
|
|
300
|
+
}
|
|
301
|
+
} else if (this.isTypeCastExpression()) {
|
|
302
|
+
return this.get("expression").resolve(dangerous, resolved);
|
|
303
|
+
} else if (dangerous && this.isMemberExpression()) {
|
|
304
|
+
const targetKey = this.toComputedKey();
|
|
305
|
+
if (!isLiteral(targetKey)) return;
|
|
306
|
+
const targetName = targetKey.value;
|
|
307
|
+
const target = this.get("object").resolve(dangerous, resolved);
|
|
308
|
+
if (target.isObjectExpression()) {
|
|
309
|
+
const props = target.get("properties");
|
|
310
|
+
for (const prop of props) {
|
|
311
|
+
if (!prop.isProperty()) continue;
|
|
312
|
+
const key = prop.get("key");
|
|
313
|
+
let match = prop.isnt("computed") && key.isIdentifier({
|
|
314
|
+
name: targetName
|
|
315
|
+
});
|
|
316
|
+
match = match || key.isLiteral({
|
|
317
|
+
value: targetName
|
|
318
|
+
});
|
|
319
|
+
if (match) return prop.get("value").resolve(dangerous, resolved);
|
|
320
|
+
}
|
|
321
|
+
} else if (target.isArrayExpression() && !isNaN(+targetName)) {
|
|
322
|
+
const elems = target.get("elements");
|
|
323
|
+
const elem = elems[targetName];
|
|
324
|
+
if (elem) return elem.resolve(dangerous, resolved);
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
function isConstantExpression() {
|
|
329
|
+
if (this.isIdentifier()) {
|
|
330
|
+
const binding = this.scope.getBinding(this.node.name);
|
|
331
|
+
if (!binding) return false;
|
|
332
|
+
return binding.constant;
|
|
333
|
+
}
|
|
334
|
+
if (this.isLiteral()) {
|
|
335
|
+
if (this.isRegExpLiteral()) {
|
|
336
|
+
return false;
|
|
337
|
+
}
|
|
338
|
+
if (this.isTemplateLiteral()) {
|
|
339
|
+
return this.get("expressions").every(expression => expression.isConstantExpression());
|
|
340
|
+
}
|
|
341
|
+
return true;
|
|
342
|
+
}
|
|
343
|
+
if (this.isUnaryExpression()) {
|
|
344
|
+
if (this.node.operator !== "void") {
|
|
345
|
+
return false;
|
|
346
|
+
}
|
|
347
|
+
return this.get("argument").isConstantExpression();
|
|
348
|
+
}
|
|
349
|
+
if (this.isBinaryExpression()) {
|
|
350
|
+
const {
|
|
351
|
+
operator
|
|
352
|
+
} = this.node;
|
|
353
|
+
return operator !== "in" && operator !== "instanceof" && this.get("left").isConstantExpression() && this.get("right").isConstantExpression();
|
|
354
|
+
}
|
|
355
|
+
return false;
|
|
356
|
+
}
|
|
357
|
+
function isInStrictMode() {
|
|
358
|
+
const start = this.isProgram() ? this : this.parentPath;
|
|
359
|
+
const strictParent = start.find(path => {
|
|
360
|
+
if (path.isProgram({
|
|
361
|
+
sourceType: "module"
|
|
362
|
+
})) return true;
|
|
363
|
+
if (path.isClass()) return true;
|
|
364
|
+
if (path.isArrowFunctionExpression() && !path.get("body").isBlockStatement()) {
|
|
365
|
+
return false;
|
|
366
|
+
}
|
|
367
|
+
let body;
|
|
368
|
+
if (path.isFunction()) {
|
|
369
|
+
body = path.node.body;
|
|
370
|
+
} else if (path.isProgram()) {
|
|
371
|
+
body = path.node;
|
|
372
|
+
} else {
|
|
373
|
+
return false;
|
|
374
|
+
}
|
|
375
|
+
for (const directive of body.directives) {
|
|
376
|
+
if (directive.value.value === "use strict") {
|
|
377
|
+
return true;
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
});
|
|
381
|
+
return !!strictParent;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
//# sourceMappingURL=introspection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_t","require","STATEMENT_OR_BLOCK_KEYS","VISITOR_KEYS","isBlockStatement","isExpression","isIdentifier","isLiteral","isStringLiteral","isType","matchesPattern","_matchesPattern","pattern","allowPartial","node","has","key","val","Array","isArray","length","isStatic","scope","is","exports","isnt","equals","value","isNodeType","type","canHaveVariableDeclarationOrExpression","parentPath","isFor","canSwapBetweenExpressionAndStatement","replacement","isArrowFunctionExpression","isCompletionRecord","allowInsideFunction","path","first","container","isFunction","isProgram","isDoExpression","isStatementOrBlock","isLabeledStatement","includes","referencesImport","moduleSource","importName","isReferencedIdentifier","isJSXMemberExpression","property","name","isMemberExpression","isOptionalMemberExpression","computed","object","get","binding","getBinding","kind","parent","isImportDeclaration","source","isImportDefaultSpecifier","isImportNamespaceSpecifier","isImportSpecifier","imported","getSource","end","code","hub","getCode","slice","start","willIMaybeExecuteBefore","target","_guessExecutionStatusRelativeTo","getOuterFunction","getFunctionParent","getProgramParent","isExecutionUncertain","isExecutionUncertainInList","paths","maxIndex","i","parentKey","SYMBOL_CHECKING","Symbol","_guessExecutionStatusRelativeToCached","Map","base","cache","funcParent","this","_guessExecutionStatusRelativeToDifferentFunctionsCached","getAncestry","indexOf","commonPath","commonIndex","Error","divergence","listKey","keys","keyPosition","_guessExecutionStatusRelativeToDifferentFunctionsInternal","isFunctionDeclaration","isExportDeclaration","id","references","referencePaths","allStatus","childOfFunction","find","isCallExpression","status","nodeMap","cached","set","result","resolve","dangerous","resolved","_resolve","push","isVariableDeclarator","constant","ret","isTypeCastExpression","targetKey","toComputedKey","targetName","isObjectExpression","props","prop","isProperty","match","isArrayExpression","isNaN","elems","elem","isConstantExpression","isRegExpLiteral","isTemplateLiteral","every","expression","isUnaryExpression","operator","isBinaryExpression","isInStrictMode","strictParent","sourceType","isClass","body","directive","directives"],"sources":["../../src/path/introspection.ts"],"sourcesContent":["// This file contains methods responsible for introspecting the current path for certain values.\n\nimport type NodePath from \"./index.ts\";\nimport {\n STATEMENT_OR_BLOCK_KEYS,\n VISITOR_KEYS,\n isBlockStatement,\n isExpression,\n isIdentifier,\n isLiteral,\n isStringLiteral,\n isType,\n matchesPattern as _matchesPattern,\n} from \"@babel/types\";\nimport type * as t from \"@babel/types\";\n\n/**\n * Match the current node if it matches the provided `pattern`.\n *\n * For example, given the match `React.createClass` it would match the\n * parsed nodes of `React.createClass` and `React[\"createClass\"]`.\n */\n\nexport function matchesPattern(\n this: NodePath,\n pattern: string,\n allowPartial?: boolean,\n): boolean {\n return _matchesPattern(this.node, pattern, allowPartial);\n}\n\n/**\n * Check whether we have the input `key`. If the `key` references an array then we check\n * if the array has any items, otherwise we just check if it's falsy.\n */\n\nexport function has<N extends t.Node>(\n this: NodePath<N>,\n key: keyof N,\n): boolean {\n const val = this.node && this.node[key];\n if (val && Array.isArray(val)) {\n return !!val.length;\n } else {\n return !!val;\n }\n}\n\n/**\n * Description\n */\n\nexport function isStatic(this: NodePath): boolean {\n return this.scope.isStatic(this.node);\n}\n\n/**\n * Alias of `has`.\n */\n\nexport const is = has;\n\n/**\n * Opposite of `has`.\n */\n\nexport function isnt<N extends t.Node>(\n this: NodePath<N>,\n key: keyof N,\n): boolean {\n return !this.has(key);\n}\n\n/**\n * Check whether the path node `key` strict equals `value`.\n */\n\nexport function equals<N extends t.Node>(\n this: NodePath<N>,\n key: keyof N,\n value: any,\n): boolean {\n return this.node[key] === value;\n}\n\n/**\n * Check the type against our stored internal type of the node. This is handy when a node has\n * been removed yet we still internally know the type and need it to calculate node replacement.\n */\n\nexport function isNodeType(this: NodePath, type: string): boolean {\n return isType(this.type, type);\n}\n\n/**\n * This checks whether or not we're in one of the following positions:\n *\n * for (KEY in right);\n * for (KEY;;);\n *\n * This is because these spots allow VariableDeclarations AND normal expressions so we need\n * to tell the path replacement that it's ok to replace this with an expression.\n */\n\nexport function canHaveVariableDeclarationOrExpression(this: NodePath) {\n return (\n (this.key === \"init\" || this.key === \"left\") && this.parentPath.isFor()\n );\n}\n\n/**\n * This checks whether we are swapping an arrow function's body between an\n * expression and a block statement (or vice versa).\n *\n * This is because arrow functions may implicitly return an expression, which\n * is the same as containing a block statement.\n */\n\nexport function canSwapBetweenExpressionAndStatement(\n this: NodePath,\n replacement: t.Node,\n): boolean {\n if (this.key !== \"body\" || !this.parentPath.isArrowFunctionExpression()) {\n return false;\n }\n\n if (this.isExpression()) {\n return isBlockStatement(replacement);\n } else if (this.isBlockStatement()) {\n return isExpression(replacement);\n }\n\n return false;\n}\n\n/**\n * Check whether the current path references a completion record\n */\n\nexport function isCompletionRecord(\n this: NodePath,\n allowInsideFunction?: boolean,\n): boolean {\n let path = this;\n let first = true;\n\n do {\n const { type, container } = path;\n\n // we're in a function so can't be a completion record\n if (!first && (path.isFunction() || type === \"StaticBlock\")) {\n return !!allowInsideFunction;\n }\n\n first = false;\n\n // check to see if we're the last item in the container and if we are\n // we're a completion record!\n if (Array.isArray(container) && path.key !== container.length - 1) {\n return false;\n }\n } while (\n (path = path.parentPath) &&\n !path.isProgram() &&\n !path.isDoExpression()\n );\n\n return true;\n}\n\n/**\n * Check whether or not the current `key` allows either a single statement or block statement\n * so we can explode it if necessary.\n */\n\nexport function isStatementOrBlock(this: NodePath): boolean {\n if (\n this.parentPath.isLabeledStatement() ||\n isBlockStatement(this.container as t.Node)\n ) {\n return false;\n } else {\n return STATEMENT_OR_BLOCK_KEYS.includes(this.key as string);\n }\n}\n\n/**\n * Check if the currently assigned path references the `importName` of `moduleSource`.\n */\n\nexport function referencesImport(\n this: NodePath,\n moduleSource: string,\n importName: string,\n): boolean {\n if (!this.isReferencedIdentifier()) {\n if (\n (this.isJSXMemberExpression() &&\n this.node.property.name === importName) ||\n ((this.isMemberExpression() || this.isOptionalMemberExpression()) &&\n (this.node.computed\n ? isStringLiteral(this.node.property, { value: importName })\n : (this.node.property as t.Identifier).name === importName))\n ) {\n const object = (\n this as NodePath<t.MemberExpression | t.OptionalMemberExpression>\n ).get(\"object\");\n return (\n object.isReferencedIdentifier() &&\n object.referencesImport(moduleSource, \"*\")\n );\n }\n\n return false;\n }\n\n const binding = this.scope.getBinding((this.node as t.Identifier).name);\n if (!binding || binding.kind !== \"module\") return false;\n\n const path = binding.path;\n const parent = path.parentPath;\n if (!parent.isImportDeclaration()) return false;\n\n // check moduleSource\n if (parent.node.source.value === moduleSource) {\n if (!importName) return true;\n } else {\n return false;\n }\n\n if (path.isImportDefaultSpecifier() && importName === \"default\") {\n return true;\n }\n\n if (path.isImportNamespaceSpecifier() && importName === \"*\") {\n return true;\n }\n\n if (\n path.isImportSpecifier() &&\n isIdentifier(path.node.imported, { name: importName })\n ) {\n return true;\n }\n\n return false;\n}\n\n/**\n * Get the source code associated with this node.\n */\n\nexport function getSource(this: NodePath): string {\n const node = this.node;\n if (node.end) {\n const code = this.hub.getCode();\n if (code) return code.slice(node.start, node.end);\n }\n return \"\";\n}\n\nexport function willIMaybeExecuteBefore(\n this: NodePath,\n target: NodePath,\n): boolean {\n return this._guessExecutionStatusRelativeTo(target) !== \"after\";\n}\n\nfunction getOuterFunction(path: NodePath) {\n return path.isProgram()\n ? path\n : (\n path.parentPath.scope.getFunctionParent() ||\n path.parentPath.scope.getProgramParent()\n ).path;\n}\n\nfunction isExecutionUncertain(type: t.Node[\"type\"], key: string) {\n switch (type) {\n // a && FOO\n // a || FOO\n case \"LogicalExpression\":\n return key === \"right\";\n\n // a ? FOO : FOO\n // if (a) FOO; else FOO;\n case \"ConditionalExpression\":\n case \"IfStatement\":\n return key === \"consequent\" || key === \"alternate\";\n\n // while (a) FOO;\n case \"WhileStatement\":\n case \"DoWhileStatement\":\n case \"ForInStatement\":\n case \"ForOfStatement\":\n return key === \"body\";\n\n // for (a; b; FOO) FOO;\n case \"ForStatement\":\n return key === \"body\" || key === \"update\";\n\n // switch (a) { FOO }\n case \"SwitchStatement\":\n return key === \"cases\";\n\n // try { a } catch FOO finally { b }\n case \"TryStatement\":\n return key === \"handler\";\n\n // var [ x = FOO ]\n case \"AssignmentPattern\":\n return key === \"right\";\n\n // a?.[FOO]\n case \"OptionalMemberExpression\":\n return key === \"property\";\n\n // a?.(FOO)\n case \"OptionalCallExpression\":\n return key === \"arguments\";\n\n default:\n return false;\n }\n}\n\nfunction isExecutionUncertainInList(paths: NodePath[], maxIndex: number) {\n for (let i = 0; i < maxIndex; i++) {\n const path = paths[i];\n if (isExecutionUncertain(path.parent.type, path.parentKey)) {\n return true;\n }\n }\n return false;\n}\n\n// TODO(Babel 8)\n// This can be { before: boolean, after: boolean, unknown: boolean }.\n// This allows transforms like the tdz one to treat cases when the status\n// is both before and unknown/after like if it were before.\ntype RelativeExecutionStatus = \"before\" | \"after\" | \"unknown\";\n\n// Used to avoid infinite recursion in cases like\n// function f() { if (false) f(); }\n// f();\n// It also works with indirect recursion.\nconst SYMBOL_CHECKING = Symbol();\n\ntype ExecutionStatusCache = Map<\n t.Node,\n Map<t.Node, RelativeExecutionStatus | typeof SYMBOL_CHECKING>\n>;\n\n/**\n * Given a `target` check the execution status of it relative to the current path.\n *\n * \"Execution status\" simply refers to where or not we **think** this will execute\n * before or after the input `target` element.\n */\n\nexport function _guessExecutionStatusRelativeTo(\n this: NodePath,\n target: NodePath,\n): RelativeExecutionStatus {\n return _guessExecutionStatusRelativeToCached(this, target, new Map());\n}\n\nfunction _guessExecutionStatusRelativeToCached(\n base: NodePath,\n target: NodePath,\n cache: ExecutionStatusCache,\n): RelativeExecutionStatus {\n // check if the two paths are in different functions, we can't track execution of these\n const funcParent = {\n this: getOuterFunction(base),\n target: getOuterFunction(target),\n };\n\n // here we check the `node` equality as sometimes we may have different paths for the\n // same node due to path thrashing\n if (funcParent.target.node !== funcParent.this.node) {\n return _guessExecutionStatusRelativeToDifferentFunctionsCached(\n base,\n funcParent.target,\n cache,\n );\n }\n\n const paths = {\n target: target.getAncestry(),\n this: base.getAncestry(),\n };\n\n // If this is an ancestor of the target path,\n // e.g. f(g); where this is f and target is g.\n if (paths.target.indexOf(base) >= 0) return \"after\";\n if (paths.this.indexOf(target) >= 0) return \"before\";\n\n // get ancestor where the branches intersect\n let commonPath;\n const commonIndex = { target: 0, this: 0 };\n\n while (!commonPath && commonIndex.this < paths.this.length) {\n const path = paths.this[commonIndex.this];\n commonIndex.target = paths.target.indexOf(path);\n if (commonIndex.target >= 0) {\n commonPath = path;\n } else {\n commonIndex.this++;\n }\n }\n\n if (!commonPath) {\n throw new Error(\n \"Internal Babel error - The two compared nodes\" +\n \" don't appear to belong to the same program.\",\n );\n }\n\n if (\n isExecutionUncertainInList(paths.this, commonIndex.this - 1) ||\n isExecutionUncertainInList(paths.target, commonIndex.target - 1)\n ) {\n return \"unknown\";\n }\n\n const divergence = {\n this: paths.this[commonIndex.this - 1],\n target: paths.target[commonIndex.target - 1],\n };\n\n // container list so let's see which one is after the other\n // e.g. [ THIS, TARGET ]\n if (\n divergence.target.listKey &&\n divergence.this.listKey &&\n divergence.target.container === divergence.this.container\n ) {\n return divergence.target.key > divergence.this.key ? \"before\" : \"after\";\n }\n\n // otherwise we're associated by a parent node, check which key comes before the other\n const keys = VISITOR_KEYS[commonPath.type];\n const keyPosition = {\n this: keys.indexOf(divergence.this.parentKey),\n target: keys.indexOf(divergence.target.parentKey),\n };\n return keyPosition.target > keyPosition.this ? \"before\" : \"after\";\n}\n\nfunction _guessExecutionStatusRelativeToDifferentFunctionsInternal(\n base: NodePath,\n target: NodePath,\n cache: ExecutionStatusCache,\n): RelativeExecutionStatus {\n if (!target.isFunctionDeclaration()) {\n if (\n _guessExecutionStatusRelativeToCached(base, target, cache) === \"before\"\n ) {\n return \"before\";\n }\n return \"unknown\";\n } else if (target.parentPath.isExportDeclaration()) {\n return \"unknown\";\n }\n\n // so we're in a completely different function, if this is a function declaration\n // then we can be a bit smarter and handle cases where the function is either\n // a. not called at all (part of an export)\n // b. called directly\n const binding = target.scope.getBinding(target.node.id.name);\n\n // no references!\n if (!binding.references) return \"before\";\n\n const referencePaths: Array<NodePath> = binding.referencePaths;\n\n let allStatus;\n\n // verify that all the calls have the same execution status\n for (const path of referencePaths) {\n // if a reference is a child of the function we're checking against then we can\n // safely ignore it\n const childOfFunction = !!path.find(path => path.node === target.node);\n if (childOfFunction) continue;\n\n if (path.key !== \"callee\" || !path.parentPath.isCallExpression()) {\n // This function is passed as a reference, so we don't\n // know when it will be called.\n return \"unknown\";\n }\n\n const status = _guessExecutionStatusRelativeToCached(base, path, cache);\n\n if (allStatus && allStatus !== status) {\n return \"unknown\";\n } else {\n allStatus = status;\n }\n }\n\n return allStatus;\n}\n\nfunction _guessExecutionStatusRelativeToDifferentFunctionsCached(\n base: NodePath,\n target: NodePath,\n cache: ExecutionStatusCache,\n): RelativeExecutionStatus {\n let nodeMap = cache.get(base.node);\n let cached;\n\n if (!nodeMap) {\n cache.set(base.node, (nodeMap = new Map()));\n } else if ((cached = nodeMap.get(target.node))) {\n if (cached === SYMBOL_CHECKING) {\n return \"unknown\";\n }\n return cached;\n }\n\n nodeMap.set(target.node, SYMBOL_CHECKING);\n\n const result = _guessExecutionStatusRelativeToDifferentFunctionsInternal(\n base,\n target,\n cache,\n );\n\n nodeMap.set(target.node, result);\n return result;\n}\n\n/**\n * Resolve a \"pointer\" `NodePath` to it's absolute path.\n */\nexport function resolve(\n this: NodePath,\n dangerous?: boolean,\n resolved?: NodePath[],\n) {\n return this._resolve(dangerous, resolved) || this;\n}\n\nexport function _resolve(\n this: NodePath,\n dangerous?: boolean,\n resolved?: NodePath[],\n): NodePath | undefined | null {\n // detect infinite recursion\n // todo: possibly have a max length on this just to be safe\n if (resolved && resolved.indexOf(this) >= 0) return;\n\n // we store all the paths we've \"resolved\" in this array to prevent infinite recursion\n resolved = resolved || [];\n resolved.push(this);\n\n if (this.isVariableDeclarator()) {\n if (this.get(\"id\").isIdentifier()) {\n return this.get(\"init\").resolve(dangerous, resolved);\n } else {\n // otherwise it's a request for a pattern and that's a bit more tricky\n }\n } else if (this.isReferencedIdentifier()) {\n const binding = this.scope.getBinding(this.node.name);\n if (!binding) return;\n\n // reassigned so we can't really resolve it\n if (!binding.constant) return;\n\n // todo - lookup module in dependency graph\n if (binding.kind === \"module\") return;\n\n if (binding.path !== this) {\n const ret = binding.path.resolve(dangerous, resolved);\n // If the identifier resolves to parent node then we can't really resolve it.\n if (this.find(parent => parent.node === ret.node)) return;\n return ret;\n }\n } else if (this.isTypeCastExpression()) {\n // @ ts-ignore todo: babel-types\n return this.get(\"expression\").resolve(dangerous, resolved);\n } else if (dangerous && this.isMemberExpression()) {\n // this is dangerous, as non-direct target assignments will mutate it's state\n // making this resolution inaccurate\n\n const targetKey = this.toComputedKey();\n if (!isLiteral(targetKey)) return;\n\n // @ts-expect-error todo(flow->ts): NullLiteral\n const targetName = targetKey.value;\n\n const target = this.get(\"object\").resolve(dangerous, resolved);\n\n if (target.isObjectExpression()) {\n const props = target.get(\"properties\");\n for (const prop of props as any[]) {\n if (!prop.isProperty()) continue;\n\n const key = prop.get(\"key\");\n\n // { foo: obj }\n let match =\n prop.isnt(\"computed\") && key.isIdentifier({ name: targetName });\n\n // { \"foo\": \"obj\" } or { [\"foo\"]: \"obj\" }\n match = match || key.isLiteral({ value: targetName });\n\n if (match) return prop.get(\"value\").resolve(dangerous, resolved);\n }\n } else if (target.isArrayExpression() && !isNaN(+targetName)) {\n const elems = target.get(\"elements\");\n const elem = elems[targetName];\n if (elem) return elem.resolve(dangerous, resolved);\n }\n }\n}\n\nexport function isConstantExpression(this: NodePath): boolean {\n if (this.isIdentifier()) {\n const binding = this.scope.getBinding(this.node.name);\n if (!binding) return false;\n return binding.constant;\n }\n\n if (this.isLiteral()) {\n if (this.isRegExpLiteral()) {\n return false;\n }\n\n if (this.isTemplateLiteral()) {\n return this.get(\"expressions\").every(expression =>\n expression.isConstantExpression(),\n );\n }\n\n return true;\n }\n\n if (this.isUnaryExpression()) {\n if (this.node.operator !== \"void\") {\n return false;\n }\n\n return this.get(\"argument\").isConstantExpression();\n }\n\n if (this.isBinaryExpression()) {\n const { operator } = this.node;\n return (\n operator !== \"in\" &&\n operator !== \"instanceof\" &&\n this.get(\"left\").isConstantExpression() &&\n this.get(\"right\").isConstantExpression()\n );\n }\n\n return false;\n}\n\nexport function isInStrictMode(this: NodePath) {\n const start = this.isProgram() ? this : this.parentPath;\n\n const strictParent = start.find(path => {\n if (path.isProgram({ sourceType: \"module\" })) return true;\n\n if (path.isClass()) return true;\n\n if (\n path.isArrowFunctionExpression() &&\n !path.get(\"body\").isBlockStatement()\n ) {\n return false;\n }\n\n let body: t.BlockStatement | t.Program;\n if (path.isFunction()) {\n body = path.node.body as t.BlockStatement;\n } else if (path.isProgram()) {\n body = path.node;\n } else {\n return false;\n }\n\n for (const directive of body.directives) {\n if (directive.value.value === \"use strict\") {\n return true;\n }\n }\n });\n\n return !!strictParent;\n}\n"],"mappings":"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"}
|
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _t = require("@babel/types");
|
|
8
|
+
var _t2 = _t;
|
|
9
|
+
const {
|
|
10
|
+
react
|
|
11
|
+
} = _t;
|
|
12
|
+
const {
|
|
13
|
+
cloneNode,
|
|
14
|
+
jsxExpressionContainer,
|
|
15
|
+
variableDeclaration,
|
|
16
|
+
variableDeclarator
|
|
17
|
+
} = _t2;
|
|
18
|
+
const referenceVisitor = {
|
|
19
|
+
ReferencedIdentifier(path, state) {
|
|
20
|
+
if (path.isJSXIdentifier() && react.isCompatTag(path.node.name) && !path.parentPath.isJSXMemberExpression()) {
|
|
21
|
+
return;
|
|
22
|
+
}
|
|
23
|
+
if (path.node.name === "this") {
|
|
24
|
+
let scope = path.scope;
|
|
25
|
+
do {
|
|
26
|
+
if (scope.path.isFunction() && !scope.path.isArrowFunctionExpression()) {
|
|
27
|
+
break;
|
|
28
|
+
}
|
|
29
|
+
} while (scope = scope.parent);
|
|
30
|
+
if (scope) state.breakOnScopePaths.push(scope.path);
|
|
31
|
+
}
|
|
32
|
+
const binding = path.scope.getBinding(path.node.name);
|
|
33
|
+
if (!binding) return;
|
|
34
|
+
for (const violation of binding.constantViolations) {
|
|
35
|
+
if (violation.scope !== binding.path.scope) {
|
|
36
|
+
state.mutableBinding = true;
|
|
37
|
+
path.stop();
|
|
38
|
+
return;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
if (binding !== state.scope.getBinding(path.node.name)) return;
|
|
42
|
+
state.bindings[path.node.name] = binding;
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
class PathHoister {
|
|
46
|
+
constructor(path, scope) {
|
|
47
|
+
this.breakOnScopePaths = void 0;
|
|
48
|
+
this.bindings = void 0;
|
|
49
|
+
this.mutableBinding = void 0;
|
|
50
|
+
this.scopes = void 0;
|
|
51
|
+
this.scope = void 0;
|
|
52
|
+
this.path = void 0;
|
|
53
|
+
this.attachAfter = void 0;
|
|
54
|
+
this.breakOnScopePaths = [];
|
|
55
|
+
this.bindings = {};
|
|
56
|
+
this.mutableBinding = false;
|
|
57
|
+
this.scopes = [];
|
|
58
|
+
this.scope = scope;
|
|
59
|
+
this.path = path;
|
|
60
|
+
this.attachAfter = false;
|
|
61
|
+
}
|
|
62
|
+
isCompatibleScope(scope) {
|
|
63
|
+
for (const key of Object.keys(this.bindings)) {
|
|
64
|
+
const binding = this.bindings[key];
|
|
65
|
+
if (!scope.bindingIdentifierEquals(key, binding.identifier)) {
|
|
66
|
+
return false;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
return true;
|
|
70
|
+
}
|
|
71
|
+
getCompatibleScopes() {
|
|
72
|
+
let scope = this.path.scope;
|
|
73
|
+
do {
|
|
74
|
+
if (this.isCompatibleScope(scope)) {
|
|
75
|
+
this.scopes.push(scope);
|
|
76
|
+
} else {
|
|
77
|
+
break;
|
|
78
|
+
}
|
|
79
|
+
if (this.breakOnScopePaths.indexOf(scope.path) >= 0) {
|
|
80
|
+
break;
|
|
81
|
+
}
|
|
82
|
+
} while (scope = scope.parent);
|
|
83
|
+
}
|
|
84
|
+
getAttachmentPath() {
|
|
85
|
+
let path = this._getAttachmentPath();
|
|
86
|
+
if (!path) return;
|
|
87
|
+
let targetScope = path.scope;
|
|
88
|
+
if (targetScope.path === path) {
|
|
89
|
+
targetScope = path.scope.parent;
|
|
90
|
+
}
|
|
91
|
+
if (targetScope.path.isProgram() || targetScope.path.isFunction()) {
|
|
92
|
+
for (const name of Object.keys(this.bindings)) {
|
|
93
|
+
if (!targetScope.hasOwnBinding(name)) continue;
|
|
94
|
+
const binding = this.bindings[name];
|
|
95
|
+
if (binding.kind === "param" || binding.path.parentKey === "params") {
|
|
96
|
+
continue;
|
|
97
|
+
}
|
|
98
|
+
const bindingParentPath = this.getAttachmentParentForPath(binding.path);
|
|
99
|
+
if (bindingParentPath.key >= path.key) {
|
|
100
|
+
this.attachAfter = true;
|
|
101
|
+
path = binding.path;
|
|
102
|
+
for (const violationPath of binding.constantViolations) {
|
|
103
|
+
if (this.getAttachmentParentForPath(violationPath).key > path.key) {
|
|
104
|
+
path = violationPath;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
return path;
|
|
111
|
+
}
|
|
112
|
+
_getAttachmentPath() {
|
|
113
|
+
const scopes = this.scopes;
|
|
114
|
+
const scope = scopes.pop();
|
|
115
|
+
if (!scope) return;
|
|
116
|
+
if (scope.path.isFunction()) {
|
|
117
|
+
if (this.hasOwnParamBindings(scope)) {
|
|
118
|
+
if (this.scope === scope) return;
|
|
119
|
+
const bodies = scope.path.get("body").get("body");
|
|
120
|
+
for (let i = 0; i < bodies.length; i++) {
|
|
121
|
+
if (bodies[i].node._blockHoist) continue;
|
|
122
|
+
return bodies[i];
|
|
123
|
+
}
|
|
124
|
+
} else {
|
|
125
|
+
return this.getNextScopeAttachmentParent();
|
|
126
|
+
}
|
|
127
|
+
} else if (scope.path.isProgram()) {
|
|
128
|
+
return this.getNextScopeAttachmentParent();
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
getNextScopeAttachmentParent() {
|
|
132
|
+
const scope = this.scopes.pop();
|
|
133
|
+
if (scope) return this.getAttachmentParentForPath(scope.path);
|
|
134
|
+
}
|
|
135
|
+
getAttachmentParentForPath(path) {
|
|
136
|
+
do {
|
|
137
|
+
if (!path.parentPath || Array.isArray(path.container) && path.isStatement()) {
|
|
138
|
+
return path;
|
|
139
|
+
}
|
|
140
|
+
} while (path = path.parentPath);
|
|
141
|
+
}
|
|
142
|
+
hasOwnParamBindings(scope) {
|
|
143
|
+
for (const name of Object.keys(this.bindings)) {
|
|
144
|
+
if (!scope.hasOwnBinding(name)) continue;
|
|
145
|
+
const binding = this.bindings[name];
|
|
146
|
+
if (binding.kind === "param" && binding.constant) return true;
|
|
147
|
+
}
|
|
148
|
+
return false;
|
|
149
|
+
}
|
|
150
|
+
run() {
|
|
151
|
+
this.path.traverse(referenceVisitor, this);
|
|
152
|
+
if (this.mutableBinding) return;
|
|
153
|
+
this.getCompatibleScopes();
|
|
154
|
+
const attachTo = this.getAttachmentPath();
|
|
155
|
+
if (!attachTo) return;
|
|
156
|
+
if (attachTo.getFunctionParent() === this.path.getFunctionParent()) return;
|
|
157
|
+
let uid = attachTo.scope.generateUidIdentifier("ref");
|
|
158
|
+
const declarator = variableDeclarator(uid, this.path.node);
|
|
159
|
+
const insertFn = this.attachAfter ? "insertAfter" : "insertBefore";
|
|
160
|
+
const [attached] = attachTo[insertFn]([attachTo.isVariableDeclarator() ? declarator : variableDeclaration("var", [declarator])]);
|
|
161
|
+
const parent = this.path.parentPath;
|
|
162
|
+
if (parent.isJSXElement() && this.path.container === parent.node.children) {
|
|
163
|
+
uid = jsxExpressionContainer(uid);
|
|
164
|
+
}
|
|
165
|
+
this.path.replaceWith(cloneNode(uid));
|
|
166
|
+
return attachTo.isVariableDeclarator() ? attached.get("init") : attached.get("declarations.0.init");
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
exports.default = PathHoister;
|
|
170
|
+
|
|
171
|
+
//# sourceMappingURL=hoister.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_t","require","_t2","react","cloneNode","jsxExpressionContainer","variableDeclaration","variableDeclarator","referenceVisitor","ReferencedIdentifier","path","state","isJSXIdentifier","isCompatTag","node","name","parentPath","isJSXMemberExpression","scope","isFunction","isArrowFunctionExpression","parent","breakOnScopePaths","push","binding","getBinding","violation","constantViolations","mutableBinding","stop","bindings","PathHoister","constructor","scopes","attachAfter","isCompatibleScope","key","Object","keys","bindingIdentifierEquals","identifier","getCompatibleScopes","indexOf","getAttachmentPath","_getAttachmentPath","targetScope","isProgram","hasOwnBinding","kind","parentKey","bindingParentPath","getAttachmentParentForPath","violationPath","pop","hasOwnParamBindings","bodies","get","i","length","_blockHoist","getNextScopeAttachmentParent","Array","isArray","container","isStatement","constant","run","traverse","attachTo","getFunctionParent","uid","generateUidIdentifier","declarator","insertFn","attached","isVariableDeclarator","isJSXElement","children","replaceWith","exports","default"],"sources":["../../../src/path/lib/hoister.ts"],"sourcesContent":["import { react } from \"@babel/types\";\nimport {\n cloneNode,\n jsxExpressionContainer,\n variableDeclaration,\n variableDeclarator,\n} from \"@babel/types\";\nimport type * as t from \"@babel/types\";\nimport type Scope from \"../../scope/index.ts\";\nimport type NodePath from \"../index.ts\";\nimport type Binding from \"../../scope/binding.ts\";\nimport type { Visitor } from \"../../types.ts\";\n\nconst referenceVisitor: Visitor<PathHoister> = {\n // This visitor looks for bindings to establish a topmost scope for hoisting.\n ReferencedIdentifier(path, state) {\n // Don't hoist regular JSX identifiers ('div', 'span', etc).\n // We do have to consider member expressions for hoisting (e.g. `this.component`)\n if (\n path.isJSXIdentifier() &&\n react.isCompatTag(path.node.name) &&\n !path.parentPath.isJSXMemberExpression()\n ) {\n return;\n }\n\n // If the identifier refers to `this`, we need to break on the closest non-arrow scope.\n if (path.node.name === \"this\") {\n let scope = path.scope;\n do {\n if (\n scope.path.isFunction() &&\n !scope.path.isArrowFunctionExpression()\n ) {\n break;\n }\n } while ((scope = scope.parent));\n if (scope) state.breakOnScopePaths.push(scope.path);\n }\n\n // direct references that we need to track to hoist this to the highest scope we can\n const binding = path.scope.getBinding(path.node.name);\n if (!binding) return;\n\n // we can handle reassignments only if they happen in the same scope as the declaration\n for (const violation of binding.constantViolations) {\n if (violation.scope !== binding.path.scope) {\n state.mutableBinding = true;\n path.stop();\n return;\n }\n }\n\n // this binding isn't accessible from the parent scope so we can safely ignore it\n // eg. it's in a closure etc\n if (binding !== state.scope.getBinding(path.node.name)) return;\n\n state.bindings[path.node.name] = binding;\n },\n};\n\nexport default class PathHoister<T extends t.Node = t.Node> {\n breakOnScopePaths: NodePath[];\n bindings: { [k: string]: Binding };\n mutableBinding: boolean;\n private scopes: Scope[];\n scope: Scope;\n private path: NodePath<T>;\n private attachAfter: boolean;\n\n constructor(path: NodePath<T>, scope: Scope) {\n // Storage for scopes we can't hoist above.\n this.breakOnScopePaths = [];\n // Storage for bindings that may affect what path we can hoist to.\n this.bindings = {};\n // \"true\" if the current path contains a reference to a binding whose\n // value can change and thus can't be safely hoisted.\n this.mutableBinding = false;\n // Storage for eligible scopes.\n this.scopes = [];\n // Our original scope and path.\n this.scope = scope;\n this.path = path;\n // By default, we attach as far up as we can; but if we're trying\n // to avoid referencing a binding, we may have to go after.\n this.attachAfter = false;\n }\n\n // A scope is compatible if all required bindings are reachable.\n isCompatibleScope(scope: Scope) {\n for (const key of Object.keys(this.bindings)) {\n const binding = this.bindings[key];\n if (!scope.bindingIdentifierEquals(key, binding.identifier)) {\n return false;\n }\n }\n\n return true;\n }\n\n // Look through all scopes and push compatible ones.\n getCompatibleScopes() {\n let scope = this.path.scope;\n do {\n if (this.isCompatibleScope(scope)) {\n this.scopes.push(scope);\n } else {\n break;\n }\n\n // deopt: These scopes are set in the visitor on const violations\n if (this.breakOnScopePaths.indexOf(scope.path) >= 0) {\n break;\n }\n } while ((scope = scope.parent));\n }\n\n getAttachmentPath() {\n let path = this._getAttachmentPath();\n if (!path) return;\n\n let targetScope = path.scope;\n\n // don't allow paths that have their own lexical environments to pollute\n if (targetScope.path === path) {\n targetScope = path.scope.parent;\n }\n\n // avoid hoisting to a scope that contains bindings that are executed after our attachment path\n if (targetScope.path.isProgram() || targetScope.path.isFunction()) {\n for (const name of Object.keys(this.bindings)) {\n // check binding is a direct child of this paths scope\n if (!targetScope.hasOwnBinding(name)) continue;\n\n const binding = this.bindings[name];\n\n // allow parameter references and expressions in params (like destructuring rest)\n if (binding.kind === \"param\" || binding.path.parentKey === \"params\") {\n continue;\n }\n\n // For each binding, get its attachment parent. This gives us an idea of where we might\n // introduce conflicts.\n const bindingParentPath = this.getAttachmentParentForPath(binding.path);\n\n // If the binding's attachment appears at or after our attachment point, then we move after it.\n if (bindingParentPath.key >= path.key) {\n this.attachAfter = true;\n path = binding.path;\n\n // We also move past any constant violations.\n for (const violationPath of binding.constantViolations) {\n if (this.getAttachmentParentForPath(violationPath).key > path.key) {\n path = violationPath;\n }\n }\n }\n }\n }\n\n return path;\n }\n\n _getAttachmentPath() {\n const scopes = this.scopes;\n\n const scope = scopes.pop();\n // deopt: no compatible scopes\n if (!scope) return;\n\n if (scope.path.isFunction()) {\n if (this.hasOwnParamBindings(scope)) {\n // deopt: should ignore this scope since it's ourselves\n if (this.scope === scope) return;\n\n // needs to be attached to the body\n const bodies = scope.path.get(\"body\").get(\"body\") as NodePath[];\n for (let i = 0; i < bodies.length; i++) {\n // Don't attach to something that's going to get hoisted,\n // like a default parameter\n // @ts-expect-error todo(flow->ts): avoid mutating the node, introducing new fields\n if (bodies[i].node._blockHoist) continue;\n return bodies[i];\n }\n // deopt: If here, no attachment path found\n } else {\n // doesn't need to be be attached to this scope\n return this.getNextScopeAttachmentParent();\n }\n } else if (scope.path.isProgram()) {\n return this.getNextScopeAttachmentParent();\n }\n }\n\n getNextScopeAttachmentParent() {\n const scope = this.scopes.pop();\n if (scope) return this.getAttachmentParentForPath(scope.path);\n }\n\n // Find an attachment for this path.\n getAttachmentParentForPath(path: NodePath) {\n do {\n if (\n // Beginning of the scope\n !path.parentPath ||\n // Has siblings and is a statement\n (Array.isArray(path.container) && path.isStatement())\n ) {\n return path;\n }\n } while ((path = path.parentPath));\n }\n\n // Returns true if a scope has param bindings.\n hasOwnParamBindings(scope: Scope) {\n for (const name of Object.keys(this.bindings)) {\n if (!scope.hasOwnBinding(name)) continue;\n\n const binding = this.bindings[name];\n // Ensure constant; without it we could place behind a reassignment\n if (binding.kind === \"param\" && binding.constant) return true;\n }\n return false;\n }\n\n run(): NodePath<t.Expression> | undefined {\n this.path.traverse(referenceVisitor, this);\n\n if (this.mutableBinding) return;\n\n this.getCompatibleScopes();\n\n const attachTo = this.getAttachmentPath();\n if (!attachTo) return;\n\n // don't bother hoisting to the same function as this will cause multiple branches to be\n // evaluated more than once leading to a bad optimisation\n if (attachTo.getFunctionParent() === this.path.getFunctionParent()) return;\n\n // generate declaration and insert it to our point\n let uid: t.Identifier | t.JSXExpressionContainer =\n attachTo.scope.generateUidIdentifier(\"ref\");\n\n // @ts-expect-error todo(flow->ts): more specific type for this.path\n const declarator = variableDeclarator(uid, this.path.node);\n\n const insertFn = this.attachAfter ? \"insertAfter\" : \"insertBefore\";\n const [attached] = attachTo[insertFn]([\n attachTo.isVariableDeclarator()\n ? declarator\n : variableDeclaration(\"var\", [declarator]),\n ]);\n\n const parent = this.path.parentPath;\n if (parent.isJSXElement() && this.path.container === parent.node.children) {\n // turning the `span` in `<div><span /></div>` to an expression so we need to wrap it with\n // an expression container\n uid = jsxExpressionContainer(uid);\n }\n\n this.path.replaceWith(cloneNode(uid));\n\n return attachTo.isVariableDeclarator()\n ? attached.get(\"init\")\n : attached.get(\"declarations.0.init\");\n }\n}\n"],"mappings":";;;;;;AAAA,IAAAA,EAAA,GAAAC,OAAA;AAAqC,IAAAC,GAAA,GAAAF,EAAA;AAAA;EAA5BG;AAAK,IAAAH,EAAA;AAAA;EAEZI,SAAS;EACTC,sBAAsB;EACtBC,mBAAmB;EACnBC;AAAkB,IAAAL,GAAA;AAQpB,MAAMM,gBAAsC,GAAG;EAE7CC,oBAAoBA,CAACC,IAAI,EAAEC,KAAK,EAAE;IAGhC,IACED,IAAI,CAACE,eAAe,CAAC,CAAC,IACtBT,KAAK,CAACU,WAAW,CAACH,IAAI,CAACI,IAAI,CAACC,IAAI,CAAC,IACjC,CAACL,IAAI,CAACM,UAAU,CAACC,qBAAqB,CAAC,CAAC,EACxC;MACA;IACF;IAGA,IAAIP,IAAI,CAACI,IAAI,CAACC,IAAI,KAAK,MAAM,EAAE;MAC7B,IAAIG,KAAK,GAAGR,IAAI,CAACQ,KAAK;MACtB,GAAG;QACD,IACEA,KAAK,CAACR,IAAI,CAACS,UAAU,CAAC,CAAC,IACvB,CAACD,KAAK,CAACR,IAAI,CAACU,yBAAyB,CAAC,CAAC,EACvC;UACA;QACF;MACF,CAAC,QAASF,KAAK,GAAGA,KAAK,CAACG,MAAM;MAC9B,IAAIH,KAAK,EAAEP,KAAK,CAACW,iBAAiB,CAACC,IAAI,CAACL,KAAK,CAACR,IAAI,CAAC;IACrD;IAGA,MAAMc,OAAO,GAAGd,IAAI,CAACQ,KAAK,CAACO,UAAU,CAACf,IAAI,CAACI,IAAI,CAACC,IAAI,CAAC;IACrD,IAAI,CAACS,OAAO,EAAE;IAGd,KAAK,MAAME,SAAS,IAAIF,OAAO,CAACG,kBAAkB,EAAE;MAClD,IAAID,SAAS,CAACR,KAAK,KAAKM,OAAO,CAACd,IAAI,CAACQ,KAAK,EAAE;QAC1CP,KAAK,CAACiB,cAAc,GAAG,IAAI;QAC3BlB,IAAI,CAACmB,IAAI,CAAC,CAAC;QACX;MACF;IACF;IAIA,IAAIL,OAAO,KAAKb,KAAK,CAACO,KAAK,CAACO,UAAU,CAACf,IAAI,CAACI,IAAI,CAACC,IAAI,CAAC,EAAE;IAExDJ,KAAK,CAACmB,QAAQ,CAACpB,IAAI,CAACI,IAAI,CAACC,IAAI,CAAC,GAAGS,OAAO;EAC1C;AACF,CAAC;AAEc,MAAMO,WAAW,CAA4B;EAS1DC,WAAWA,CAACtB,IAAiB,EAAEQ,KAAY,EAAE;IAAA,KAR7CI,iBAAiB;IAAA,KACjBQ,QAAQ;IAAA,KACRF,cAAc;IAAA,KACNK,MAAM;IAAA,KACdf,KAAK;IAAA,KACGR,IAAI;IAAA,KACJwB,WAAW;IAIjB,IAAI,CAACZ,iBAAiB,GAAG,EAAE;IAE3B,IAAI,CAACQ,QAAQ,GAAG,CAAC,CAAC;IAGlB,IAAI,CAACF,cAAc,GAAG,KAAK;IAE3B,IAAI,CAACK,MAAM,GAAG,EAAE;IAEhB,IAAI,CAACf,KAAK,GAAGA,KAAK;IAClB,IAAI,CAACR,IAAI,GAAGA,IAAI;IAGhB,IAAI,CAACwB,WAAW,GAAG,KAAK;EAC1B;EAGAC,iBAAiBA,CAACjB,KAAY,EAAE;IAC9B,KAAK,MAAMkB,GAAG,IAAIC,MAAM,CAACC,IAAI,CAAC,IAAI,CAACR,QAAQ,CAAC,EAAE;MAC5C,MAAMN,OAAO,GAAG,IAAI,CAACM,QAAQ,CAACM,GAAG,CAAC;MAClC,IAAI,CAAClB,KAAK,CAACqB,uBAAuB,CAACH,GAAG,EAAEZ,OAAO,CAACgB,UAAU,CAAC,EAAE;QAC3D,OAAO,KAAK;MACd;IACF;IAEA,OAAO,IAAI;EACb;EAGAC,mBAAmBA,CAAA,EAAG;IACpB,IAAIvB,KAAK,GAAG,IAAI,CAACR,IAAI,CAACQ,KAAK;IAC3B,GAAG;MACD,IAAI,IAAI,CAACiB,iBAAiB,CAACjB,KAAK,CAAC,EAAE;QACjC,IAAI,CAACe,MAAM,CAACV,IAAI,CAACL,KAAK,CAAC;MACzB,CAAC,MAAM;QACL;MACF;MAGA,IAAI,IAAI,CAACI,iBAAiB,CAACoB,OAAO,CAACxB,KAAK,CAACR,IAAI,CAAC,IAAI,CAAC,EAAE;QACnD;MACF;IACF,CAAC,QAASQ,KAAK,GAAGA,KAAK,CAACG,MAAM;EAChC;EAEAsB,iBAAiBA,CAAA,EAAG;IAClB,IAAIjC,IAAI,GAAG,IAAI,CAACkC,kBAAkB,CAAC,CAAC;IACpC,IAAI,CAAClC,IAAI,EAAE;IAEX,IAAImC,WAAW,GAAGnC,IAAI,CAACQ,KAAK;IAG5B,IAAI2B,WAAW,CAACnC,IAAI,KAAKA,IAAI,EAAE;MAC7BmC,WAAW,GAAGnC,IAAI,CAACQ,KAAK,CAACG,MAAM;IACjC;IAGA,IAAIwB,WAAW,CAACnC,IAAI,CAACoC,SAAS,CAAC,CAAC,IAAID,WAAW,CAACnC,IAAI,CAACS,UAAU,CAAC,CAAC,EAAE;MACjE,KAAK,MAAMJ,IAAI,IAAIsB,MAAM,CAACC,IAAI,CAAC,IAAI,CAACR,QAAQ,CAAC,EAAE;QAE7C,IAAI,CAACe,WAAW,CAACE,aAAa,CAAChC,IAAI,CAAC,EAAE;QAEtC,MAAMS,OAAO,GAAG,IAAI,CAACM,QAAQ,CAACf,IAAI,CAAC;QAGnC,IAAIS,OAAO,CAACwB,IAAI,KAAK,OAAO,IAAIxB,OAAO,CAACd,IAAI,CAACuC,SAAS,KAAK,QAAQ,EAAE;UACnE;QACF;QAIA,MAAMC,iBAAiB,GAAG,IAAI,CAACC,0BAA0B,CAAC3B,OAAO,CAACd,IAAI,CAAC;QAGvE,IAAIwC,iBAAiB,CAACd,GAAG,IAAI1B,IAAI,CAAC0B,GAAG,EAAE;UACrC,IAAI,CAACF,WAAW,GAAG,IAAI;UACvBxB,IAAI,GAAGc,OAAO,CAACd,IAAI;UAGnB,KAAK,MAAM0C,aAAa,IAAI5B,OAAO,CAACG,kBAAkB,EAAE;YACtD,IAAI,IAAI,CAACwB,0BAA0B,CAACC,aAAa,CAAC,CAAChB,GAAG,GAAG1B,IAAI,CAAC0B,GAAG,EAAE;cACjE1B,IAAI,GAAG0C,aAAa;YACtB;UACF;QACF;MACF;IACF;IAEA,OAAO1C,IAAI;EACb;EAEAkC,kBAAkBA,CAAA,EAAG;IACnB,MAAMX,MAAM,GAAG,IAAI,CAACA,MAAM;IAE1B,MAAMf,KAAK,GAAGe,MAAM,CAACoB,GAAG,CAAC,CAAC;IAE1B,IAAI,CAACnC,KAAK,EAAE;IAEZ,IAAIA,KAAK,CAACR,IAAI,CAACS,UAAU,CAAC,CAAC,EAAE;MAC3B,IAAI,IAAI,CAACmC,mBAAmB,CAACpC,KAAK,CAAC,EAAE;QAEnC,IAAI,IAAI,CAACA,KAAK,KAAKA,KAAK,EAAE;QAG1B,MAAMqC,MAAM,GAAGrC,KAAK,CAACR,IAAI,CAAC8C,GAAG,CAAC,MAAM,CAAC,CAACA,GAAG,CAAC,MAAM,CAAe;QAC/D,KAAK,IAAIC,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGF,MAAM,CAACG,MAAM,EAAED,CAAC,EAAE,EAAE;UAItC,IAAIF,MAAM,CAACE,CAAC,CAAC,CAAC3C,IAAI,CAAC6C,WAAW,EAAE;UAChC,OAAOJ,MAAM,CAACE,CAAC,CAAC;QAClB;MAEF,CAAC,MAAM;QAEL,OAAO,IAAI,CAACG,4BAA4B,CAAC,CAAC;MAC5C;IACF,CAAC,MAAM,IAAI1C,KAAK,CAACR,IAAI,CAACoC,SAAS,CAAC,CAAC,EAAE;MACjC,OAAO,IAAI,CAACc,4BAA4B,CAAC,CAAC;IAC5C;EACF;EAEAA,4BAA4BA,CAAA,EAAG;IAC7B,MAAM1C,KAAK,GAAG,IAAI,CAACe,MAAM,CAACoB,GAAG,CAAC,CAAC;IAC/B,IAAInC,KAAK,EAAE,OAAO,IAAI,CAACiC,0BAA0B,CAACjC,KAAK,CAACR,IAAI,CAAC;EAC/D;EAGAyC,0BAA0BA,CAACzC,IAAc,EAAE;IACzC,GAAG;MACD,IAEE,CAACA,IAAI,CAACM,UAAU,IAEf6C,KAAK,CAACC,OAAO,CAACpD,IAAI,CAACqD,SAAS,CAAC,IAAIrD,IAAI,CAACsD,WAAW,CAAC,CAAE,EACrD;QACA,OAAOtD,IAAI;MACb;IACF,CAAC,QAASA,IAAI,GAAGA,IAAI,CAACM,UAAU;EAClC;EAGAsC,mBAAmBA,CAACpC,KAAY,EAAE;IAChC,KAAK,MAAMH,IAAI,IAAIsB,MAAM,CAACC,IAAI,CAAC,IAAI,CAACR,QAAQ,CAAC,EAAE;MAC7C,IAAI,CAACZ,KAAK,CAAC6B,aAAa,CAAChC,IAAI,CAAC,EAAE;MAEhC,MAAMS,OAAO,GAAG,IAAI,CAACM,QAAQ,CAACf,IAAI,CAAC;MAEnC,IAAIS,OAAO,CAACwB,IAAI,KAAK,OAAO,IAAIxB,OAAO,CAACyC,QAAQ,EAAE,OAAO,IAAI;IAC/D;IACA,OAAO,KAAK;EACd;EAEAC,GAAGA,CAAA,EAAuC;IACxC,IAAI,CAACxD,IAAI,CAACyD,QAAQ,CAAC3D,gBAAgB,EAAE,IAAI,CAAC;IAE1C,IAAI,IAAI,CAACoB,cAAc,EAAE;IAEzB,IAAI,CAACa,mBAAmB,CAAC,CAAC;IAE1B,MAAM2B,QAAQ,GAAG,IAAI,CAACzB,iBAAiB,CAAC,CAAC;IACzC,IAAI,CAACyB,QAAQ,EAAE;IAIf,IAAIA,QAAQ,CAACC,iBAAiB,CAAC,CAAC,KAAK,IAAI,CAAC3D,IAAI,CAAC2D,iBAAiB,CAAC,CAAC,EAAE;IAGpE,IAAIC,GAA4C,GAC9CF,QAAQ,CAAClD,KAAK,CAACqD,qBAAqB,CAAC,KAAK,CAAC;IAG7C,MAAMC,UAAU,GAAGjE,kBAAkB,CAAC+D,GAAG,EAAE,IAAI,CAAC5D,IAAI,CAACI,IAAI,CAAC;IAE1D,MAAM2D,QAAQ,GAAG,IAAI,CAACvC,WAAW,GAAG,aAAa,GAAG,cAAc;IAClE,MAAM,CAACwC,QAAQ,CAAC,GAAGN,QAAQ,CAACK,QAAQ,CAAC,CAAC,CACpCL,QAAQ,CAACO,oBAAoB,CAAC,CAAC,GAC3BH,UAAU,GACVlE,mBAAmB,CAAC,KAAK,EAAE,CAACkE,UAAU,CAAC,CAAC,CAC7C,CAAC;IAEF,MAAMnD,MAAM,GAAG,IAAI,CAACX,IAAI,CAACM,UAAU;IACnC,IAAIK,MAAM,CAACuD,YAAY,CAAC,CAAC,IAAI,IAAI,CAAClE,IAAI,CAACqD,SAAS,KAAK1C,MAAM,CAACP,IAAI,CAAC+D,QAAQ,EAAE;MAGzEP,GAAG,GAAGjE,sBAAsB,CAACiE,GAAG,CAAC;IACnC;IAEA,IAAI,CAAC5D,IAAI,CAACoE,WAAW,CAAC1E,SAAS,CAACkE,GAAG,CAAC,CAAC;IAErC,OAAOF,QAAQ,CAACO,oBAAoB,CAAC,CAAC,GAClCD,QAAQ,CAAClB,GAAG,CAAC,MAAM,CAAC,GACpBkB,QAAQ,CAAClB,GAAG,CAAC,qBAAqB,CAAC;EACzC;AACF;AAACuB,OAAA,CAAAC,OAAA,GAAAjD,WAAA"}
|