@alanszp/business-days-date-fns 10.0.0 → 11.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,336 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports._getKey = _getKey;
|
|
7
|
+
exports._getPattern = _getPattern;
|
|
8
|
+
exports.get = get;
|
|
9
|
+
exports.getAllNextSiblings = getAllNextSiblings;
|
|
10
|
+
exports.getAllPrevSiblings = getAllPrevSiblings;
|
|
11
|
+
exports.getBindingIdentifierPaths = getBindingIdentifierPaths;
|
|
12
|
+
exports.getBindingIdentifiers = getBindingIdentifiers;
|
|
13
|
+
exports.getCompletionRecords = getCompletionRecords;
|
|
14
|
+
exports.getNextSibling = getNextSibling;
|
|
15
|
+
exports.getOpposite = getOpposite;
|
|
16
|
+
exports.getOuterBindingIdentifierPaths = getOuterBindingIdentifierPaths;
|
|
17
|
+
exports.getOuterBindingIdentifiers = getOuterBindingIdentifiers;
|
|
18
|
+
exports.getPrevSibling = getPrevSibling;
|
|
19
|
+
exports.getSibling = getSibling;
|
|
20
|
+
var _index = require("./index.js");
|
|
21
|
+
var _t = require("@babel/types");
|
|
22
|
+
const {
|
|
23
|
+
getBindingIdentifiers: _getBindingIdentifiers,
|
|
24
|
+
getOuterBindingIdentifiers: _getOuterBindingIdentifiers,
|
|
25
|
+
isDeclaration,
|
|
26
|
+
numericLiteral,
|
|
27
|
+
unaryExpression
|
|
28
|
+
} = _t;
|
|
29
|
+
const NORMAL_COMPLETION = 0;
|
|
30
|
+
const BREAK_COMPLETION = 1;
|
|
31
|
+
function NormalCompletion(path) {
|
|
32
|
+
return {
|
|
33
|
+
type: NORMAL_COMPLETION,
|
|
34
|
+
path
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
function BreakCompletion(path) {
|
|
38
|
+
return {
|
|
39
|
+
type: BREAK_COMPLETION,
|
|
40
|
+
path
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
function getOpposite() {
|
|
44
|
+
if (this.key === "left") {
|
|
45
|
+
return this.getSibling("right");
|
|
46
|
+
} else if (this.key === "right") {
|
|
47
|
+
return this.getSibling("left");
|
|
48
|
+
}
|
|
49
|
+
return null;
|
|
50
|
+
}
|
|
51
|
+
function addCompletionRecords(path, records, context) {
|
|
52
|
+
if (path) {
|
|
53
|
+
records.push(..._getCompletionRecords(path, context));
|
|
54
|
+
}
|
|
55
|
+
return records;
|
|
56
|
+
}
|
|
57
|
+
function completionRecordForSwitch(cases, records, context) {
|
|
58
|
+
let lastNormalCompletions = [];
|
|
59
|
+
for (let i = 0; i < cases.length; i++) {
|
|
60
|
+
const casePath = cases[i];
|
|
61
|
+
const caseCompletions = _getCompletionRecords(casePath, context);
|
|
62
|
+
const normalCompletions = [];
|
|
63
|
+
const breakCompletions = [];
|
|
64
|
+
for (const c of caseCompletions) {
|
|
65
|
+
if (c.type === NORMAL_COMPLETION) {
|
|
66
|
+
normalCompletions.push(c);
|
|
67
|
+
}
|
|
68
|
+
if (c.type === BREAK_COMPLETION) {
|
|
69
|
+
breakCompletions.push(c);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
if (normalCompletions.length) {
|
|
73
|
+
lastNormalCompletions = normalCompletions;
|
|
74
|
+
}
|
|
75
|
+
records.push(...breakCompletions);
|
|
76
|
+
}
|
|
77
|
+
records.push(...lastNormalCompletions);
|
|
78
|
+
return records;
|
|
79
|
+
}
|
|
80
|
+
function normalCompletionToBreak(completions) {
|
|
81
|
+
completions.forEach(c => {
|
|
82
|
+
c.type = BREAK_COMPLETION;
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
function replaceBreakStatementInBreakCompletion(completions, reachable) {
|
|
86
|
+
completions.forEach(c => {
|
|
87
|
+
if (c.path.isBreakStatement({
|
|
88
|
+
label: null
|
|
89
|
+
})) {
|
|
90
|
+
if (reachable) {
|
|
91
|
+
c.path.replaceWith(unaryExpression("void", numericLiteral(0)));
|
|
92
|
+
} else {
|
|
93
|
+
c.path.remove();
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
});
|
|
97
|
+
}
|
|
98
|
+
function getStatementListCompletion(paths, context) {
|
|
99
|
+
const completions = [];
|
|
100
|
+
if (context.canHaveBreak) {
|
|
101
|
+
let lastNormalCompletions = [];
|
|
102
|
+
for (let i = 0; i < paths.length; i++) {
|
|
103
|
+
const path = paths[i];
|
|
104
|
+
const newContext = Object.assign({}, context, {
|
|
105
|
+
inCaseClause: false
|
|
106
|
+
});
|
|
107
|
+
if (path.isBlockStatement() && (context.inCaseClause || context.shouldPopulateBreak)) {
|
|
108
|
+
newContext.shouldPopulateBreak = true;
|
|
109
|
+
} else {
|
|
110
|
+
newContext.shouldPopulateBreak = false;
|
|
111
|
+
}
|
|
112
|
+
const statementCompletions = _getCompletionRecords(path, newContext);
|
|
113
|
+
if (statementCompletions.length > 0 && statementCompletions.every(c => c.type === BREAK_COMPLETION)) {
|
|
114
|
+
if (lastNormalCompletions.length > 0 && statementCompletions.every(c => c.path.isBreakStatement({
|
|
115
|
+
label: null
|
|
116
|
+
}))) {
|
|
117
|
+
normalCompletionToBreak(lastNormalCompletions);
|
|
118
|
+
completions.push(...lastNormalCompletions);
|
|
119
|
+
if (lastNormalCompletions.some(c => c.path.isDeclaration())) {
|
|
120
|
+
completions.push(...statementCompletions);
|
|
121
|
+
replaceBreakStatementInBreakCompletion(statementCompletions, true);
|
|
122
|
+
}
|
|
123
|
+
replaceBreakStatementInBreakCompletion(statementCompletions, false);
|
|
124
|
+
} else {
|
|
125
|
+
completions.push(...statementCompletions);
|
|
126
|
+
if (!context.shouldPopulateBreak) {
|
|
127
|
+
replaceBreakStatementInBreakCompletion(statementCompletions, true);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
break;
|
|
131
|
+
}
|
|
132
|
+
if (i === paths.length - 1) {
|
|
133
|
+
completions.push(...statementCompletions);
|
|
134
|
+
} else {
|
|
135
|
+
lastNormalCompletions = [];
|
|
136
|
+
for (let i = 0; i < statementCompletions.length; i++) {
|
|
137
|
+
const c = statementCompletions[i];
|
|
138
|
+
if (c.type === BREAK_COMPLETION) {
|
|
139
|
+
completions.push(c);
|
|
140
|
+
}
|
|
141
|
+
if (c.type === NORMAL_COMPLETION) {
|
|
142
|
+
lastNormalCompletions.push(c);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
} else if (paths.length) {
|
|
148
|
+
for (let i = paths.length - 1; i >= 0; i--) {
|
|
149
|
+
const pathCompletions = _getCompletionRecords(paths[i], context);
|
|
150
|
+
if (pathCompletions.length > 1 || pathCompletions.length === 1 && !pathCompletions[0].path.isVariableDeclaration()) {
|
|
151
|
+
completions.push(...pathCompletions);
|
|
152
|
+
break;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
return completions;
|
|
157
|
+
}
|
|
158
|
+
function _getCompletionRecords(path, context) {
|
|
159
|
+
let records = [];
|
|
160
|
+
if (path.isIfStatement()) {
|
|
161
|
+
records = addCompletionRecords(path.get("consequent"), records, context);
|
|
162
|
+
records = addCompletionRecords(path.get("alternate"), records, context);
|
|
163
|
+
} else if (path.isDoExpression() || path.isFor() || path.isWhile() || path.isLabeledStatement()) {
|
|
164
|
+
return addCompletionRecords(path.get("body"), records, context);
|
|
165
|
+
} else if (path.isProgram() || path.isBlockStatement()) {
|
|
166
|
+
return getStatementListCompletion(path.get("body"), context);
|
|
167
|
+
} else if (path.isFunction()) {
|
|
168
|
+
return _getCompletionRecords(path.get("body"), context);
|
|
169
|
+
} else if (path.isTryStatement()) {
|
|
170
|
+
records = addCompletionRecords(path.get("block"), records, context);
|
|
171
|
+
records = addCompletionRecords(path.get("handler"), records, context);
|
|
172
|
+
} else if (path.isCatchClause()) {
|
|
173
|
+
return addCompletionRecords(path.get("body"), records, context);
|
|
174
|
+
} else if (path.isSwitchStatement()) {
|
|
175
|
+
return completionRecordForSwitch(path.get("cases"), records, context);
|
|
176
|
+
} else if (path.isSwitchCase()) {
|
|
177
|
+
return getStatementListCompletion(path.get("consequent"), {
|
|
178
|
+
canHaveBreak: true,
|
|
179
|
+
shouldPopulateBreak: false,
|
|
180
|
+
inCaseClause: true
|
|
181
|
+
});
|
|
182
|
+
} else if (path.isBreakStatement()) {
|
|
183
|
+
records.push(BreakCompletion(path));
|
|
184
|
+
} else {
|
|
185
|
+
records.push(NormalCompletion(path));
|
|
186
|
+
}
|
|
187
|
+
return records;
|
|
188
|
+
}
|
|
189
|
+
function getCompletionRecords() {
|
|
190
|
+
const records = _getCompletionRecords(this, {
|
|
191
|
+
canHaveBreak: false,
|
|
192
|
+
shouldPopulateBreak: false,
|
|
193
|
+
inCaseClause: false
|
|
194
|
+
});
|
|
195
|
+
return records.map(r => r.path);
|
|
196
|
+
}
|
|
197
|
+
function getSibling(key) {
|
|
198
|
+
return _index.default.get({
|
|
199
|
+
parentPath: this.parentPath,
|
|
200
|
+
parent: this.parent,
|
|
201
|
+
container: this.container,
|
|
202
|
+
listKey: this.listKey,
|
|
203
|
+
key: key
|
|
204
|
+
}).setContext(this.context);
|
|
205
|
+
}
|
|
206
|
+
function getPrevSibling() {
|
|
207
|
+
return this.getSibling(this.key - 1);
|
|
208
|
+
}
|
|
209
|
+
function getNextSibling() {
|
|
210
|
+
return this.getSibling(this.key + 1);
|
|
211
|
+
}
|
|
212
|
+
function getAllNextSiblings() {
|
|
213
|
+
let _key = this.key;
|
|
214
|
+
let sibling = this.getSibling(++_key);
|
|
215
|
+
const siblings = [];
|
|
216
|
+
while (sibling.node) {
|
|
217
|
+
siblings.push(sibling);
|
|
218
|
+
sibling = this.getSibling(++_key);
|
|
219
|
+
}
|
|
220
|
+
return siblings;
|
|
221
|
+
}
|
|
222
|
+
function getAllPrevSiblings() {
|
|
223
|
+
let _key = this.key;
|
|
224
|
+
let sibling = this.getSibling(--_key);
|
|
225
|
+
const siblings = [];
|
|
226
|
+
while (sibling.node) {
|
|
227
|
+
siblings.push(sibling);
|
|
228
|
+
sibling = this.getSibling(--_key);
|
|
229
|
+
}
|
|
230
|
+
return siblings;
|
|
231
|
+
}
|
|
232
|
+
function get(key, context = true) {
|
|
233
|
+
if (context === true) context = this.context;
|
|
234
|
+
const parts = key.split(".");
|
|
235
|
+
if (parts.length === 1) {
|
|
236
|
+
return this._getKey(key, context);
|
|
237
|
+
} else {
|
|
238
|
+
return this._getPattern(parts, context);
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
function _getKey(key, context) {
|
|
242
|
+
const node = this.node;
|
|
243
|
+
const container = node[key];
|
|
244
|
+
if (Array.isArray(container)) {
|
|
245
|
+
return container.map((_, i) => {
|
|
246
|
+
return _index.default.get({
|
|
247
|
+
listKey: key,
|
|
248
|
+
parentPath: this,
|
|
249
|
+
parent: node,
|
|
250
|
+
container: container,
|
|
251
|
+
key: i
|
|
252
|
+
}).setContext(context);
|
|
253
|
+
});
|
|
254
|
+
} else {
|
|
255
|
+
return _index.default.get({
|
|
256
|
+
parentPath: this,
|
|
257
|
+
parent: node,
|
|
258
|
+
container: node,
|
|
259
|
+
key: key
|
|
260
|
+
}).setContext(context);
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
function _getPattern(parts, context) {
|
|
264
|
+
let path = this;
|
|
265
|
+
for (const part of parts) {
|
|
266
|
+
if (part === ".") {
|
|
267
|
+
path = path.parentPath;
|
|
268
|
+
} else {
|
|
269
|
+
if (Array.isArray(path)) {
|
|
270
|
+
path = path[part];
|
|
271
|
+
} else {
|
|
272
|
+
path = path.get(part, context);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
return path;
|
|
277
|
+
}
|
|
278
|
+
function getBindingIdentifiers(duplicates) {
|
|
279
|
+
return _getBindingIdentifiers(this.node, duplicates);
|
|
280
|
+
}
|
|
281
|
+
function getOuterBindingIdentifiers(duplicates) {
|
|
282
|
+
return _getOuterBindingIdentifiers(this.node, duplicates);
|
|
283
|
+
}
|
|
284
|
+
function getBindingIdentifierPaths(duplicates = false, outerOnly = false) {
|
|
285
|
+
const path = this;
|
|
286
|
+
const search = [path];
|
|
287
|
+
const ids = Object.create(null);
|
|
288
|
+
while (search.length) {
|
|
289
|
+
const id = search.shift();
|
|
290
|
+
if (!id) continue;
|
|
291
|
+
if (!id.node) continue;
|
|
292
|
+
const keys = _getBindingIdentifiers.keys[id.node.type];
|
|
293
|
+
if (id.isIdentifier()) {
|
|
294
|
+
if (duplicates) {
|
|
295
|
+
const _ids = ids[id.node.name] = ids[id.node.name] || [];
|
|
296
|
+
_ids.push(id);
|
|
297
|
+
} else {
|
|
298
|
+
ids[id.node.name] = id;
|
|
299
|
+
}
|
|
300
|
+
continue;
|
|
301
|
+
}
|
|
302
|
+
if (id.isExportDeclaration()) {
|
|
303
|
+
const declaration = id.get("declaration");
|
|
304
|
+
if (isDeclaration(declaration)) {
|
|
305
|
+
search.push(declaration);
|
|
306
|
+
}
|
|
307
|
+
continue;
|
|
308
|
+
}
|
|
309
|
+
if (outerOnly) {
|
|
310
|
+
if (id.isFunctionDeclaration()) {
|
|
311
|
+
search.push(id.get("id"));
|
|
312
|
+
continue;
|
|
313
|
+
}
|
|
314
|
+
if (id.isFunctionExpression()) {
|
|
315
|
+
continue;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
if (keys) {
|
|
319
|
+
for (let i = 0; i < keys.length; i++) {
|
|
320
|
+
const key = keys[i];
|
|
321
|
+
const child = id.get(key);
|
|
322
|
+
if (Array.isArray(child)) {
|
|
323
|
+
search.push(...child);
|
|
324
|
+
} else if (child.node) {
|
|
325
|
+
search.push(child);
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
return ids;
|
|
331
|
+
}
|
|
332
|
+
function getOuterBindingIdentifierPaths(duplicates = false) {
|
|
333
|
+
return this.getBindingIdentifierPaths(duplicates, true);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
//# sourceMappingURL=family.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_index","require","_t","getBindingIdentifiers","_getBindingIdentifiers","getOuterBindingIdentifiers","_getOuterBindingIdentifiers","isDeclaration","numericLiteral","unaryExpression","NORMAL_COMPLETION","BREAK_COMPLETION","NormalCompletion","path","type","BreakCompletion","getOpposite","key","getSibling","addCompletionRecords","records","context","push","_getCompletionRecords","completionRecordForSwitch","cases","lastNormalCompletions","i","length","casePath","caseCompletions","normalCompletions","breakCompletions","c","normalCompletionToBreak","completions","forEach","replaceBreakStatementInBreakCompletion","reachable","isBreakStatement","label","replaceWith","remove","getStatementListCompletion","paths","canHaveBreak","newContext","Object","assign","inCaseClause","isBlockStatement","shouldPopulateBreak","statementCompletions","every","some","pathCompletions","isVariableDeclaration","isIfStatement","get","isDoExpression","isFor","isWhile","isLabeledStatement","isProgram","isFunction","isTryStatement","isCatchClause","isSwitchStatement","isSwitchCase","getCompletionRecords","map","r","NodePath","parentPath","parent","container","listKey","setContext","getPrevSibling","getNextSibling","getAllNextSiblings","_key","sibling","siblings","node","getAllPrevSiblings","parts","split","_getKey","_getPattern","Array","isArray","_","part","duplicates","getBindingIdentifierPaths","outerOnly","search","ids","create","id","shift","keys","isIdentifier","_ids","name","isExportDeclaration","declaration","isFunctionDeclaration","isFunctionExpression","child","getOuterBindingIdentifierPaths"],"sources":["../../src/path/family.ts"],"sourcesContent":["// This file contains methods responsible for dealing with/retrieving children or siblings.\n\nimport type TraversalContext from \"../context.ts\";\nimport NodePath from \"./index.ts\";\nimport {\n getBindingIdentifiers as _getBindingIdentifiers,\n getOuterBindingIdentifiers as _getOuterBindingIdentifiers,\n isDeclaration,\n numericLiteral,\n unaryExpression,\n} from \"@babel/types\";\nimport type * as t from \"@babel/types\";\n\nconst NORMAL_COMPLETION = 0 as const;\nconst BREAK_COMPLETION = 1 as const;\n\ntype Completion = {\n path: NodePath;\n type: 0 | 1;\n};\n\ntype CompletionContext = {\n // whether the current context allows `break` statement. When it allows, we have\n // to search all the statements for potential `break`\n canHaveBreak: boolean;\n // whether the statement is an immediate descendant of a switch case clause\n inCaseClause: boolean;\n // whether the `break` statement record should be populated to upper level\n // when a `break` statement is an immediate descendant of a block statement, e.g.\n // `{ break }`, it can influence the control flow in the upper levels.\n shouldPopulateBreak: boolean;\n};\n\nfunction NormalCompletion(path: NodePath) {\n return { type: NORMAL_COMPLETION, path };\n}\n\nfunction BreakCompletion(path: NodePath) {\n return { type: BREAK_COMPLETION, path };\n}\n\nexport function getOpposite(this: NodePath): NodePath | null {\n if (this.key === \"left\") {\n return this.getSibling(\"right\");\n } else if (this.key === \"right\") {\n return this.getSibling(\"left\");\n }\n return null;\n}\n\nfunction addCompletionRecords(\n path: NodePath | null | undefined,\n records: Completion[],\n context: CompletionContext,\n): Completion[] {\n if (path) {\n records.push(..._getCompletionRecords(path, context));\n }\n return records;\n}\n\nfunction completionRecordForSwitch(\n cases: NodePath<t.SwitchCase>[],\n records: Completion[],\n context: CompletionContext,\n): Completion[] {\n // https://tc39.es/ecma262/#sec-runtime-semantics-caseblockevaluation\n let lastNormalCompletions: Completion[] = [];\n for (let i = 0; i < cases.length; i++) {\n const casePath = cases[i];\n const caseCompletions = _getCompletionRecords(casePath, context);\n const normalCompletions = [];\n const breakCompletions = [];\n for (const c of caseCompletions) {\n if (c.type === NORMAL_COMPLETION) {\n normalCompletions.push(c);\n }\n if (c.type === BREAK_COMPLETION) {\n breakCompletions.push(c);\n }\n }\n if (normalCompletions.length) {\n lastNormalCompletions = normalCompletions;\n }\n records.push(...breakCompletions);\n }\n records.push(...lastNormalCompletions);\n return records;\n}\n\nfunction normalCompletionToBreak(completions: Completion[]) {\n completions.forEach(c => {\n c.type = BREAK_COMPLETION;\n });\n}\n\n/**\n * Determine how we should handle the break statement for break completions\n *\n * @param {Completion[]} completions\n * @param {boolean} reachable Whether the break statement is reachable after\n we mark the normal completions _before_ the given break completions as the final\n completions. For example,\n `{ 0 }; break;` is transformed to `{ return 0 }; break;`, the `break` here is unreachable\n and thus can be removed without consequences. We may in the future reserve them instead since\n we do not consistently remove unreachable statements _after_ break\n `{ var x = 0 }; break;` is transformed to `{ var x = 0 }; return void 0;`, the `break` is reachable\n because we can not wrap variable declaration under a return statement\n */\nfunction replaceBreakStatementInBreakCompletion(\n completions: Completion[],\n reachable: boolean,\n) {\n completions.forEach(c => {\n if (c.path.isBreakStatement({ label: null })) {\n if (reachable) {\n c.path.replaceWith(unaryExpression(\"void\", numericLiteral(0)));\n } else {\n c.path.remove();\n }\n }\n });\n}\n\nfunction getStatementListCompletion(\n paths: NodePath[],\n context: CompletionContext,\n): Completion[] {\n const completions = [];\n if (context.canHaveBreak) {\n let lastNormalCompletions = [];\n for (let i = 0; i < paths.length; i++) {\n const path = paths[i];\n const newContext = { ...context, inCaseClause: false };\n if (\n path.isBlockStatement() &&\n (context.inCaseClause || // case test: { break }\n context.shouldPopulateBreak) // case test: { { break } }\n ) {\n newContext.shouldPopulateBreak = true;\n } else {\n newContext.shouldPopulateBreak = false;\n }\n const statementCompletions = _getCompletionRecords(path, newContext);\n if (\n statementCompletions.length > 0 &&\n // we can stop search `paths` when we have seen a `path` that is\n // effectively a `break` statement. Examples are\n // - `break`\n // - `if (true) { 1; break } else { 2; break }`\n // - `{ break }```\n // In other words, the paths after this `path` are unreachable\n statementCompletions.every(c => c.type === BREAK_COMPLETION)\n ) {\n if (\n lastNormalCompletions.length > 0 &&\n statementCompletions.every(c =>\n c.path.isBreakStatement({ label: null }),\n )\n ) {\n // when a break completion has a path as BreakStatement, it must be `{ break }`\n // whose completion value we can not determine, otherwise it would have been\n // replaced by `replaceBreakStatementInBreakCompletion`\n // When we have seen normal completions from the last statement\n // it is safe to stop populating break and mark normal completions as break\n normalCompletionToBreak(lastNormalCompletions);\n completions.push(...lastNormalCompletions);\n // Declarations have empty completion record, however they can not be nested\n // directly in return statement, i.e. `return (var a = 1)` is invalid.\n if (lastNormalCompletions.some(c => c.path.isDeclaration())) {\n completions.push(...statementCompletions);\n replaceBreakStatementInBreakCompletion(\n statementCompletions,\n /* reachable */ true,\n );\n }\n replaceBreakStatementInBreakCompletion(\n statementCompletions,\n /* reachable */ false,\n );\n } else {\n completions.push(...statementCompletions);\n if (!context.shouldPopulateBreak) {\n replaceBreakStatementInBreakCompletion(\n statementCompletions,\n /* reachable */ true,\n );\n }\n }\n break;\n }\n if (i === paths.length - 1) {\n completions.push(...statementCompletions);\n } else {\n lastNormalCompletions = [];\n for (let i = 0; i < statementCompletions.length; i++) {\n const c = statementCompletions[i];\n if (c.type === BREAK_COMPLETION) {\n completions.push(c);\n }\n if (c.type === NORMAL_COMPLETION) {\n lastNormalCompletions.push(c);\n }\n }\n }\n }\n } else if (paths.length) {\n // When we are in a context where `break` must not exist, we can skip linear\n // search on statement lists and assume that the last\n // non-variable-declaration statement determines the completion.\n for (let i = paths.length - 1; i >= 0; i--) {\n const pathCompletions = _getCompletionRecords(paths[i], context);\n if (\n pathCompletions.length > 1 ||\n (pathCompletions.length === 1 &&\n !pathCompletions[0].path.isVariableDeclaration())\n ) {\n completions.push(...pathCompletions);\n break;\n }\n }\n }\n return completions;\n}\n\nfunction _getCompletionRecords(\n path: NodePath,\n context: CompletionContext,\n): Completion[] {\n let records: Completion[] = [];\n if (path.isIfStatement()) {\n records = addCompletionRecords(path.get(\"consequent\"), records, context);\n records = addCompletionRecords(path.get(\"alternate\"), records, context);\n } else if (\n path.isDoExpression() ||\n path.isFor() ||\n path.isWhile() ||\n path.isLabeledStatement()\n ) {\n // @ts-expect-error(flow->ts): todo\n return addCompletionRecords(path.get(\"body\"), records, context);\n } else if (path.isProgram() || path.isBlockStatement()) {\n // @ts-expect-error(flow->ts): todo\n return getStatementListCompletion(path.get(\"body\"), context);\n } else if (path.isFunction()) {\n return _getCompletionRecords(path.get(\"body\"), context);\n } else if (path.isTryStatement()) {\n records = addCompletionRecords(path.get(\"block\"), records, context);\n records = addCompletionRecords(path.get(\"handler\"), records, context);\n } else if (path.isCatchClause()) {\n return addCompletionRecords(path.get(\"body\"), records, context);\n } else if (path.isSwitchStatement()) {\n return completionRecordForSwitch(path.get(\"cases\"), records, context);\n } else if (path.isSwitchCase()) {\n return getStatementListCompletion(path.get(\"consequent\"), {\n canHaveBreak: true,\n shouldPopulateBreak: false,\n inCaseClause: true,\n });\n } else if (path.isBreakStatement()) {\n records.push(BreakCompletion(path));\n } else {\n records.push(NormalCompletion(path));\n }\n\n return records;\n}\n\n/**\n * Retrieve the completion records of a given path.\n * Note: to ensure proper support on `break` statement, this method\n * will manipulate the AST around the break statement. Do not call the method\n * twice for the same path.\n *\n * @export\n * @param {NodePath} this\n * @returns {NodePath[]} Completion records\n */\nexport function getCompletionRecords(this: NodePath): NodePath[] {\n const records = _getCompletionRecords(this, {\n canHaveBreak: false,\n shouldPopulateBreak: false,\n inCaseClause: false,\n });\n return records.map(r => r.path);\n}\n\nexport function getSibling(this: NodePath, key: string | number): NodePath {\n return NodePath.get({\n parentPath: this.parentPath,\n parent: this.parent,\n container: this.container,\n listKey: this.listKey,\n key: key,\n }).setContext(this.context);\n}\n\nexport function getPrevSibling(this: NodePath): NodePath {\n // @ts-expect-error todo(flow->ts) this.key could be a string\n return this.getSibling(this.key - 1);\n}\n\nexport function getNextSibling(this: NodePath): NodePath {\n // @ts-expect-error todo(flow->ts) this.key could be a string\n return this.getSibling(this.key + 1);\n}\n\nexport function getAllNextSiblings(this: NodePath): NodePath[] {\n // @ts-expect-error todo(flow->ts) this.key could be a string\n let _key: number = this.key;\n let sibling = this.getSibling(++_key);\n const siblings = [];\n while (sibling.node) {\n siblings.push(sibling);\n sibling = this.getSibling(++_key);\n }\n return siblings;\n}\n\nexport function getAllPrevSiblings(this: NodePath): NodePath[] {\n // @ts-expect-error todo(flow->ts) this.key could be a string\n let _key: number = this.key;\n let sibling = this.getSibling(--_key);\n const siblings = [];\n while (sibling.node) {\n siblings.push(sibling);\n sibling = this.getSibling(--_key);\n }\n return siblings;\n}\n\n// convert \"1\" to 1 (string index to number index)\ntype MaybeToIndex<T extends string> = T extends `${bigint}` ? number : T;\n\ntype Pattern<Obj extends string, Prop extends string> = `${Obj}.${Prop}`;\n\n// split \"body.body.1\" to [\"body\", \"body\", 1]\ntype Split<P extends string> = P extends Pattern<infer O, infer U>\n ? [MaybeToIndex<O>, ...Split<U>]\n : [MaybeToIndex<P>];\n\n// get all K with Node[K] is t.Node | t.Node[]\ntype NodeKeyOf<Node extends t.Node | t.Node[]> = keyof Pick<\n Node,\n {\n [Key in keyof Node]-?: Node[Key] extends t.Node | t.Node[] ? Key : never;\n }[keyof Node]\n>;\n\n// traverse the Node with tuple path [\"body\", \"body\", 1]\n// Path should be created with Split\ntype Trav<\n Node extends t.Node | t.Node[],\n Path extends unknown[],\n> = Path extends [infer K, ...infer R]\n ? K extends NodeKeyOf<Node>\n ? R extends []\n ? Node[K]\n : // @ts-expect-error ignore since TS is not smart enough\n Trav<Node[K], R>\n : never\n : never;\n\ntype ToNodePath<T> = T extends Array<t.Node | null | undefined>\n ? Array<NodePath<T[number]>>\n : T extends t.Node | null | undefined\n ? NodePath<T>\n : never;\n\nfunction get<T extends t.Node, K extends keyof T>(\n this: NodePath<T>,\n key: K,\n context?: boolean | TraversalContext,\n): T[K] extends Array<t.Node | null | undefined>\n ? Array<NodePath<T[K][number]>>\n : T[K] extends t.Node | null | undefined\n ? NodePath<T[K]>\n : never;\n\nfunction get<T extends t.Node, K extends string>(\n this: NodePath<T>,\n key: K,\n context?: boolean | TraversalContext,\n): ToNodePath<Trav<T, Split<K>>>;\n\nfunction get<T extends t.Node>(\n this: NodePath<T>,\n key: string,\n context?: true | TraversalContext,\n): NodePath | NodePath[];\n\nfunction get<T extends t.Node>(\n this: NodePath<T>,\n key: string,\n context: true | TraversalContext = true,\n): NodePath | NodePath[] {\n if (context === true) context = this.context;\n const parts = key.split(\".\");\n if (parts.length === 1) {\n // \"foo\"\n // @ts-expect-error key may not index T\n return this._getKey(key, context);\n } else {\n // \"foo.bar\"\n return this._getPattern(parts, context);\n }\n}\n\nexport { get };\n\nexport function _getKey<T extends t.Node>(\n this: NodePath<T>,\n key: keyof T & string,\n context?: TraversalContext,\n): NodePath | NodePath[] {\n const node = this.node;\n const container = node[key];\n\n if (Array.isArray(container)) {\n // requested a container so give them all the paths\n return container.map((_, i) => {\n return NodePath.get({\n listKey: key,\n parentPath: this,\n parent: node,\n container: container,\n key: i,\n }).setContext(context);\n });\n } else {\n return NodePath.get({\n parentPath: this,\n parent: node,\n container: node,\n key: key,\n }).setContext(context);\n }\n}\n\nexport function _getPattern(\n this: NodePath,\n parts: string[],\n context?: TraversalContext,\n): NodePath | NodePath[] {\n let path: NodePath | NodePath[] = this;\n for (const part of parts) {\n if (part === \".\") {\n // @ts-expect-error todo(flow-ts): Can path be an array here?\n path = path.parentPath;\n } else {\n if (Array.isArray(path)) {\n // @ts-expect-error part may not index path\n path = path[part];\n } else {\n path = path.get(part, context);\n }\n }\n }\n return path;\n}\n\nfunction getBindingIdentifiers(\n duplicates: true,\n): Record<string, t.Identifier[]>;\nfunction getBindingIdentifiers(\n duplicates?: false,\n): Record<string, t.Identifier>;\nfunction getBindingIdentifiers(\n duplicates: boolean,\n): Record<string, t.Identifier[] | t.Identifier>;\n\nfunction getBindingIdentifiers(\n this: NodePath,\n duplicates?: boolean,\n): Record<string, t.Identifier[] | t.Identifier> {\n return _getBindingIdentifiers(this.node, duplicates);\n}\n\nexport { getBindingIdentifiers };\n\nfunction getOuterBindingIdentifiers(\n duplicates: true,\n): Record<string, t.Identifier[]>;\nfunction getOuterBindingIdentifiers(\n duplicates?: false,\n): Record<string, t.Identifier>;\nfunction getOuterBindingIdentifiers(\n duplicates: boolean,\n): Record<string, t.Identifier[] | t.Identifier>;\n\nfunction getOuterBindingIdentifiers(\n this: NodePath,\n duplicates?: boolean,\n): Record<string, t.Identifier[] | t.Identifier> {\n return _getOuterBindingIdentifiers(this.node, duplicates);\n}\n\nexport { getOuterBindingIdentifiers };\n\nfunction getBindingIdentifierPaths(\n duplicates: true,\n outerOnly?: boolean,\n): Record<string, NodePath<t.Identifier>[]>;\nfunction getBindingIdentifierPaths(\n duplicates: false,\n outerOnly?: boolean,\n): Record<string, NodePath<t.Identifier>>;\nfunction getBindingIdentifierPaths(\n duplicates?: boolean,\n outerOnly?: boolean,\n): Record<string, NodePath<t.Identifier> | NodePath<t.Identifier>[]>;\n\n// original source - https://github.com/babel/babel/blob/main/packages/babel-types/src/retrievers/getBindingIdentifiers.js\n// path.getBindingIdentifiers returns nodes where the following re-implementation returns paths\nfunction getBindingIdentifierPaths(\n this: NodePath,\n duplicates: boolean = false,\n outerOnly: boolean = false,\n): Record<string, NodePath<t.Identifier> | NodePath<t.Identifier>[]> {\n const path = this;\n const search = [path];\n const ids = Object.create(null);\n\n while (search.length) {\n const id = search.shift();\n if (!id) continue;\n if (!id.node) continue;\n\n const keys =\n // @ts-expect-error _getBindingIdentifiers.keys do not cover all node types\n _getBindingIdentifiers.keys[id.node.type];\n\n if (id.isIdentifier()) {\n if (duplicates) {\n const _ids = (ids[id.node.name] = ids[id.node.name] || []);\n _ids.push(id);\n } else {\n ids[id.node.name] = id;\n }\n continue;\n }\n\n if (id.isExportDeclaration()) {\n const declaration = id.get(\"declaration\");\n if (isDeclaration(declaration)) {\n search.push(declaration);\n }\n continue;\n }\n\n if (outerOnly) {\n if (id.isFunctionDeclaration()) {\n search.push(id.get(\"id\"));\n continue;\n }\n if (id.isFunctionExpression()) {\n continue;\n }\n }\n\n if (keys) {\n for (let i = 0; i < keys.length; i++) {\n const key = keys[i];\n const child = id.get(key);\n if (Array.isArray(child)) {\n search.push(...child);\n } else if (child.node) {\n search.push(child);\n }\n }\n }\n }\n\n return ids;\n}\n\nexport { getBindingIdentifierPaths };\n\nfunction getOuterBindingIdentifierPaths(\n duplicates: true,\n): Record<string, NodePath<t.Identifier>[]>;\nfunction getOuterBindingIdentifierPaths(\n duplicates?: false,\n): Record<string, NodePath<t.Identifier>>;\nfunction getOuterBindingIdentifierPaths(\n duplicates?: boolean,\n): Record<string, NodePath<t.Identifier> | NodePath<t.Identifier>[]>;\n\nfunction getOuterBindingIdentifierPaths(\n this: NodePath,\n duplicates: boolean = false,\n) {\n return this.getBindingIdentifierPaths(duplicates, true);\n}\n\nexport { getOuterBindingIdentifierPaths };\n"],"mappings":"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"}
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = exports.SHOULD_STOP = exports.SHOULD_SKIP = exports.REMOVED = void 0;
|
|
7
|
+
var virtualTypes = require("./lib/virtual-types.js");
|
|
8
|
+
var _debug = require("debug");
|
|
9
|
+
var _index = require("../index.js");
|
|
10
|
+
var _index2 = require("../scope/index.js");
|
|
11
|
+
var _t = require("@babel/types");
|
|
12
|
+
var t = _t;
|
|
13
|
+
var cache = require("../cache.js");
|
|
14
|
+
var _generator = require("@babel/generator");
|
|
15
|
+
var NodePath_ancestry = require("./ancestry.js");
|
|
16
|
+
var NodePath_inference = require("./inference/index.js");
|
|
17
|
+
var NodePath_replacement = require("./replacement.js");
|
|
18
|
+
var NodePath_evaluation = require("./evaluation.js");
|
|
19
|
+
var NodePath_conversion = require("./conversion.js");
|
|
20
|
+
var NodePath_introspection = require("./introspection.js");
|
|
21
|
+
var NodePath_context = require("./context.js");
|
|
22
|
+
var NodePath_removal = require("./removal.js");
|
|
23
|
+
var NodePath_modification = require("./modification.js");
|
|
24
|
+
var NodePath_family = require("./family.js");
|
|
25
|
+
var NodePath_comments = require("./comments.js");
|
|
26
|
+
var NodePath_virtual_types_validator = require("./lib/virtual-types-validator.js");
|
|
27
|
+
const {
|
|
28
|
+
validate
|
|
29
|
+
} = _t;
|
|
30
|
+
const debug = _debug("babel");
|
|
31
|
+
const REMOVED = exports.REMOVED = 1 << 0;
|
|
32
|
+
const SHOULD_STOP = exports.SHOULD_STOP = 1 << 1;
|
|
33
|
+
const SHOULD_SKIP = exports.SHOULD_SKIP = 1 << 2;
|
|
34
|
+
class NodePath {
|
|
35
|
+
constructor(hub, parent) {
|
|
36
|
+
this.contexts = [];
|
|
37
|
+
this.state = null;
|
|
38
|
+
this.opts = null;
|
|
39
|
+
this._traverseFlags = 0;
|
|
40
|
+
this.skipKeys = null;
|
|
41
|
+
this.parentPath = null;
|
|
42
|
+
this.container = null;
|
|
43
|
+
this.listKey = null;
|
|
44
|
+
this.key = null;
|
|
45
|
+
this.node = null;
|
|
46
|
+
this.type = null;
|
|
47
|
+
this.parent = parent;
|
|
48
|
+
this.hub = hub;
|
|
49
|
+
this.data = null;
|
|
50
|
+
this.context = null;
|
|
51
|
+
this.scope = null;
|
|
52
|
+
}
|
|
53
|
+
static get({
|
|
54
|
+
hub,
|
|
55
|
+
parentPath,
|
|
56
|
+
parent,
|
|
57
|
+
container,
|
|
58
|
+
listKey,
|
|
59
|
+
key
|
|
60
|
+
}) {
|
|
61
|
+
if (!hub && parentPath) {
|
|
62
|
+
hub = parentPath.hub;
|
|
63
|
+
}
|
|
64
|
+
if (!parent) {
|
|
65
|
+
throw new Error("To get a node path the parent needs to exist");
|
|
66
|
+
}
|
|
67
|
+
const targetNode = container[key];
|
|
68
|
+
const paths = cache.getOrCreateCachedPaths(hub, parent);
|
|
69
|
+
let path = paths.get(targetNode);
|
|
70
|
+
if (!path) {
|
|
71
|
+
path = new NodePath(hub, parent);
|
|
72
|
+
if (targetNode) paths.set(targetNode, path);
|
|
73
|
+
}
|
|
74
|
+
path.setup(parentPath, container, listKey, key);
|
|
75
|
+
return path;
|
|
76
|
+
}
|
|
77
|
+
getScope(scope) {
|
|
78
|
+
return this.isScope() ? new _index2.default(this) : scope;
|
|
79
|
+
}
|
|
80
|
+
setData(key, val) {
|
|
81
|
+
if (this.data == null) {
|
|
82
|
+
this.data = Object.create(null);
|
|
83
|
+
}
|
|
84
|
+
return this.data[key] = val;
|
|
85
|
+
}
|
|
86
|
+
getData(key, def) {
|
|
87
|
+
if (this.data == null) {
|
|
88
|
+
this.data = Object.create(null);
|
|
89
|
+
}
|
|
90
|
+
let val = this.data[key];
|
|
91
|
+
if (val === undefined && def !== undefined) val = this.data[key] = def;
|
|
92
|
+
return val;
|
|
93
|
+
}
|
|
94
|
+
hasNode() {
|
|
95
|
+
return this.node != null;
|
|
96
|
+
}
|
|
97
|
+
buildCodeFrameError(msg, Error = SyntaxError) {
|
|
98
|
+
return this.hub.buildError(this.node, msg, Error);
|
|
99
|
+
}
|
|
100
|
+
traverse(visitor, state) {
|
|
101
|
+
(0, _index.default)(this.node, visitor, this.scope, state, this);
|
|
102
|
+
}
|
|
103
|
+
set(key, node) {
|
|
104
|
+
validate(this.node, key, node);
|
|
105
|
+
this.node[key] = node;
|
|
106
|
+
}
|
|
107
|
+
getPathLocation() {
|
|
108
|
+
const parts = [];
|
|
109
|
+
let path = this;
|
|
110
|
+
do {
|
|
111
|
+
let key = path.key;
|
|
112
|
+
if (path.inList) key = `${path.listKey}[${key}]`;
|
|
113
|
+
parts.unshift(key);
|
|
114
|
+
} while (path = path.parentPath);
|
|
115
|
+
return parts.join(".");
|
|
116
|
+
}
|
|
117
|
+
debug(message) {
|
|
118
|
+
if (!debug.enabled) return;
|
|
119
|
+
debug(`${this.getPathLocation()} ${this.type}: ${message}`);
|
|
120
|
+
}
|
|
121
|
+
toString() {
|
|
122
|
+
return (0, _generator.default)(this.node).code;
|
|
123
|
+
}
|
|
124
|
+
get inList() {
|
|
125
|
+
return !!this.listKey;
|
|
126
|
+
}
|
|
127
|
+
set inList(inList) {
|
|
128
|
+
if (!inList) {
|
|
129
|
+
this.listKey = null;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
get parentKey() {
|
|
133
|
+
return this.listKey || this.key;
|
|
134
|
+
}
|
|
135
|
+
get shouldSkip() {
|
|
136
|
+
return !!(this._traverseFlags & SHOULD_SKIP);
|
|
137
|
+
}
|
|
138
|
+
set shouldSkip(v) {
|
|
139
|
+
if (v) {
|
|
140
|
+
this._traverseFlags |= SHOULD_SKIP;
|
|
141
|
+
} else {
|
|
142
|
+
this._traverseFlags &= ~SHOULD_SKIP;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
get shouldStop() {
|
|
146
|
+
return !!(this._traverseFlags & SHOULD_STOP);
|
|
147
|
+
}
|
|
148
|
+
set shouldStop(v) {
|
|
149
|
+
if (v) {
|
|
150
|
+
this._traverseFlags |= SHOULD_STOP;
|
|
151
|
+
} else {
|
|
152
|
+
this._traverseFlags &= ~SHOULD_STOP;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
get removed() {
|
|
156
|
+
return !!(this._traverseFlags & REMOVED);
|
|
157
|
+
}
|
|
158
|
+
set removed(v) {
|
|
159
|
+
if (v) {
|
|
160
|
+
this._traverseFlags |= REMOVED;
|
|
161
|
+
} else {
|
|
162
|
+
this._traverseFlags &= ~REMOVED;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
Object.assign(NodePath.prototype, NodePath_ancestry, NodePath_inference, NodePath_replacement, NodePath_evaluation, NodePath_conversion, NodePath_introspection, NodePath_context, NodePath_removal, NodePath_modification, NodePath_family, NodePath_comments);
|
|
167
|
+
{
|
|
168
|
+
NodePath.prototype._guessExecutionStatusRelativeToDifferentFunctions = NodePath_introspection._guessExecutionStatusRelativeTo;
|
|
169
|
+
}
|
|
170
|
+
for (const type of t.TYPES) {
|
|
171
|
+
const typeKey = `is${type}`;
|
|
172
|
+
const fn = t[typeKey];
|
|
173
|
+
NodePath.prototype[typeKey] = function (opts) {
|
|
174
|
+
return fn(this.node, opts);
|
|
175
|
+
};
|
|
176
|
+
NodePath.prototype[`assert${type}`] = function (opts) {
|
|
177
|
+
if (!fn(this.node, opts)) {
|
|
178
|
+
throw new TypeError(`Expected node path of type ${type}`);
|
|
179
|
+
}
|
|
180
|
+
};
|
|
181
|
+
}
|
|
182
|
+
Object.assign(NodePath.prototype, NodePath_virtual_types_validator);
|
|
183
|
+
for (const type of Object.keys(virtualTypes)) {
|
|
184
|
+
if (type[0] === "_") continue;
|
|
185
|
+
if (!t.TYPES.includes(type)) t.TYPES.push(type);
|
|
186
|
+
}
|
|
187
|
+
var _default = exports.default = NodePath;
|
|
188
|
+
|
|
189
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["virtualTypes","require","_debug","_index","_index2","_t","t","cache","_generator","NodePath_ancestry","NodePath_inference","NodePath_replacement","NodePath_evaluation","NodePath_conversion","NodePath_introspection","NodePath_context","NodePath_removal","NodePath_modification","NodePath_family","NodePath_comments","NodePath_virtual_types_validator","validate","debug","buildDebug","REMOVED","exports","SHOULD_STOP","SHOULD_SKIP","NodePath","constructor","hub","parent","contexts","state","opts","_traverseFlags","skipKeys","parentPath","container","listKey","key","node","type","data","context","scope","get","Error","targetNode","paths","getOrCreateCachedPaths","path","set","setup","getScope","isScope","Scope","setData","val","Object","create","getData","def","undefined","hasNode","buildCodeFrameError","msg","SyntaxError","buildError","traverse","visitor","getPathLocation","parts","inList","unshift","join","message","enabled","toString","generator","code","parentKey","shouldSkip","v","shouldStop","removed","assign","prototype","_guessExecutionStatusRelativeToDifferentFunctions","_guessExecutionStatusRelativeTo","TYPES","typeKey","fn","TypeError","keys","includes","push","_default","default"],"sources":["../../src/path/index.ts"],"sourcesContent":["import type { HubInterface } from \"../hub.ts\";\nimport type TraversalContext from \"../context.ts\";\nimport type { ExplodedTraverseOptions } from \"../index.ts\";\nimport * as virtualTypes from \"./lib/virtual-types.ts\";\nimport buildDebug from \"debug\";\nimport traverse from \"../index.ts\";\nimport type { Visitor } from \"../types.ts\";\nimport Scope from \"../scope/index.ts\";\nimport { validate } from \"@babel/types\";\nimport * as t from \"@babel/types\";\nimport * as cache from \"../cache.ts\";\nimport generator from \"@babel/generator\";\n\n// NodePath is split across many files.\nimport * as NodePath_ancestry from \"./ancestry.ts\";\nimport * as NodePath_inference from \"./inference/index.ts\";\nimport * as NodePath_replacement from \"./replacement.ts\";\nimport * as NodePath_evaluation from \"./evaluation.ts\";\nimport * as NodePath_conversion from \"./conversion.ts\";\nimport * as NodePath_introspection from \"./introspection.ts\";\nimport * as NodePath_context from \"./context.ts\";\nimport * as NodePath_removal from \"./removal.ts\";\nimport * as NodePath_modification from \"./modification.ts\";\nimport * as NodePath_family from \"./family.ts\";\nimport * as NodePath_comments from \"./comments.ts\";\nimport * as NodePath_virtual_types_validator from \"./lib/virtual-types-validator.ts\";\nimport type { NodePathAssertions } from \"./generated/asserts.ts\";\nimport type { NodePathValidators } from \"./generated/validators.ts\";\n\nconst debug = buildDebug(\"babel\");\n\nexport const REMOVED = 1 << 0;\nexport const SHOULD_STOP = 1 << 1;\nexport const SHOULD_SKIP = 1 << 2;\n\nclass NodePath<T extends t.Node = t.Node> {\n constructor(hub: HubInterface, parent: t.ParentMaps[T[\"type\"]]) {\n this.parent = parent;\n this.hub = hub;\n this.data = null;\n\n this.context = null;\n this.scope = null;\n }\n\n declare parent: t.ParentMaps[T[\"type\"]];\n declare hub: HubInterface;\n declare data: Record<string | symbol, unknown>;\n // TraversalContext is configured by setContext\n declare context: TraversalContext;\n declare scope: Scope;\n\n contexts: Array<TraversalContext> = [];\n state: any = null;\n opts: ExplodedTraverseOptions | null = null;\n // this.shouldSkip = false; this.shouldStop = false; this.removed = false;\n _traverseFlags: number = 0;\n skipKeys: Record<string, boolean> | null = null;\n parentPath: t.ParentMaps[T[\"type\"]] extends null\n ? null\n : NodePath<t.ParentMaps[T[\"type\"]]> | null = null;\n container: t.Node | Array<t.Node> | null = null;\n listKey: string | null = null;\n key: string | number | null = null;\n node: T = null;\n type: T[\"type\"] | null = null;\n\n static get({\n hub,\n parentPath,\n parent,\n container,\n listKey,\n key,\n }: {\n hub?: HubInterface;\n parentPath: NodePath | null;\n parent: t.Node;\n container: t.Node | t.Node[];\n listKey?: string;\n key: string | number;\n }): NodePath {\n if (!hub && parentPath) {\n hub = parentPath.hub;\n }\n\n if (!parent) {\n throw new Error(\"To get a node path the parent needs to exist\");\n }\n\n const targetNode =\n // @ts-expect-error key must present in container\n container[key];\n\n const paths = cache.getOrCreateCachedPaths(hub, parent);\n\n let path = paths.get(targetNode);\n if (!path) {\n path = new NodePath(hub, parent);\n if (targetNode) paths.set(targetNode, path);\n }\n\n path.setup(parentPath, container, listKey, key);\n\n return path;\n }\n\n getScope(scope: Scope): Scope {\n return this.isScope() ? new Scope(this) : scope;\n }\n\n setData(key: string | symbol, val: any): any {\n if (this.data == null) {\n this.data = Object.create(null);\n }\n return (this.data[key] = val);\n }\n\n getData(key: string | symbol, def?: any): any {\n if (this.data == null) {\n this.data = Object.create(null);\n }\n let val = this.data[key];\n if (val === undefined && def !== undefined) val = this.data[key] = def;\n return val;\n }\n\n hasNode(): this is NodePath<NonNullable<this[\"node\"]>> {\n return this.node != null;\n }\n\n buildCodeFrameError(\n msg: string,\n Error: new () => Error = SyntaxError,\n ): Error {\n return this.hub.buildError(this.node, msg, Error);\n }\n\n traverse<T>(visitor: Visitor<T>, state: T): void;\n traverse(visitor: Visitor): void;\n traverse(visitor: any, state?: any) {\n traverse(this.node, visitor, this.scope, state, this);\n }\n\n set(key: string, node: any) {\n validate(this.node, key, node);\n // @ts-expect-error key must present in this.node\n this.node[key] = node;\n }\n\n getPathLocation(): string {\n const parts = [];\n let path: NodePath = this;\n do {\n let key = path.key;\n if (path.inList) key = `${path.listKey}[${key}]`;\n parts.unshift(key);\n } while ((path = path.parentPath));\n return parts.join(\".\");\n }\n\n debug(message: string) {\n if (!debug.enabled) return;\n debug(`${this.getPathLocation()} ${this.type}: ${message}`);\n }\n\n toString() {\n return generator(this.node).code;\n }\n\n get inList() {\n return !!this.listKey;\n }\n\n set inList(inList) {\n if (!inList) {\n this.listKey = null;\n }\n // ignore inList = true as it should depend on `listKey`\n }\n\n get parentKey(): string {\n return (this.listKey || this.key) as string;\n }\n\n get shouldSkip() {\n return !!(this._traverseFlags & SHOULD_SKIP);\n }\n\n set shouldSkip(v) {\n if (v) {\n this._traverseFlags |= SHOULD_SKIP;\n } else {\n this._traverseFlags &= ~SHOULD_SKIP;\n }\n }\n\n get shouldStop() {\n return !!(this._traverseFlags & SHOULD_STOP);\n }\n\n set shouldStop(v) {\n if (v) {\n this._traverseFlags |= SHOULD_STOP;\n } else {\n this._traverseFlags &= ~SHOULD_STOP;\n }\n }\n\n get removed() {\n return !!(this._traverseFlags & REMOVED);\n }\n set removed(v) {\n if (v) {\n this._traverseFlags |= REMOVED;\n } else {\n this._traverseFlags &= ~REMOVED;\n }\n }\n}\n\nObject.assign(\n NodePath.prototype,\n NodePath_ancestry,\n NodePath_inference,\n NodePath_replacement,\n NodePath_evaluation,\n NodePath_conversion,\n NodePath_introspection,\n NodePath_context,\n NodePath_removal,\n NodePath_modification,\n NodePath_family,\n NodePath_comments,\n);\n\nif (!process.env.BABEL_8_BREAKING) {\n // @ts-expect-error The original _guessExecutionStatusRelativeToDifferentFunctions only worked for paths in\n // different functions, but _guessExecutionStatusRelativeTo works as a replacement in those cases.\n NodePath.prototype._guessExecutionStatusRelativeToDifferentFunctions =\n NodePath_introspection._guessExecutionStatusRelativeTo;\n}\n\n// we can not use `import { TYPES } from \"@babel/types\"` here\n// because the transformNamedBabelTypesImportToDestructuring plugin in babel.config.js\n// does not offer live bindings for `TYPES`\n// we can change to `import { TYPES }` when we are publishing ES modules only\nfor (const type of t.TYPES) {\n const typeKey = `is${type}`;\n // @ts-expect-error typeKey must present in t\n const fn = t[typeKey];\n // @ts-expect-error augmenting NodePath prototype\n NodePath.prototype[typeKey] = function (opts: any) {\n return fn(this.node, opts);\n };\n\n // @ts-expect-error augmenting NodePath prototype\n NodePath.prototype[`assert${type}`] = function (opts: any) {\n if (!fn(this.node, opts)) {\n throw new TypeError(`Expected node path of type ${type}`);\n }\n };\n}\n\n// Register virtual types validators after base types validators\nObject.assign(NodePath.prototype, NodePath_virtual_types_validator);\n\nfor (const type of Object.keys(virtualTypes) as (keyof typeof virtualTypes)[]) {\n if (type[0] === \"_\") continue;\n if (!t.TYPES.includes(type)) t.TYPES.push(type);\n}\n\ntype NodePathMixins = typeof NodePath_ancestry &\n typeof NodePath_inference &\n typeof NodePath_replacement &\n typeof NodePath_evaluation &\n typeof NodePath_conversion &\n typeof NodePath_introspection &\n typeof NodePath_context &\n typeof NodePath_removal &\n typeof NodePath_modification &\n typeof NodePath_family &\n typeof NodePath_comments;\n\n// @ts-expect-error TS throws because ensureBlock returns the body node path\n// however, we don't use the return value and treat it as a transform and\n// assertion utilities. For better type inference we annotate it as an\n// assertion method\n// eslint-disable-next-line @typescript-eslint/no-unused-vars\ninterface NodePath<T>\n extends NodePathAssertions,\n NodePathValidators,\n NodePathMixins {\n /**\n * @see ./conversion.ts for implementation\n */\n ensureBlock<\n T extends\n | t.Loop\n | t.WithStatement\n | t.Function\n | t.LabeledStatement\n | t.CatchClause,\n >(\n this: NodePath<T>,\n ): asserts this is NodePath<T & { body: t.BlockStatement }>;\n}\n\nexport default NodePath;\n"],"mappings":"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"}
|