@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,1160 @@
|
|
|
1
|
+
import * as t from '@babel/types';
|
|
2
|
+
export import Node = t.Node;
|
|
3
|
+
|
|
4
|
+
declare const traverse: {
|
|
5
|
+
<S>(
|
|
6
|
+
parent: Node | Node[] | null | undefined,
|
|
7
|
+
opts: TraverseOptions<S>,
|
|
8
|
+
scope: Scope | undefined,
|
|
9
|
+
state: S,
|
|
10
|
+
parentPath?: NodePath,
|
|
11
|
+
): void;
|
|
12
|
+
(
|
|
13
|
+
parent: Node | Node[] | null | undefined,
|
|
14
|
+
opts?: TraverseOptions,
|
|
15
|
+
scope?: Scope,
|
|
16
|
+
state?: any,
|
|
17
|
+
parentPath?: NodePath,
|
|
18
|
+
): void;
|
|
19
|
+
|
|
20
|
+
visitors: typeof visitors;
|
|
21
|
+
verify: typeof visitors.verify;
|
|
22
|
+
explode: typeof visitors.explode;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
export namespace visitors {
|
|
26
|
+
/**
|
|
27
|
+
* `explode()` will take a `Visitor` object with all of the various shorthands
|
|
28
|
+
* that we support, and validates & normalizes it into a common format, ready
|
|
29
|
+
* to be used in traversal.
|
|
30
|
+
*
|
|
31
|
+
* The various shorthands are:
|
|
32
|
+
* - `Identifier() { ... }` -> `Identifier: { enter() { ... } }`
|
|
33
|
+
* - `"Identifier|NumericLiteral": { ... }` -> `Identifier: { ... }, NumericLiteral: { ... }`
|
|
34
|
+
* - Aliases in `@babel/types`: e.g. `Property: { ... }` -> `ObjectProperty: { ... }, ClassProperty: { ... }`
|
|
35
|
+
*
|
|
36
|
+
* Other normalizations are:
|
|
37
|
+
* - Visitors of virtual types are wrapped, so that they are only visited when their dynamic check passes
|
|
38
|
+
* - `enter` and `exit` functions are wrapped in arrays, to ease merging of visitors
|
|
39
|
+
*/
|
|
40
|
+
function explode<S = {}>(
|
|
41
|
+
visitor: Visitor<S>,
|
|
42
|
+
): {
|
|
43
|
+
[Type in Node['type']]?: VisitNodeObject<S, Extract<Node, { type: Type }>>;
|
|
44
|
+
};
|
|
45
|
+
function verify(visitor: Visitor): void;
|
|
46
|
+
function merge<S = {}>(visitors: Array<Visitor<S>>, states?: S[]): Visitor<unknown>;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export default traverse;
|
|
50
|
+
|
|
51
|
+
export interface TraverseOptions<S = Node> extends Visitor<S> {
|
|
52
|
+
scope?: Scope;
|
|
53
|
+
noScope?: boolean;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export type ArrayKeys<T> = { [P in keyof T]: T[P] extends any[] ? P : never }[keyof T];
|
|
57
|
+
|
|
58
|
+
export class Scope {
|
|
59
|
+
constructor(path: NodePath, parentScope?: Scope);
|
|
60
|
+
path: NodePath;
|
|
61
|
+
block: Node;
|
|
62
|
+
parentBlock: Node;
|
|
63
|
+
parent: Scope;
|
|
64
|
+
hub: HubInterface;
|
|
65
|
+
bindings: { [name: string]: Binding };
|
|
66
|
+
|
|
67
|
+
/** Traverse node with current scope and path. */
|
|
68
|
+
traverse<S>(node: Node | Node[], opts: TraverseOptions<S>, state: S): void;
|
|
69
|
+
traverse(node: Node | Node[], opts?: TraverseOptions, state?: any): void;
|
|
70
|
+
|
|
71
|
+
/** Generate a unique identifier and add it to the current scope. */
|
|
72
|
+
generateDeclaredUidIdentifier(name?: string): t.Identifier;
|
|
73
|
+
|
|
74
|
+
/** Generate a unique identifier. */
|
|
75
|
+
generateUidIdentifier(name?: string): t.Identifier;
|
|
76
|
+
|
|
77
|
+
/** Generate a unique `_id1` binding. */
|
|
78
|
+
generateUid(name?: string): string;
|
|
79
|
+
|
|
80
|
+
/** Generate a unique identifier based on a node. */
|
|
81
|
+
generateUidIdentifierBasedOnNode(parent: Node, defaultName?: string): t.Identifier;
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Determine whether evaluating the specific input `node` is a consequenceless reference. ie.
|
|
85
|
+
* evaluating it wont result in potentially arbitrary code from being ran. The following are
|
|
86
|
+
* whitelisted and determined not to cause side effects:
|
|
87
|
+
*
|
|
88
|
+
* - `this` expressions
|
|
89
|
+
* - `super` expressions
|
|
90
|
+
* - Bound identifiers
|
|
91
|
+
*/
|
|
92
|
+
isStatic(node: Node): boolean;
|
|
93
|
+
|
|
94
|
+
/** Possibly generate a memoised identifier if it is not static and has consequences. */
|
|
95
|
+
maybeGenerateMemoised(node: Node, dontPush?: boolean): t.Identifier;
|
|
96
|
+
|
|
97
|
+
checkBlockScopedCollisions(local: Node, kind: string, name: string, id: object): void;
|
|
98
|
+
|
|
99
|
+
rename(oldName: string, newName?: string, block?: Node): void;
|
|
100
|
+
|
|
101
|
+
dump(): void;
|
|
102
|
+
|
|
103
|
+
toArray(node: Node, i?: number): Node;
|
|
104
|
+
|
|
105
|
+
registerDeclaration(path: NodePath): void;
|
|
106
|
+
|
|
107
|
+
buildUndefinedNode(): Node;
|
|
108
|
+
|
|
109
|
+
registerConstantViolation(path: NodePath): void;
|
|
110
|
+
|
|
111
|
+
registerBinding(kind: string, path: NodePath, bindingPath?: NodePath): void;
|
|
112
|
+
|
|
113
|
+
addGlobal(node: Node): void;
|
|
114
|
+
|
|
115
|
+
hasUid(name: string): boolean;
|
|
116
|
+
|
|
117
|
+
hasGlobal(name: string): boolean;
|
|
118
|
+
|
|
119
|
+
hasReference(name: string): boolean;
|
|
120
|
+
|
|
121
|
+
isPure(node: Node, constantsOnly?: boolean): boolean;
|
|
122
|
+
|
|
123
|
+
setData(key: string, val: any): any;
|
|
124
|
+
|
|
125
|
+
getData(key: string): any;
|
|
126
|
+
|
|
127
|
+
removeData(key: string): void;
|
|
128
|
+
|
|
129
|
+
crawl(): void;
|
|
130
|
+
|
|
131
|
+
push(opts: { id: t.LVal; init?: t.Expression; unique?: boolean; kind?: 'var' | 'let' | 'const' }): void;
|
|
132
|
+
|
|
133
|
+
getProgramParent(): Scope;
|
|
134
|
+
|
|
135
|
+
getFunctionParent(): Scope | null;
|
|
136
|
+
|
|
137
|
+
getBlockParent(): Scope;
|
|
138
|
+
|
|
139
|
+
/** Walks the scope tree and gathers **all** bindings. */
|
|
140
|
+
getAllBindings(...kinds: string[]): object;
|
|
141
|
+
|
|
142
|
+
bindingIdentifierEquals(name: string, node: Node): boolean;
|
|
143
|
+
|
|
144
|
+
getBinding(name: string): Binding | undefined;
|
|
145
|
+
|
|
146
|
+
getOwnBinding(name: string): Binding | undefined;
|
|
147
|
+
|
|
148
|
+
getBindingIdentifier(name: string): t.Identifier;
|
|
149
|
+
|
|
150
|
+
getOwnBindingIdentifier(name: string): t.Identifier;
|
|
151
|
+
|
|
152
|
+
hasOwnBinding(name: string): boolean;
|
|
153
|
+
|
|
154
|
+
hasBinding(name: string, noGlobals?: boolean): boolean;
|
|
155
|
+
|
|
156
|
+
parentHasBinding(name: string, noGlobals?: boolean): boolean;
|
|
157
|
+
|
|
158
|
+
/** Move a binding of `name` to another `scope`. */
|
|
159
|
+
moveBindingTo(name: string, scope: Scope): void;
|
|
160
|
+
|
|
161
|
+
removeOwnBinding(name: string): void;
|
|
162
|
+
|
|
163
|
+
removeBinding(name: string): void;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export class Binding {
|
|
167
|
+
constructor(opts: {
|
|
168
|
+
existing: Binding;
|
|
169
|
+
identifier: t.Identifier;
|
|
170
|
+
scope: Scope;
|
|
171
|
+
path: NodePath;
|
|
172
|
+
kind: 'var' | 'let' | 'const';
|
|
173
|
+
});
|
|
174
|
+
identifier: t.Identifier;
|
|
175
|
+
scope: Scope;
|
|
176
|
+
path: NodePath;
|
|
177
|
+
kind: 'var' | 'let' | 'const' | 'module';
|
|
178
|
+
referenced: boolean;
|
|
179
|
+
references: number;
|
|
180
|
+
referencePaths: NodePath[];
|
|
181
|
+
constant: boolean;
|
|
182
|
+
constantViolations: NodePath[];
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
export type Visitor<S = {}> = VisitNodeObject<S, Node> &
|
|
186
|
+
{
|
|
187
|
+
[Type in Node['type']]?: VisitNode<S, Extract<Node, { type: Type }>>;
|
|
188
|
+
} &
|
|
189
|
+
{
|
|
190
|
+
[K in keyof t.Aliases]?: VisitNode<S, t.Aliases[K]>;
|
|
191
|
+
};
|
|
192
|
+
|
|
193
|
+
export type VisitNode<S, P extends Node> = VisitNodeFunction<S, P> | VisitNodeObject<S, P>;
|
|
194
|
+
|
|
195
|
+
export type VisitNodeFunction<S, P extends Node> = (this: S, path: NodePath<P>, state: S) => void;
|
|
196
|
+
|
|
197
|
+
type NodeType = Node['type'] | keyof t.Aliases;
|
|
198
|
+
|
|
199
|
+
export interface VisitNodeObject<S, P extends Node> {
|
|
200
|
+
enter?: VisitNodeFunction<S, P>;
|
|
201
|
+
exit?: VisitNodeFunction<S, P>;
|
|
202
|
+
denylist?: NodeType[];
|
|
203
|
+
/**
|
|
204
|
+
* @deprecated will be removed in Babel 8
|
|
205
|
+
*/
|
|
206
|
+
blacklist?: NodeType[];
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
export type NodePaths<T extends Node | readonly Node[]> = T extends readonly Node[]
|
|
210
|
+
? { -readonly [K in keyof T]: NodePath<Extract<T[K], Node>> }
|
|
211
|
+
: T extends Node
|
|
212
|
+
? [NodePath<T>]
|
|
213
|
+
: never;
|
|
214
|
+
|
|
215
|
+
export class NodePath<T = Node> {
|
|
216
|
+
constructor(hub: Hub, parent: Node);
|
|
217
|
+
parent: Node;
|
|
218
|
+
hub: Hub;
|
|
219
|
+
contexts: TraversalContext[];
|
|
220
|
+
data: object;
|
|
221
|
+
shouldSkip: boolean;
|
|
222
|
+
shouldStop: boolean;
|
|
223
|
+
removed: boolean;
|
|
224
|
+
state: any;
|
|
225
|
+
opts: object;
|
|
226
|
+
skipKeys: object;
|
|
227
|
+
parentPath: T extends t.Program ? null : NodePath;
|
|
228
|
+
context: TraversalContext;
|
|
229
|
+
container: object | object[];
|
|
230
|
+
listKey: string;
|
|
231
|
+
inList: boolean;
|
|
232
|
+
parentKey: string;
|
|
233
|
+
key: string | number;
|
|
234
|
+
node: T;
|
|
235
|
+
scope: Scope;
|
|
236
|
+
type: T extends null | undefined ? undefined : T extends Node ? T['type'] : string | undefined;
|
|
237
|
+
typeAnnotation: object;
|
|
238
|
+
|
|
239
|
+
getScope(scope: Scope): Scope;
|
|
240
|
+
|
|
241
|
+
setData(key: string, val: any): any;
|
|
242
|
+
|
|
243
|
+
getData(key: string, def?: any): any;
|
|
244
|
+
|
|
245
|
+
buildCodeFrameError<TError extends Error>(msg: string, Error?: new (msg: string) => TError): TError;
|
|
246
|
+
|
|
247
|
+
traverse<T>(visitor: Visitor<T>, state: T): void;
|
|
248
|
+
traverse(visitor: Visitor): void;
|
|
249
|
+
|
|
250
|
+
set(key: string, node: Node): void;
|
|
251
|
+
|
|
252
|
+
getPathLocation(): string;
|
|
253
|
+
|
|
254
|
+
// Example: https://github.com/babel/babel/blob/63204ae51e020d84a5b246312f5eeb4d981ab952/packages/babel-traverse/src/path/modification.js#L83
|
|
255
|
+
debug(buildMessage: () => string): void;
|
|
256
|
+
|
|
257
|
+
static get<C extends Node, K extends keyof C>(opts: {
|
|
258
|
+
hub: HubInterface;
|
|
259
|
+
parentPath: NodePath | null;
|
|
260
|
+
parent: Node;
|
|
261
|
+
container: C;
|
|
262
|
+
listKey?: string;
|
|
263
|
+
key: K;
|
|
264
|
+
}): NodePath<C[K]>;
|
|
265
|
+
|
|
266
|
+
//#region ------------------------- ancestry -------------------------
|
|
267
|
+
/**
|
|
268
|
+
* Starting at the parent path of the current `NodePath` and going up the
|
|
269
|
+
* tree, return the first `NodePath` that causes the provided `callback`
|
|
270
|
+
* to return a truthy value, or `null` if the `callback` never returns a
|
|
271
|
+
* truthy value.
|
|
272
|
+
*/
|
|
273
|
+
findParent(callback: (path: NodePath) => boolean): NodePath | null;
|
|
274
|
+
|
|
275
|
+
/**
|
|
276
|
+
* Starting at current `NodePath` and going up the tree, return the first
|
|
277
|
+
* `NodePath` that causes the provided `callback` to return a truthy value,
|
|
278
|
+
* or `null` if the `callback` never returns a truthy value.
|
|
279
|
+
*/
|
|
280
|
+
find(callback: (path: NodePath) => boolean): NodePath | null;
|
|
281
|
+
|
|
282
|
+
/** Get the parent function of the current path. */
|
|
283
|
+
getFunctionParent(): NodePath<t.Function> | null;
|
|
284
|
+
|
|
285
|
+
/** Walk up the tree until we hit a parent node path in a list. */
|
|
286
|
+
getStatementParent(): NodePath<t.Statement> | null;
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* Get the deepest common ancestor and then from it, get the earliest relationship path
|
|
290
|
+
* to that ancestor.
|
|
291
|
+
*
|
|
292
|
+
* Earliest is defined as being "before" all the other nodes in terms of list container
|
|
293
|
+
* position and visiting key.
|
|
294
|
+
*/
|
|
295
|
+
getEarliestCommonAncestorFrom(paths: NodePath[]): NodePath;
|
|
296
|
+
|
|
297
|
+
/** Get the earliest path in the tree where the provided `paths` intersect. */
|
|
298
|
+
getDeepestCommonAncestorFrom(
|
|
299
|
+
paths: NodePath[],
|
|
300
|
+
filter?: (deepest: Node, i: number, ancestries: NodePath[]) => NodePath,
|
|
301
|
+
): NodePath;
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* Build an array of node paths containing the entire ancestry of the current node path.
|
|
305
|
+
*
|
|
306
|
+
* NOTE: The current node path is included in this.
|
|
307
|
+
*/
|
|
308
|
+
getAncestry(): [this, ...NodePath[]];
|
|
309
|
+
|
|
310
|
+
/**
|
|
311
|
+
* A helper to find if `this` path is an ancestor of `maybeDescendant`
|
|
312
|
+
*/
|
|
313
|
+
isAncestor(maybeDescendant: NodePath): boolean;
|
|
314
|
+
|
|
315
|
+
/**
|
|
316
|
+
* A helper to find if `this` path is a descendant of `maybeAncestor`
|
|
317
|
+
*/
|
|
318
|
+
isDescendant(maybeAncestor: NodePath): boolean;
|
|
319
|
+
|
|
320
|
+
inType(...candidateTypes: string[]): boolean;
|
|
321
|
+
//#endregion
|
|
322
|
+
|
|
323
|
+
//#region ------------------------- inference -------------------------
|
|
324
|
+
/** Infer the type of the current `NodePath`. */
|
|
325
|
+
getTypeAnnotation(): t.FlowType;
|
|
326
|
+
|
|
327
|
+
isBaseType(baseName: string, soft?: boolean): boolean;
|
|
328
|
+
|
|
329
|
+
couldBeBaseType(name: string): boolean;
|
|
330
|
+
|
|
331
|
+
baseTypeStrictlyMatches(right: NodePath): boolean;
|
|
332
|
+
|
|
333
|
+
isGenericType(genericName: string): boolean;
|
|
334
|
+
//#endregion
|
|
335
|
+
|
|
336
|
+
//#region ------------------------- replacement -------------------------
|
|
337
|
+
/**
|
|
338
|
+
* Replace a node with an array of multiple. This method performs the following steps:
|
|
339
|
+
*
|
|
340
|
+
* - Inherit the comments of first provided node with that of the current node.
|
|
341
|
+
* - Insert the provided nodes after the current node.
|
|
342
|
+
* - Remove the current node.
|
|
343
|
+
*/
|
|
344
|
+
replaceWithMultiple<Nodes extends readonly Node[]>(nodes: Nodes): NodePaths<Nodes>;
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* Parse a string as an expression and replace the current node with the result.
|
|
348
|
+
*
|
|
349
|
+
* NOTE: This is typically not a good idea to use. Building source strings when
|
|
350
|
+
* transforming ASTs is an antipattern and SHOULD NOT be encouraged. Even if it's
|
|
351
|
+
* easier to use, your transforms will be extremely brittle.
|
|
352
|
+
*/
|
|
353
|
+
replaceWithSourceString(replacement: any): [NodePath];
|
|
354
|
+
|
|
355
|
+
/** Replace the current node with another. */
|
|
356
|
+
replaceWith<T extends Node>(replacement: T | NodePath<T>): [NodePath<T>];
|
|
357
|
+
|
|
358
|
+
/**
|
|
359
|
+
* This method takes an array of statements nodes and then explodes it
|
|
360
|
+
* into expressions. This method retains completion records which is
|
|
361
|
+
* extremely important to retain original semantics.
|
|
362
|
+
*/
|
|
363
|
+
replaceExpressionWithStatements<Nodes extends readonly Node[]>(nodes: Nodes): NodePaths<Nodes>;
|
|
364
|
+
|
|
365
|
+
replaceInline<Nodes extends Node | readonly Node[]>(nodes: Nodes): NodePaths<Nodes>;
|
|
366
|
+
//#endregion
|
|
367
|
+
|
|
368
|
+
//#region ------------------------- evaluation -------------------------
|
|
369
|
+
/**
|
|
370
|
+
* Walk the input `node` and statically evaluate if it's truthy.
|
|
371
|
+
*
|
|
372
|
+
* Returning `true` when we're sure that the expression will evaluate to a
|
|
373
|
+
* truthy value, `false` if we're sure that it will evaluate to a falsy
|
|
374
|
+
* value and `undefined` if we aren't sure. Because of this please do not
|
|
375
|
+
* rely on coercion when using this method and check with === if it's false.
|
|
376
|
+
*/
|
|
377
|
+
evaluateTruthy(): boolean;
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* Walk the input `node` and statically evaluate it.
|
|
381
|
+
*
|
|
382
|
+
* Returns an object in the form `{ confident, value }`. `confident` indicates
|
|
383
|
+
* whether or not we had to drop out of evaluating the expression because of
|
|
384
|
+
* hitting an unknown node that we couldn't confidently find the value of.
|
|
385
|
+
*
|
|
386
|
+
* Example:
|
|
387
|
+
*
|
|
388
|
+
* t.evaluate(parse("5 + 5")) // { confident: true, value: 10 }
|
|
389
|
+
* t.evaluate(parse("!true")) // { confident: true, value: false }
|
|
390
|
+
* t.evaluate(parse("foo + foo")) // { confident: false, value: undefined }
|
|
391
|
+
*/
|
|
392
|
+
evaluate(): { confident: boolean; value: any };
|
|
393
|
+
//#endregion
|
|
394
|
+
|
|
395
|
+
//#region ------------------------- introspection -------------------------
|
|
396
|
+
/**
|
|
397
|
+
* Match the current node if it matches the provided `pattern`.
|
|
398
|
+
*
|
|
399
|
+
* For example, given the match `React.createClass` it would match the
|
|
400
|
+
* parsed nodes of `React.createClass` and `React["createClass"]`.
|
|
401
|
+
*/
|
|
402
|
+
matchesPattern(pattern: string, allowPartial?: boolean): boolean;
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* Check whether we have the input `key`. If the `key` references an array then we check
|
|
406
|
+
* if the array has any items, otherwise we just check if it's falsy.
|
|
407
|
+
*/
|
|
408
|
+
has(key: string): boolean;
|
|
409
|
+
|
|
410
|
+
isStatic(): boolean;
|
|
411
|
+
|
|
412
|
+
/** Alias of `has`. */
|
|
413
|
+
is(key: string): boolean;
|
|
414
|
+
|
|
415
|
+
/** Opposite of `has`. */
|
|
416
|
+
isnt(key: string): boolean;
|
|
417
|
+
|
|
418
|
+
/** Check whether the path node `key` strict equals `value`. */
|
|
419
|
+
equals(key: string, value: any): boolean;
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* Check the type against our stored internal type of the node. This is handy when a node has
|
|
423
|
+
* been removed yet we still internally know the type and need it to calculate node replacement.
|
|
424
|
+
*/
|
|
425
|
+
isNodeType(type: string): boolean;
|
|
426
|
+
|
|
427
|
+
/**
|
|
428
|
+
* This checks whether or not we're in one of the following positions:
|
|
429
|
+
*
|
|
430
|
+
* for (KEY in right);
|
|
431
|
+
* for (KEY;;);
|
|
432
|
+
*
|
|
433
|
+
* This is because these spots allow VariableDeclarations AND normal expressions so we need
|
|
434
|
+
* to tell the path replacement that it's ok to replace this with an expression.
|
|
435
|
+
*/
|
|
436
|
+
canHaveVariableDeclarationOrExpression(): boolean;
|
|
437
|
+
|
|
438
|
+
/**
|
|
439
|
+
* This checks whether we are swapping an arrow function's body between an
|
|
440
|
+
* expression and a block statement (or vice versa).
|
|
441
|
+
*
|
|
442
|
+
* This is because arrow functions may implicitly return an expression, which
|
|
443
|
+
* is the same as containing a block statement.
|
|
444
|
+
*/
|
|
445
|
+
canSwapBetweenExpressionAndStatement(replacement: Node): boolean;
|
|
446
|
+
|
|
447
|
+
/** Check whether the current path references a completion record */
|
|
448
|
+
isCompletionRecord(allowInsideFunction?: boolean): boolean;
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* Check whether or not the current `key` allows either a single statement or block statement
|
|
452
|
+
* so we can explode it if necessary.
|
|
453
|
+
*/
|
|
454
|
+
isStatementOrBlock(): boolean;
|
|
455
|
+
|
|
456
|
+
/** Check if the currently assigned path references the `importName` of `moduleSource`. */
|
|
457
|
+
referencesImport(moduleSource: string, importName: string): boolean;
|
|
458
|
+
|
|
459
|
+
/** Get the source code associated with this node. */
|
|
460
|
+
getSource(): string;
|
|
461
|
+
|
|
462
|
+
/** Check if the current path will maybe execute before another path */
|
|
463
|
+
willIMaybeExecuteBefore(path: NodePath): boolean;
|
|
464
|
+
//#endregion
|
|
465
|
+
|
|
466
|
+
//#region ------------------------- context -------------------------
|
|
467
|
+
call(key: string): boolean;
|
|
468
|
+
|
|
469
|
+
isBlacklisted(): boolean;
|
|
470
|
+
|
|
471
|
+
visit(): boolean;
|
|
472
|
+
|
|
473
|
+
skip(): void;
|
|
474
|
+
|
|
475
|
+
skipKey(key: string): void;
|
|
476
|
+
|
|
477
|
+
stop(): void;
|
|
478
|
+
|
|
479
|
+
setScope(): void;
|
|
480
|
+
|
|
481
|
+
setContext(context: TraversalContext): NodePath<T>;
|
|
482
|
+
|
|
483
|
+
popContext(): void;
|
|
484
|
+
|
|
485
|
+
pushContext(context: TraversalContext): void;
|
|
486
|
+
//#endregion
|
|
487
|
+
|
|
488
|
+
//#region ------------------------- removal -------------------------
|
|
489
|
+
remove(): void;
|
|
490
|
+
//#endregion
|
|
491
|
+
|
|
492
|
+
//#region ------------------------- modification -------------------------
|
|
493
|
+
/** Insert the provided nodes before the current one. */
|
|
494
|
+
insertBefore<Nodes extends Node | readonly Node[]>(nodes: Nodes): NodePaths<Nodes>;
|
|
495
|
+
|
|
496
|
+
/**
|
|
497
|
+
* Insert the provided nodes after the current one. When inserting nodes after an
|
|
498
|
+
* expression, ensure that the completion record is correct by pushing the current node.
|
|
499
|
+
*/
|
|
500
|
+
insertAfter<Nodes extends Node | readonly Node[]>(nodes: Nodes): NodePaths<Nodes>;
|
|
501
|
+
|
|
502
|
+
/** Update all sibling node paths after `fromIndex` by `incrementBy`. */
|
|
503
|
+
updateSiblingKeys(fromIndex: number, incrementBy: number): void;
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* Insert child nodes at the start of the current node.
|
|
507
|
+
* @param listKey - The key at which the child nodes are stored (usually body).
|
|
508
|
+
* @param nodes - the nodes to insert.
|
|
509
|
+
*/
|
|
510
|
+
unshiftContainer<Nodes extends Node | readonly Node[]>(listKey: ArrayKeys<T>, nodes: Nodes): NodePaths<Nodes>;
|
|
511
|
+
|
|
512
|
+
/**
|
|
513
|
+
* Insert child nodes at the end of the current node.
|
|
514
|
+
* @param listKey - The key at which the child nodes are stored (usually body).
|
|
515
|
+
* @param nodes - the nodes to insert.
|
|
516
|
+
*/
|
|
517
|
+
pushContainer<Nodes extends Node | readonly Node[]>(listKey: ArrayKeys<T>, nodes: Nodes): NodePaths<Nodes>;
|
|
518
|
+
|
|
519
|
+
/** Hoist the current node to the highest scope possible and return a UID referencing it. */
|
|
520
|
+
hoist(scope: Scope): void;
|
|
521
|
+
//#endregion
|
|
522
|
+
|
|
523
|
+
//#region ------------------------- family -------------------------
|
|
524
|
+
getOpposite(): NodePath;
|
|
525
|
+
|
|
526
|
+
getCompletionRecords(): NodePath[];
|
|
527
|
+
|
|
528
|
+
getSibling(key: string | number): NodePath;
|
|
529
|
+
getPrevSibling(): NodePath;
|
|
530
|
+
getNextSibling(): NodePath;
|
|
531
|
+
getAllPrevSiblings(): NodePath[];
|
|
532
|
+
getAllNextSiblings(): NodePath[];
|
|
533
|
+
|
|
534
|
+
get<K extends keyof T>(
|
|
535
|
+
key: K,
|
|
536
|
+
context?: boolean | TraversalContext,
|
|
537
|
+
): T[K] extends Array<Node | null | undefined>
|
|
538
|
+
? Array<NodePath<T[K][number]>>
|
|
539
|
+
: T[K] extends Node | null | undefined
|
|
540
|
+
? NodePath<T[K]>
|
|
541
|
+
: never;
|
|
542
|
+
get(key: string, context?: boolean | TraversalContext): NodePath | NodePath[];
|
|
543
|
+
|
|
544
|
+
getBindingIdentifiers(duplicates?: boolean): Node[];
|
|
545
|
+
|
|
546
|
+
getOuterBindingIdentifiers(duplicates?: boolean): Node[];
|
|
547
|
+
//#endregion
|
|
548
|
+
|
|
549
|
+
//#region ------------------------- comments -------------------------
|
|
550
|
+
/** Share comments amongst siblings. */
|
|
551
|
+
shareCommentsWithSiblings(): void;
|
|
552
|
+
|
|
553
|
+
addComment(type: string, content: string, line?: boolean): void;
|
|
554
|
+
|
|
555
|
+
/** Give node `comments` of the specified `type`. */
|
|
556
|
+
addComments(type: string, comments: any[]): void;
|
|
557
|
+
//#endregion
|
|
558
|
+
|
|
559
|
+
//#region ------------------------- isXXX -------------------------
|
|
560
|
+
isAnyTypeAnnotation(props?: object | null): this is NodePath<t.AnyTypeAnnotation>;
|
|
561
|
+
isArrayExpression(props?: object | null): this is NodePath<t.ArrayExpression>;
|
|
562
|
+
isArrayPattern(props?: object | null): this is NodePath<t.ArrayPattern>;
|
|
563
|
+
isArrayTypeAnnotation(props?: object | null): this is NodePath<t.ArrayTypeAnnotation>;
|
|
564
|
+
isArrowFunctionExpression(props?: object | null): this is NodePath<t.ArrowFunctionExpression>;
|
|
565
|
+
isAssignmentExpression(props?: object | null): this is NodePath<t.AssignmentExpression>;
|
|
566
|
+
isAssignmentPattern(props?: object | null): this is NodePath<t.AssignmentPattern>;
|
|
567
|
+
isAwaitExpression(props?: object | null): this is NodePath<t.AwaitExpression>;
|
|
568
|
+
isBigIntLiteral(props?: object | null): this is NodePath<t.BigIntLiteral>;
|
|
569
|
+
isBinary(props?: object | null): this is NodePath<t.Binary>;
|
|
570
|
+
isBinaryExpression(props?: object | null): this is NodePath<t.BinaryExpression>;
|
|
571
|
+
isBindExpression(props?: object | null): this is NodePath<t.BindExpression>;
|
|
572
|
+
isBlock(props?: object | null): this is NodePath<t.Block>;
|
|
573
|
+
isBlockParent(props?: object | null): this is NodePath<t.BlockParent>;
|
|
574
|
+
isBlockStatement(props?: object | null): this is NodePath<t.BlockStatement>;
|
|
575
|
+
isBooleanLiteral(props?: object | null): this is NodePath<t.BooleanLiteral>;
|
|
576
|
+
isBooleanLiteralTypeAnnotation(props?: object | null): this is NodePath<t.BooleanLiteralTypeAnnotation>;
|
|
577
|
+
isBooleanTypeAnnotation(props?: object | null): this is NodePath<t.BooleanTypeAnnotation>;
|
|
578
|
+
isBreakStatement(props?: object | null): this is NodePath<t.BreakStatement>;
|
|
579
|
+
isCallExpression(props?: object | null): this is NodePath<t.CallExpression>;
|
|
580
|
+
isCatchClause(props?: object | null): this is NodePath<t.CatchClause>;
|
|
581
|
+
isClass(props?: object | null): this is NodePath<t.Class>;
|
|
582
|
+
isClassBody(props?: object | null): this is NodePath<t.ClassBody>;
|
|
583
|
+
isClassDeclaration(props?: object | null): this is NodePath<t.ClassDeclaration>;
|
|
584
|
+
isClassExpression(props?: object | null): this is NodePath<t.ClassExpression>;
|
|
585
|
+
isClassImplements(props?: object | null): this is NodePath<t.ClassImplements>;
|
|
586
|
+
isClassMethod(props?: object | null): this is NodePath<t.ClassMethod>;
|
|
587
|
+
isClassPrivateMethod(props?: object | null): this is NodePath<t.ClassPrivateMethod>;
|
|
588
|
+
isClassPrivateProperty(props?: object | null): this is NodePath<t.ClassPrivateProperty>;
|
|
589
|
+
isClassProperty(props?: object | null): this is NodePath<t.ClassProperty>;
|
|
590
|
+
isCompletionStatement(props?: object | null): this is NodePath<t.CompletionStatement>;
|
|
591
|
+
isConditional(props?: object | null): this is NodePath<t.Conditional>;
|
|
592
|
+
isConditionalExpression(props?: object | null): this is NodePath<t.ConditionalExpression>;
|
|
593
|
+
isContinueStatement(props?: object | null): this is NodePath<t.ContinueStatement>;
|
|
594
|
+
isDebuggerStatement(props?: object | null): this is NodePath<t.DebuggerStatement>;
|
|
595
|
+
isDeclaration(props?: object | null): this is NodePath<t.Declaration>;
|
|
596
|
+
isDeclareClass(props?: object | null): this is NodePath<t.DeclareClass>;
|
|
597
|
+
isDeclareExportAllDeclaration(props?: object | null): this is NodePath<t.DeclareExportAllDeclaration>;
|
|
598
|
+
isDeclareExportDeclaration(props?: object | null): this is NodePath<t.DeclareExportDeclaration>;
|
|
599
|
+
isDeclareFunction(props?: object | null): this is NodePath<t.DeclareFunction>;
|
|
600
|
+
isDeclareInterface(props?: object | null): this is NodePath<t.DeclareInterface>;
|
|
601
|
+
isDeclareModule(props?: object | null): this is NodePath<t.DeclareModule>;
|
|
602
|
+
isDeclareModuleExports(props?: object | null): this is NodePath<t.DeclareModuleExports>;
|
|
603
|
+
isDeclareOpaqueType(props?: object | null): this is NodePath<t.DeclareOpaqueType>;
|
|
604
|
+
isDeclareTypeAlias(props?: object | null): this is NodePath<t.DeclareTypeAlias>;
|
|
605
|
+
isDeclareVariable(props?: object | null): this is NodePath<t.DeclareVariable>;
|
|
606
|
+
isDeclaredPredicate(props?: object | null): this is NodePath<t.DeclaredPredicate>;
|
|
607
|
+
isDecorator(props?: object | null): this is NodePath<t.Decorator>;
|
|
608
|
+
isDirective(props?: object | null): this is NodePath<t.Directive>;
|
|
609
|
+
isDirectiveLiteral(props?: object | null): this is NodePath<t.DirectiveLiteral>;
|
|
610
|
+
isDoExpression(props?: object | null): this is NodePath<t.DoExpression>;
|
|
611
|
+
isDoWhileStatement(props?: object | null): this is NodePath<t.DoWhileStatement>;
|
|
612
|
+
isEmptyStatement(props?: object | null): this is NodePath<t.EmptyStatement>;
|
|
613
|
+
isEmptyTypeAnnotation(props?: object | null): this is NodePath<t.EmptyTypeAnnotation>;
|
|
614
|
+
isExistsTypeAnnotation(props?: object | null): this is NodePath<t.ExistsTypeAnnotation>;
|
|
615
|
+
isExportAllDeclaration(props?: object | null): this is NodePath<t.ExportAllDeclaration>;
|
|
616
|
+
isExportDeclaration(props?: object | null): this is NodePath<t.ExportDeclaration>;
|
|
617
|
+
isExportDefaultDeclaration(props?: object | null): this is NodePath<t.ExportDefaultDeclaration>;
|
|
618
|
+
isExportDefaultSpecifier(props?: object | null): this is NodePath<t.ExportDefaultSpecifier>;
|
|
619
|
+
isExportNamedDeclaration(props?: object | null): this is NodePath<t.ExportNamedDeclaration>;
|
|
620
|
+
isExportNamespaceSpecifier(props?: object | null): this is NodePath<t.ExportNamespaceSpecifier>;
|
|
621
|
+
isExportSpecifier(props?: object | null): this is NodePath<t.ExportSpecifier>;
|
|
622
|
+
isExpression(props?: object | null): this is NodePath<t.Expression>;
|
|
623
|
+
isExpressionStatement(props?: object | null): this is NodePath<t.ExpressionStatement>;
|
|
624
|
+
isExpressionWrapper(props?: object | null): this is NodePath<t.ExpressionWrapper>;
|
|
625
|
+
isFile(props?: object | null): this is NodePath<t.File>;
|
|
626
|
+
isFlow(props?: object | null): this is NodePath<t.Flow>;
|
|
627
|
+
isFlowBaseAnnotation(props?: object | null): this is NodePath<t.FlowBaseAnnotation>;
|
|
628
|
+
isFlowDeclaration(props?: object | null): this is NodePath<t.FlowDeclaration>;
|
|
629
|
+
isFlowPredicate(props?: object | null): this is NodePath<t.FlowPredicate>;
|
|
630
|
+
isFlowType(props?: object | null): this is NodePath<t.FlowType>;
|
|
631
|
+
isFor(props?: object | null): this is NodePath<t.For>;
|
|
632
|
+
isForInStatement(props?: object | null): this is NodePath<t.ForInStatement>;
|
|
633
|
+
isForOfStatement(props?: object | null): this is NodePath<t.ForOfStatement>;
|
|
634
|
+
isForStatement(props?: object | null): this is NodePath<t.ForStatement>;
|
|
635
|
+
isForXStatement(props?: object | null): this is NodePath<t.ForXStatement>;
|
|
636
|
+
isFunction(props?: object | null): this is NodePath<t.Function>;
|
|
637
|
+
isFunctionDeclaration(props?: object | null): this is NodePath<t.FunctionDeclaration>;
|
|
638
|
+
isFunctionExpression(props?: object | null): this is NodePath<t.FunctionExpression>;
|
|
639
|
+
isFunctionParent(props?: object | null): this is NodePath<t.FunctionParent>;
|
|
640
|
+
isFunctionTypeAnnotation(props?: object | null): this is NodePath<t.FunctionTypeAnnotation>;
|
|
641
|
+
isFunctionTypeParam(props?: object | null): this is NodePath<t.FunctionTypeParam>;
|
|
642
|
+
isGenericTypeAnnotation(props?: object | null): this is NodePath<t.GenericTypeAnnotation>;
|
|
643
|
+
isIdentifier(props?: object | null): this is NodePath<t.Identifier>;
|
|
644
|
+
isIfStatement(props?: object | null): this is NodePath<t.IfStatement>;
|
|
645
|
+
isImmutable(props?: object | null): this is NodePath<t.Immutable>;
|
|
646
|
+
isImport(props?: object | null): this is NodePath<t.Import>;
|
|
647
|
+
isImportDeclaration(props?: object | null): this is NodePath<t.ImportDeclaration>;
|
|
648
|
+
isImportDefaultSpecifier(props?: object | null): this is NodePath<t.ImportDefaultSpecifier>;
|
|
649
|
+
isImportNamespaceSpecifier(props?: object | null): this is NodePath<t.ImportNamespaceSpecifier>;
|
|
650
|
+
isImportSpecifier(props?: object | null): this is NodePath<t.ImportSpecifier>;
|
|
651
|
+
isInferredPredicate(props?: object | null): this is NodePath<t.InferredPredicate>;
|
|
652
|
+
isInterfaceDeclaration(props?: object | null): this is NodePath<t.InterfaceDeclaration>;
|
|
653
|
+
isInterfaceExtends(props?: object | null): this is NodePath<t.InterfaceExtends>;
|
|
654
|
+
isInterfaceTypeAnnotation(props?: object | null): this is NodePath<t.InterfaceTypeAnnotation>;
|
|
655
|
+
isInterpreterDirective(props?: object | null): this is NodePath<t.InterpreterDirective>;
|
|
656
|
+
isIntersectionTypeAnnotation(props?: object | null): this is NodePath<t.IntersectionTypeAnnotation>;
|
|
657
|
+
isJSX(props?: object | null): this is NodePath<t.JSX>;
|
|
658
|
+
isJSXAttribute(props?: object | null): this is NodePath<t.JSXAttribute>;
|
|
659
|
+
isJSXClosingElement(props?: object | null): this is NodePath<t.JSXClosingElement>;
|
|
660
|
+
isJSXClosingFragment(props?: object | null): this is NodePath<t.JSXClosingFragment>;
|
|
661
|
+
isJSXElement(props?: object | null): this is NodePath<t.JSXElement>;
|
|
662
|
+
isJSXEmptyExpression(props?: object | null): this is NodePath<t.JSXEmptyExpression>;
|
|
663
|
+
isJSXExpressionContainer(props?: object | null): this is NodePath<t.JSXExpressionContainer>;
|
|
664
|
+
isJSXFragment(props?: object | null): this is NodePath<t.JSXFragment>;
|
|
665
|
+
isJSXIdentifier(props?: object | null): this is NodePath<t.JSXIdentifier>;
|
|
666
|
+
isJSXMemberExpression(props?: object | null): this is NodePath<t.JSXMemberExpression>;
|
|
667
|
+
isJSXNamespacedName(props?: object | null): this is NodePath<t.JSXNamespacedName>;
|
|
668
|
+
isJSXOpeningElement(props?: object | null): this is NodePath<t.JSXOpeningElement>;
|
|
669
|
+
isJSXOpeningFragment(props?: object | null): this is NodePath<t.JSXOpeningFragment>;
|
|
670
|
+
isJSXSpreadAttribute(props?: object | null): this is NodePath<t.JSXSpreadAttribute>;
|
|
671
|
+
isJSXSpreadChild(props?: object | null): this is NodePath<t.JSXSpreadChild>;
|
|
672
|
+
isJSXText(props?: object | null): this is NodePath<t.JSXText>;
|
|
673
|
+
isLVal(props?: object | null): this is NodePath<t.LVal>;
|
|
674
|
+
isLabeledStatement(props?: object | null): this is NodePath<t.LabeledStatement>;
|
|
675
|
+
isLiteral(props?: object | null): this is NodePath<t.Literal>;
|
|
676
|
+
isLogicalExpression(props?: object | null): this is NodePath<t.LogicalExpression>;
|
|
677
|
+
isLoop(props?: object | null): this is NodePath<t.Loop>;
|
|
678
|
+
isMemberExpression(props?: object | null): this is NodePath<t.MemberExpression>;
|
|
679
|
+
isMetaProperty(props?: object | null): this is NodePath<t.MetaProperty>;
|
|
680
|
+
isMethod(props?: object | null): this is NodePath<t.Method>;
|
|
681
|
+
isMixedTypeAnnotation(props?: object | null): this is NodePath<t.MixedTypeAnnotation>;
|
|
682
|
+
isModuleDeclaration(props?: object | null): this is NodePath<t.ModuleDeclaration>;
|
|
683
|
+
isModuleSpecifier(props?: object | null): this is NodePath<t.ModuleSpecifier>;
|
|
684
|
+
isNewExpression(props?: object | null): this is NodePath<t.NewExpression>;
|
|
685
|
+
isNoop(props?: object | null): this is NodePath<t.Noop>;
|
|
686
|
+
isNullLiteral(props?: object | null): this is NodePath<t.NullLiteral>;
|
|
687
|
+
isNullLiteralTypeAnnotation(props?: object | null): this is NodePath<t.NullLiteralTypeAnnotation>;
|
|
688
|
+
isNullableTypeAnnotation(props?: object | null): this is NodePath<t.NullableTypeAnnotation>;
|
|
689
|
+
|
|
690
|
+
/** @deprecated Use `isNumericLiteral` */
|
|
691
|
+
isNumberLiteral(props?: object | null): this is NodePath<t.NumericLiteral>;
|
|
692
|
+
isNumberLiteralTypeAnnotation(props?: object | null): this is NodePath<t.NumberLiteralTypeAnnotation>;
|
|
693
|
+
isNumberTypeAnnotation(props?: object | null): this is NodePath<t.NumberTypeAnnotation>;
|
|
694
|
+
isNumericLiteral(props?: object | null): this is NodePath<t.NumericLiteral>;
|
|
695
|
+
isObjectExpression(props?: object | null): this is NodePath<t.ObjectExpression>;
|
|
696
|
+
isObjectMember(props?: object | null): this is NodePath<t.ObjectMember>;
|
|
697
|
+
isObjectMethod(props?: object | null): this is NodePath<t.ObjectMethod>;
|
|
698
|
+
isObjectPattern(props?: object | null): this is NodePath<t.ObjectPattern>;
|
|
699
|
+
isObjectProperty(props?: object | null): this is NodePath<t.ObjectProperty>;
|
|
700
|
+
isObjectTypeAnnotation(props?: object | null): this is NodePath<t.ObjectTypeAnnotation>;
|
|
701
|
+
isObjectTypeCallProperty(props?: object | null): this is NodePath<t.ObjectTypeCallProperty>;
|
|
702
|
+
isObjectTypeIndexer(props?: object | null): this is NodePath<t.ObjectTypeIndexer>;
|
|
703
|
+
isObjectTypeInternalSlot(props?: object | null): this is NodePath<t.ObjectTypeInternalSlot>;
|
|
704
|
+
isObjectTypeProperty(props?: object | null): this is NodePath<t.ObjectTypeProperty>;
|
|
705
|
+
isObjectTypeSpreadProperty(props?: object | null): this is NodePath<t.ObjectTypeSpreadProperty>;
|
|
706
|
+
isOpaqueType(props?: object | null): this is NodePath<t.OpaqueType>;
|
|
707
|
+
isOptionalCallExpression(props?: object | null): this is NodePath<t.OptionalCallExpression>;
|
|
708
|
+
isOptionalMemberExpression(props?: object | null): this is NodePath<t.OptionalMemberExpression>;
|
|
709
|
+
isParenthesizedExpression(props?: object | null): this is NodePath<t.ParenthesizedExpression>;
|
|
710
|
+
isPattern(props?: object | null): this is NodePath<t.Pattern>;
|
|
711
|
+
isPatternLike(props?: object | null): this is NodePath<t.PatternLike>;
|
|
712
|
+
isPipelineBareFunction(props?: object | null): this is NodePath<t.PipelineBareFunction>;
|
|
713
|
+
isPipelinePrimaryTopicReference(props?: object | null): this is NodePath<t.PipelinePrimaryTopicReference>;
|
|
714
|
+
isPipelineTopicExpression(props?: object | null): this is NodePath<t.PipelineTopicExpression>;
|
|
715
|
+
isPrivate(props?: object | null): this is NodePath<t.Private>;
|
|
716
|
+
isPrivateName(props?: object | null): this is NodePath<t.PrivateName>;
|
|
717
|
+
isProgram(props?: object | null): this is NodePath<t.Program>;
|
|
718
|
+
isProperty(props?: object | null): this is NodePath<t.Property>;
|
|
719
|
+
isPureish(props?: object | null): this is NodePath<t.Pureish>;
|
|
720
|
+
isQualifiedTypeIdentifier(props?: object | null): this is NodePath<t.QualifiedTypeIdentifier>;
|
|
721
|
+
isRegExpLiteral(props?: object | null): this is NodePath<t.RegExpLiteral>;
|
|
722
|
+
|
|
723
|
+
/** @deprecated Use `isRegExpLiteral` */
|
|
724
|
+
isRegexLiteral(props?: object | null): this is NodePath<t.RegExpLiteral>;
|
|
725
|
+
isRestElement(props?: object | null): this is NodePath<t.RestElement>;
|
|
726
|
+
|
|
727
|
+
/** @deprecated Use `isRestElement` */
|
|
728
|
+
isRestProperty(props?: object | null): this is NodePath<t.RestElement>;
|
|
729
|
+
isReturnStatement(props?: object | null): this is NodePath<t.ReturnStatement>;
|
|
730
|
+
isScopable(props?: object | null): this is NodePath<t.Scopable>;
|
|
731
|
+
isSequenceExpression(props?: object | null): this is NodePath<t.SequenceExpression>;
|
|
732
|
+
isSpreadElement(props?: object | null): this is NodePath<t.SpreadElement>;
|
|
733
|
+
|
|
734
|
+
/** @deprecated Use `isSpreadElement` */
|
|
735
|
+
isSpreadProperty(props?: object | null): this is NodePath<t.SpreadElement>;
|
|
736
|
+
isStatement(props?: object | null): this is NodePath<t.Statement>;
|
|
737
|
+
isStringLiteral(props?: object | null): this is NodePath<t.StringLiteral>;
|
|
738
|
+
isStringLiteralTypeAnnotation(props?: object | null): this is NodePath<t.StringLiteralTypeAnnotation>;
|
|
739
|
+
isStringTypeAnnotation(props?: object | null): this is NodePath<t.StringTypeAnnotation>;
|
|
740
|
+
isSuper(props?: object | null): this is NodePath<t.Super>;
|
|
741
|
+
isSwitchCase(props?: object | null): this is NodePath<t.SwitchCase>;
|
|
742
|
+
isSwitchStatement(props?: object | null): this is NodePath<t.SwitchStatement>;
|
|
743
|
+
isTSAnyKeyword(props?: object | null): this is NodePath<t.TSAnyKeyword>;
|
|
744
|
+
isTSArrayType(props?: object | null): this is NodePath<t.TSArrayType>;
|
|
745
|
+
isTSAsExpression(props?: object | null): this is NodePath<t.TSAsExpression>;
|
|
746
|
+
isTSBooleanKeyword(props?: object | null): this is NodePath<t.TSBooleanKeyword>;
|
|
747
|
+
isTSCallSignatureDeclaration(props?: object | null): this is NodePath<t.TSCallSignatureDeclaration>;
|
|
748
|
+
isTSConditionalType(props?: object | null): this is NodePath<t.TSConditionalType>;
|
|
749
|
+
isTSConstructSignatureDeclaration(props?: object | null): this is NodePath<t.TSConstructSignatureDeclaration>;
|
|
750
|
+
isTSConstructorType(props?: object | null): this is NodePath<t.TSConstructorType>;
|
|
751
|
+
isTSDeclareFunction(props?: object | null): this is NodePath<t.TSDeclareFunction>;
|
|
752
|
+
isTSDeclareMethod(props?: object | null): this is NodePath<t.TSDeclareMethod>;
|
|
753
|
+
isTSEntityName(props?: object | null): this is NodePath<t.TSEntityName>;
|
|
754
|
+
isTSEnumDeclaration(props?: object | null): this is NodePath<t.TSEnumDeclaration>;
|
|
755
|
+
isTSEnumMember(props?: object | null): this is NodePath<t.TSEnumMember>;
|
|
756
|
+
isTSExportAssignment(props?: object | null): this is NodePath<t.TSExportAssignment>;
|
|
757
|
+
isTSExpressionWithTypeArguments(props?: object | null): this is NodePath<t.TSExpressionWithTypeArguments>;
|
|
758
|
+
isTSExternalModuleReference(props?: object | null): this is NodePath<t.TSExternalModuleReference>;
|
|
759
|
+
isTSFunctionType(props?: object | null): this is NodePath<t.TSFunctionType>;
|
|
760
|
+
isTSImportEqualsDeclaration(props?: object | null): this is NodePath<t.TSImportEqualsDeclaration>;
|
|
761
|
+
isTSImportType(props?: object | null): this is NodePath<t.TSImportType>;
|
|
762
|
+
isTSIndexSignature(props?: object | null): this is NodePath<t.TSIndexSignature>;
|
|
763
|
+
isTSIndexedAccessType(props?: object | null): this is NodePath<t.TSIndexedAccessType>;
|
|
764
|
+
isTSInferType(props?: object | null): this is NodePath<t.TSInferType>;
|
|
765
|
+
isTSInterfaceBody(props?: object | null): this is NodePath<t.TSInterfaceBody>;
|
|
766
|
+
isTSInterfaceDeclaration(props?: object | null): this is NodePath<t.TSInterfaceDeclaration>;
|
|
767
|
+
isTSIntersectionType(props?: object | null): this is NodePath<t.TSIntersectionType>;
|
|
768
|
+
isTSLiteralType(props?: object | null): this is NodePath<t.TSLiteralType>;
|
|
769
|
+
isTSMappedType(props?: object | null): this is NodePath<t.TSMappedType>;
|
|
770
|
+
isTSMethodSignature(props?: object | null): this is NodePath<t.TSMethodSignature>;
|
|
771
|
+
isTSModuleBlock(props?: object | null): this is NodePath<t.TSModuleBlock>;
|
|
772
|
+
isTSModuleDeclaration(props?: object | null): this is NodePath<t.TSModuleDeclaration>;
|
|
773
|
+
isTSNamespaceExportDeclaration(props?: object | null): this is NodePath<t.TSNamespaceExportDeclaration>;
|
|
774
|
+
isTSNeverKeyword(props?: object | null): this is NodePath<t.TSNeverKeyword>;
|
|
775
|
+
isTSNonNullExpression(props?: object | null): this is NodePath<t.TSNonNullExpression>;
|
|
776
|
+
isTSNullKeyword(props?: object | null): this is NodePath<t.TSNullKeyword>;
|
|
777
|
+
isTSNumberKeyword(props?: object | null): this is NodePath<t.TSNumberKeyword>;
|
|
778
|
+
isTSObjectKeyword(props?: object | null): this is NodePath<t.TSObjectKeyword>;
|
|
779
|
+
isTSOptionalType(props?: object | null): this is NodePath<t.TSOptionalType>;
|
|
780
|
+
isTSParameterProperty(props?: object | null): this is NodePath<t.TSParameterProperty>;
|
|
781
|
+
isTSParenthesizedType(props?: object | null): this is NodePath<t.TSParenthesizedType>;
|
|
782
|
+
isTSPropertySignature(props?: object | null): this is NodePath<t.TSPropertySignature>;
|
|
783
|
+
isTSQualifiedName(props?: object | null): this is NodePath<t.TSQualifiedName>;
|
|
784
|
+
isTSRestType(props?: object | null): this is NodePath<t.TSRestType>;
|
|
785
|
+
isTSStringKeyword(props?: object | null): this is NodePath<t.TSStringKeyword>;
|
|
786
|
+
isTSSymbolKeyword(props?: object | null): this is NodePath<t.TSSymbolKeyword>;
|
|
787
|
+
isTSThisType(props?: object | null): this is NodePath<t.TSThisType>;
|
|
788
|
+
isTSTupleType(props?: object | null): this is NodePath<t.TSTupleType>;
|
|
789
|
+
isTSType(props?: object | null): this is NodePath<t.TSType>;
|
|
790
|
+
isTSTypeAliasDeclaration(props?: object | null): this is NodePath<t.TSTypeAliasDeclaration>;
|
|
791
|
+
isTSTypeAnnotation(props?: object | null): this is NodePath<t.TSTypeAnnotation>;
|
|
792
|
+
isTSTypeAssertion(props?: object | null): this is NodePath<t.TSTypeAssertion>;
|
|
793
|
+
isTSTypeElement(props?: object | null): this is NodePath<t.TSTypeElement>;
|
|
794
|
+
isTSTypeLiteral(props?: object | null): this is NodePath<t.TSTypeLiteral>;
|
|
795
|
+
isTSTypeOperator(props?: object | null): this is NodePath<t.TSTypeOperator>;
|
|
796
|
+
isTSTypeParameter(props?: object | null): this is NodePath<t.TSTypeParameter>;
|
|
797
|
+
isTSTypeParameterDeclaration(props?: object | null): this is NodePath<t.TSTypeParameterDeclaration>;
|
|
798
|
+
isTSTypeParameterInstantiation(props?: object | null): this is NodePath<t.TSTypeParameterInstantiation>;
|
|
799
|
+
isTSTypePredicate(props?: object | null): this is NodePath<t.TSTypePredicate>;
|
|
800
|
+
isTSTypeQuery(props?: object | null): this is NodePath<t.TSTypeQuery>;
|
|
801
|
+
isTSTypeReference(props?: object | null): this is NodePath<t.TSTypeReference>;
|
|
802
|
+
isTSUndefinedKeyword(props?: object | null): this is NodePath<t.TSUndefinedKeyword>;
|
|
803
|
+
isTSUnionType(props?: object | null): this is NodePath<t.TSUnionType>;
|
|
804
|
+
isTSUnknownKeyword(props?: object | null): this is NodePath<t.TSUnknownKeyword>;
|
|
805
|
+
isTSVoidKeyword(props?: object | null): this is NodePath<t.TSVoidKeyword>;
|
|
806
|
+
isTaggedTemplateExpression(props?: object | null): this is NodePath<t.TaggedTemplateExpression>;
|
|
807
|
+
isTemplateElement(props?: object | null): this is NodePath<t.TemplateElement>;
|
|
808
|
+
isTemplateLiteral(props?: object | null): this is NodePath<t.TemplateLiteral>;
|
|
809
|
+
isTerminatorless(props?: object | null): this is NodePath<t.Terminatorless>;
|
|
810
|
+
isThisExpression(props?: object | null): this is NodePath<t.ThisExpression>;
|
|
811
|
+
isThisTypeAnnotation(props?: object | null): this is NodePath<t.ThisTypeAnnotation>;
|
|
812
|
+
isThrowStatement(props?: object | null): this is NodePath<t.ThrowStatement>;
|
|
813
|
+
isTryStatement(props?: object | null): this is NodePath<t.TryStatement>;
|
|
814
|
+
isTupleTypeAnnotation(props?: object | null): this is NodePath<t.TupleTypeAnnotation>;
|
|
815
|
+
isTypeAlias(props?: object | null): this is NodePath<t.TypeAlias>;
|
|
816
|
+
isTypeAnnotation(props?: object | null): this is NodePath<t.TypeAnnotation>;
|
|
817
|
+
isTypeCastExpression(props?: object | null): this is NodePath<t.TypeCastExpression>;
|
|
818
|
+
isTypeParameter(props?: object | null): this is NodePath<t.TypeParameter>;
|
|
819
|
+
isTypeParameterDeclaration(props?: object | null): this is NodePath<t.TypeParameterDeclaration>;
|
|
820
|
+
isTypeParameterInstantiation(props?: object | null): this is NodePath<t.TypeParameterInstantiation>;
|
|
821
|
+
isTypeofTypeAnnotation(props?: object | null): this is NodePath<t.TypeofTypeAnnotation>;
|
|
822
|
+
isUnaryExpression(props?: object | null): this is NodePath<t.UnaryExpression>;
|
|
823
|
+
isUnaryLike(props?: object | null): this is NodePath<t.UnaryLike>;
|
|
824
|
+
isUnionTypeAnnotation(props?: object | null): this is NodePath<t.UnionTypeAnnotation>;
|
|
825
|
+
isUpdateExpression(props?: object | null): this is NodePath<t.UpdateExpression>;
|
|
826
|
+
isUserWhitespacable(props?: object | null): this is NodePath<t.UserWhitespacable>;
|
|
827
|
+
isVariableDeclaration(props?: object | null): this is NodePath<t.VariableDeclaration>;
|
|
828
|
+
isVariableDeclarator(props?: object | null): this is NodePath<t.VariableDeclarator>;
|
|
829
|
+
isVariance(props?: object | null): this is NodePath<t.Variance>;
|
|
830
|
+
isVoidTypeAnnotation(props?: object | null): this is NodePath<t.VoidTypeAnnotation>;
|
|
831
|
+
isWhile(props?: object | null): this is NodePath<t.While>;
|
|
832
|
+
isWhileStatement(props?: object | null): this is NodePath<t.WhileStatement>;
|
|
833
|
+
isWithStatement(props?: object | null): this is NodePath<t.WithStatement>;
|
|
834
|
+
isYieldExpression(props?: object | null): this is NodePath<t.YieldExpression>;
|
|
835
|
+
|
|
836
|
+
isBindingIdentifier(props?: object | null): this is NodePath<t.Identifier>;
|
|
837
|
+
isBlockScoped(
|
|
838
|
+
props?: object | null,
|
|
839
|
+
): this is NodePath<t.FunctionDeclaration | t.ClassDeclaration | t.VariableDeclaration>;
|
|
840
|
+
isGenerated(props?: object | null): boolean;
|
|
841
|
+
isPure(props?: object | null): boolean;
|
|
842
|
+
isReferenced(props?: object | null): boolean;
|
|
843
|
+
isReferencedIdentifier(props?: object | null): this is NodePath<t.Identifier | t.JSXIdentifier>;
|
|
844
|
+
isReferencedMemberExpression(props?: object | null): this is NodePath<t.MemberExpression>;
|
|
845
|
+
isScope(props?: object | null): this is NodePath<t.Scopable>;
|
|
846
|
+
isUser(props?: object | null): boolean;
|
|
847
|
+
isVar(props?: object | null): this is NodePath<t.VariableDeclaration>;
|
|
848
|
+
//#endregion
|
|
849
|
+
|
|
850
|
+
//#region ------------------------- assertXXX -------------------------
|
|
851
|
+
assertAnyTypeAnnotation(props?: object | null): void;
|
|
852
|
+
assertArrayExpression(props?: object | null): void;
|
|
853
|
+
assertArrayPattern(props?: object | null): void;
|
|
854
|
+
assertArrayTypeAnnotation(props?: object | null): void;
|
|
855
|
+
assertArrowFunctionExpression(props?: object | null): void;
|
|
856
|
+
assertAssignmentExpression(props?: object | null): void;
|
|
857
|
+
assertAssignmentPattern(props?: object | null): void;
|
|
858
|
+
assertAwaitExpression(props?: object | null): void;
|
|
859
|
+
assertBigIntLiteral(props?: object | null): void;
|
|
860
|
+
assertBinary(props?: object | null): void;
|
|
861
|
+
assertBinaryExpression(props?: object | null): void;
|
|
862
|
+
assertBindExpression(props?: object | null): void;
|
|
863
|
+
assertBlock(props?: object | null): void;
|
|
864
|
+
assertBlockParent(props?: object | null): void;
|
|
865
|
+
assertBlockStatement(props?: object | null): void;
|
|
866
|
+
assertBooleanLiteral(props?: object | null): void;
|
|
867
|
+
assertBooleanLiteralTypeAnnotation(props?: object | null): void;
|
|
868
|
+
assertBooleanTypeAnnotation(props?: object | null): void;
|
|
869
|
+
assertBreakStatement(props?: object | null): void;
|
|
870
|
+
assertCallExpression(props?: object | null): void;
|
|
871
|
+
assertCatchClause(props?: object | null): void;
|
|
872
|
+
assertClass(props?: object | null): void;
|
|
873
|
+
assertClassBody(props?: object | null): void;
|
|
874
|
+
assertClassDeclaration(props?: object | null): void;
|
|
875
|
+
assertClassExpression(props?: object | null): void;
|
|
876
|
+
assertClassImplements(props?: object | null): void;
|
|
877
|
+
assertClassMethod(props?: object | null): void;
|
|
878
|
+
assertClassPrivateMethod(props?: object | null): void;
|
|
879
|
+
assertClassPrivateProperty(props?: object | null): void;
|
|
880
|
+
assertClassProperty(props?: object | null): void;
|
|
881
|
+
assertCompletionStatement(props?: object | null): void;
|
|
882
|
+
assertConditional(props?: object | null): void;
|
|
883
|
+
assertConditionalExpression(props?: object | null): void;
|
|
884
|
+
assertContinueStatement(props?: object | null): void;
|
|
885
|
+
assertDebuggerStatement(props?: object | null): void;
|
|
886
|
+
assertDeclaration(props?: object | null): void;
|
|
887
|
+
assertDeclareClass(props?: object | null): void;
|
|
888
|
+
assertDeclareExportAllDeclaration(props?: object | null): void;
|
|
889
|
+
assertDeclareExportDeclaration(props?: object | null): void;
|
|
890
|
+
assertDeclareFunction(props?: object | null): void;
|
|
891
|
+
assertDeclareInterface(props?: object | null): void;
|
|
892
|
+
assertDeclareModule(props?: object | null): void;
|
|
893
|
+
assertDeclareModuleExports(props?: object | null): void;
|
|
894
|
+
assertDeclareOpaqueType(props?: object | null): void;
|
|
895
|
+
assertDeclareTypeAlias(props?: object | null): void;
|
|
896
|
+
assertDeclareVariable(props?: object | null): void;
|
|
897
|
+
assertDeclaredPredicate(props?: object | null): void;
|
|
898
|
+
assertDecorator(props?: object | null): void;
|
|
899
|
+
assertDirective(props?: object | null): void;
|
|
900
|
+
assertDirectiveLiteral(props?: object | null): void;
|
|
901
|
+
assertDoExpression(props?: object | null): void;
|
|
902
|
+
assertDoWhileStatement(props?: object | null): void;
|
|
903
|
+
assertEmptyStatement(props?: object | null): void;
|
|
904
|
+
assertEmptyTypeAnnotation(props?: object | null): void;
|
|
905
|
+
assertExistsTypeAnnotation(props?: object | null): void;
|
|
906
|
+
assertExportAllDeclaration(props?: object | null): void;
|
|
907
|
+
assertExportDeclaration(props?: object | null): void;
|
|
908
|
+
assertExportDefaultDeclaration(props?: object | null): void;
|
|
909
|
+
assertExportDefaultSpecifier(props?: object | null): void;
|
|
910
|
+
assertExportNamedDeclaration(props?: object | null): void;
|
|
911
|
+
assertExportNamespaceSpecifier(props?: object | null): void;
|
|
912
|
+
assertExportSpecifier(props?: object | null): void;
|
|
913
|
+
assertExpression(props?: object | null): void;
|
|
914
|
+
assertExpressionStatement(props?: object | null): void;
|
|
915
|
+
assertExpressionWrapper(props?: object | null): void;
|
|
916
|
+
assertFile(props?: object | null): void;
|
|
917
|
+
assertFlow(props?: object | null): void;
|
|
918
|
+
assertFlowBaseAnnotation(props?: object | null): void;
|
|
919
|
+
assertFlowDeclaration(props?: object | null): void;
|
|
920
|
+
assertFlowPredicate(props?: object | null): void;
|
|
921
|
+
assertFlowType(props?: object | null): void;
|
|
922
|
+
assertFor(props?: object | null): void;
|
|
923
|
+
assertForInStatement(props?: object | null): void;
|
|
924
|
+
assertForOfStatement(props?: object | null): void;
|
|
925
|
+
assertForStatement(props?: object | null): void;
|
|
926
|
+
assertForXStatement(props?: object | null): void;
|
|
927
|
+
assertFunction(props?: object | null): void;
|
|
928
|
+
assertFunctionDeclaration(props?: object | null): void;
|
|
929
|
+
assertFunctionExpression(props?: object | null): void;
|
|
930
|
+
assertFunctionParent(props?: object | null): void;
|
|
931
|
+
assertFunctionTypeAnnotation(props?: object | null): void;
|
|
932
|
+
assertFunctionTypeParam(props?: object | null): void;
|
|
933
|
+
assertGenericTypeAnnotation(props?: object | null): void;
|
|
934
|
+
assertIdentifier(props?: object | null): void;
|
|
935
|
+
assertIfStatement(props?: object | null): void;
|
|
936
|
+
assertImmutable(props?: object | null): void;
|
|
937
|
+
assertImport(props?: object | null): void;
|
|
938
|
+
assertImportDeclaration(props?: object | null): void;
|
|
939
|
+
assertImportDefaultSpecifier(props?: object | null): void;
|
|
940
|
+
assertImportNamespaceSpecifier(props?: object | null): void;
|
|
941
|
+
assertImportSpecifier(props?: object | null): void;
|
|
942
|
+
assertInferredPredicate(props?: object | null): void;
|
|
943
|
+
assertInterfaceDeclaration(props?: object | null): void;
|
|
944
|
+
assertInterfaceExtends(props?: object | null): void;
|
|
945
|
+
assertInterfaceTypeAnnotation(props?: object | null): void;
|
|
946
|
+
assertInterpreterDirective(props?: object | null): void;
|
|
947
|
+
assertIntersectionTypeAnnotation(props?: object | null): void;
|
|
948
|
+
assertJSX(props?: object | null): void;
|
|
949
|
+
assertJSXAttribute(props?: object | null): void;
|
|
950
|
+
assertJSXClosingElement(props?: object | null): void;
|
|
951
|
+
assertJSXClosingFragment(props?: object | null): void;
|
|
952
|
+
assertJSXElement(props?: object | null): void;
|
|
953
|
+
assertJSXEmptyExpression(props?: object | null): void;
|
|
954
|
+
assertJSXExpressionContainer(props?: object | null): void;
|
|
955
|
+
assertJSXFragment(props?: object | null): void;
|
|
956
|
+
assertJSXIdentifier(props?: object | null): void;
|
|
957
|
+
assertJSXMemberExpression(props?: object | null): void;
|
|
958
|
+
assertJSXNamespacedName(props?: object | null): void;
|
|
959
|
+
assertJSXOpeningElement(props?: object | null): void;
|
|
960
|
+
assertJSXOpeningFragment(props?: object | null): void;
|
|
961
|
+
assertJSXSpreadAttribute(props?: object | null): void;
|
|
962
|
+
assertJSXSpreadChild(props?: object | null): void;
|
|
963
|
+
assertJSXText(props?: object | null): void;
|
|
964
|
+
assertLVal(props?: object | null): void;
|
|
965
|
+
assertLabeledStatement(props?: object | null): void;
|
|
966
|
+
assertLiteral(props?: object | null): void;
|
|
967
|
+
assertLogicalExpression(props?: object | null): void;
|
|
968
|
+
assertLoop(props?: object | null): void;
|
|
969
|
+
assertMemberExpression(props?: object | null): void;
|
|
970
|
+
assertMetaProperty(props?: object | null): void;
|
|
971
|
+
assertMethod(props?: object | null): void;
|
|
972
|
+
assertMixedTypeAnnotation(props?: object | null): void;
|
|
973
|
+
assertModuleDeclaration(props?: object | null): void;
|
|
974
|
+
assertModuleSpecifier(props?: object | null): void;
|
|
975
|
+
assertNewExpression(props?: object | null): void;
|
|
976
|
+
assertNoop(props?: object | null): void;
|
|
977
|
+
assertNullLiteral(props?: object | null): void;
|
|
978
|
+
assertNullLiteralTypeAnnotation(props?: object | null): void;
|
|
979
|
+
assertNullableTypeAnnotation(props?: object | null): void;
|
|
980
|
+
|
|
981
|
+
/** @deprecated Use `assertNumericLiteral` */
|
|
982
|
+
assertNumberLiteral(props?: object | null): void;
|
|
983
|
+
assertNumberLiteralTypeAnnotation(props?: object | null): void;
|
|
984
|
+
assertNumberTypeAnnotation(props?: object | null): void;
|
|
985
|
+
assertNumericLiteral(props?: object | null): void;
|
|
986
|
+
assertObjectExpression(props?: object | null): void;
|
|
987
|
+
assertObjectMember(props?: object | null): void;
|
|
988
|
+
assertObjectMethod(props?: object | null): void;
|
|
989
|
+
assertObjectPattern(props?: object | null): void;
|
|
990
|
+
assertObjectProperty(props?: object | null): void;
|
|
991
|
+
assertObjectTypeAnnotation(props?: object | null): void;
|
|
992
|
+
assertObjectTypeCallProperty(props?: object | null): void;
|
|
993
|
+
assertObjectTypeIndexer(props?: object | null): void;
|
|
994
|
+
assertObjectTypeInternalSlot(props?: object | null): void;
|
|
995
|
+
assertObjectTypeProperty(props?: object | null): void;
|
|
996
|
+
assertObjectTypeSpreadProperty(props?: object | null): void;
|
|
997
|
+
assertOpaqueType(props?: object | null): void;
|
|
998
|
+
assertOptionalCallExpression(props?: object | null): void;
|
|
999
|
+
assertOptionalMemberExpression(props?: object | null): void;
|
|
1000
|
+
assertParenthesizedExpression(props?: object | null): void;
|
|
1001
|
+
assertPattern(props?: object | null): void;
|
|
1002
|
+
assertPatternLike(props?: object | null): void;
|
|
1003
|
+
assertPipelineBareFunction(props?: object | null): void;
|
|
1004
|
+
assertPipelinePrimaryTopicReference(props?: object | null): void;
|
|
1005
|
+
assertPipelineTopicExpression(props?: object | null): void;
|
|
1006
|
+
assertPrivate(props?: object | null): void;
|
|
1007
|
+
assertPrivateName(props?: object | null): void;
|
|
1008
|
+
assertProgram(props?: object | null): void;
|
|
1009
|
+
assertProperty(props?: object | null): void;
|
|
1010
|
+
assertPureish(props?: object | null): void;
|
|
1011
|
+
assertQualifiedTypeIdentifier(props?: object | null): void;
|
|
1012
|
+
assertRegExpLiteral(props?: object | null): void;
|
|
1013
|
+
|
|
1014
|
+
/** @deprecated Use `assertRegExpLiteral` */
|
|
1015
|
+
assertRegexLiteral(props?: object | null): void;
|
|
1016
|
+
assertRestElement(props?: object | null): void;
|
|
1017
|
+
|
|
1018
|
+
/** @deprecated Use `assertRestElement` */
|
|
1019
|
+
assertRestProperty(props?: object | null): void;
|
|
1020
|
+
assertReturnStatement(props?: object | null): void;
|
|
1021
|
+
assertScopable(props?: object | null): void;
|
|
1022
|
+
assertSequenceExpression(props?: object | null): void;
|
|
1023
|
+
assertSpreadElement(props?: object | null): void;
|
|
1024
|
+
|
|
1025
|
+
/** @deprecated Use `assertSpreadElement` */
|
|
1026
|
+
assertSpreadProperty(props?: object | null): void;
|
|
1027
|
+
assertStatement(props?: object | null): void;
|
|
1028
|
+
assertStringLiteral(props?: object | null): void;
|
|
1029
|
+
assertStringLiteralTypeAnnotation(props?: object | null): void;
|
|
1030
|
+
assertStringTypeAnnotation(props?: object | null): void;
|
|
1031
|
+
assertSuper(props?: object | null): void;
|
|
1032
|
+
assertSwitchCase(props?: object | null): void;
|
|
1033
|
+
assertSwitchStatement(props?: object | null): void;
|
|
1034
|
+
assertTSAnyKeyword(props?: object | null): void;
|
|
1035
|
+
assertTSArrayType(props?: object | null): void;
|
|
1036
|
+
assertTSAsExpression(props?: object | null): void;
|
|
1037
|
+
assertTSBooleanKeyword(props?: object | null): void;
|
|
1038
|
+
assertTSCallSignatureDeclaration(props?: object | null): void;
|
|
1039
|
+
assertTSConditionalType(props?: object | null): void;
|
|
1040
|
+
assertTSConstructSignatureDeclaration(props?: object | null): void;
|
|
1041
|
+
assertTSConstructorType(props?: object | null): void;
|
|
1042
|
+
assertTSDeclareFunction(props?: object | null): void;
|
|
1043
|
+
assertTSDeclareMethod(props?: object | null): void;
|
|
1044
|
+
assertTSEntityName(props?: object | null): void;
|
|
1045
|
+
assertTSEnumDeclaration(props?: object | null): void;
|
|
1046
|
+
assertTSEnumMember(props?: object | null): void;
|
|
1047
|
+
assertTSExportAssignment(props?: object | null): void;
|
|
1048
|
+
assertTSExpressionWithTypeArguments(props?: object | null): void;
|
|
1049
|
+
assertTSExternalModuleReference(props?: object | null): void;
|
|
1050
|
+
assertTSFunctionType(props?: object | null): void;
|
|
1051
|
+
assertTSImportEqualsDeclaration(props?: object | null): void;
|
|
1052
|
+
assertTSImportType(props?: object | null): void;
|
|
1053
|
+
assertTSIndexSignature(props?: object | null): void;
|
|
1054
|
+
assertTSIndexedAccessType(props?: object | null): void;
|
|
1055
|
+
assertTSInferType(props?: object | null): void;
|
|
1056
|
+
assertTSInterfaceBody(props?: object | null): void;
|
|
1057
|
+
assertTSInterfaceDeclaration(props?: object | null): void;
|
|
1058
|
+
assertTSIntersectionType(props?: object | null): void;
|
|
1059
|
+
assertTSLiteralType(props?: object | null): void;
|
|
1060
|
+
assertTSMappedType(props?: object | null): void;
|
|
1061
|
+
assertTSMethodSignature(props?: object | null): void;
|
|
1062
|
+
assertTSModuleBlock(props?: object | null): void;
|
|
1063
|
+
assertTSModuleDeclaration(props?: object | null): void;
|
|
1064
|
+
assertTSNamespaceExportDeclaration(props?: object | null): void;
|
|
1065
|
+
assertTSNeverKeyword(props?: object | null): void;
|
|
1066
|
+
assertTSNonNullExpression(props?: object | null): void;
|
|
1067
|
+
assertTSNullKeyword(props?: object | null): void;
|
|
1068
|
+
assertTSNumberKeyword(props?: object | null): void;
|
|
1069
|
+
assertTSObjectKeyword(props?: object | null): void;
|
|
1070
|
+
assertTSOptionalType(props?: object | null): void;
|
|
1071
|
+
assertTSParameterProperty(props?: object | null): void;
|
|
1072
|
+
assertTSParenthesizedType(props?: object | null): void;
|
|
1073
|
+
assertTSPropertySignature(props?: object | null): void;
|
|
1074
|
+
assertTSQualifiedName(props?: object | null): void;
|
|
1075
|
+
assertTSRestType(props?: object | null): void;
|
|
1076
|
+
assertTSStringKeyword(props?: object | null): void;
|
|
1077
|
+
assertTSSymbolKeyword(props?: object | null): void;
|
|
1078
|
+
assertTSThisType(props?: object | null): void;
|
|
1079
|
+
assertTSTupleType(props?: object | null): void;
|
|
1080
|
+
assertTSType(props?: object | null): void;
|
|
1081
|
+
assertTSTypeAliasDeclaration(props?: object | null): void;
|
|
1082
|
+
assertTSTypeAnnotation(props?: object | null): void;
|
|
1083
|
+
assertTSTypeAssertion(props?: object | null): void;
|
|
1084
|
+
assertTSTypeElement(props?: object | null): void;
|
|
1085
|
+
assertTSTypeLiteral(props?: object | null): void;
|
|
1086
|
+
assertTSTypeOperator(props?: object | null): void;
|
|
1087
|
+
assertTSTypeParameter(props?: object | null): void;
|
|
1088
|
+
assertTSTypeParameterDeclaration(props?: object | null): void;
|
|
1089
|
+
assertTSTypeParameterInstantiation(props?: object | null): void;
|
|
1090
|
+
assertTSTypePredicate(props?: object | null): void;
|
|
1091
|
+
assertTSTypeQuery(props?: object | null): void;
|
|
1092
|
+
assertTSTypeReference(props?: object | null): void;
|
|
1093
|
+
assertTSUndefinedKeyword(props?: object | null): void;
|
|
1094
|
+
assertTSUnionType(props?: object | null): void;
|
|
1095
|
+
assertTSUnknownKeyword(props?: object | null): void;
|
|
1096
|
+
assertTSVoidKeyword(props?: object | null): void;
|
|
1097
|
+
assertTaggedTemplateExpression(props?: object | null): void;
|
|
1098
|
+
assertTemplateElement(props?: object | null): void;
|
|
1099
|
+
assertTemplateLiteral(props?: object | null): void;
|
|
1100
|
+
assertTerminatorless(props?: object | null): void;
|
|
1101
|
+
assertThisExpression(props?: object | null): void;
|
|
1102
|
+
assertThisTypeAnnotation(props?: object | null): void;
|
|
1103
|
+
assertThrowStatement(props?: object | null): void;
|
|
1104
|
+
assertTryStatement(props?: object | null): void;
|
|
1105
|
+
assertTupleTypeAnnotation(props?: object | null): void;
|
|
1106
|
+
assertTypeAlias(props?: object | null): void;
|
|
1107
|
+
assertTypeAnnotation(props?: object | null): void;
|
|
1108
|
+
assertTypeCastExpression(props?: object | null): void;
|
|
1109
|
+
assertTypeParameter(props?: object | null): void;
|
|
1110
|
+
assertTypeParameterDeclaration(props?: object | null): void;
|
|
1111
|
+
assertTypeParameterInstantiation(props?: object | null): void;
|
|
1112
|
+
assertTypeofTypeAnnotation(props?: object | null): void;
|
|
1113
|
+
assertUnaryExpression(props?: object | null): void;
|
|
1114
|
+
assertUnaryLike(props?: object | null): void;
|
|
1115
|
+
assertUnionTypeAnnotation(props?: object | null): void;
|
|
1116
|
+
assertUpdateExpression(props?: object | null): void;
|
|
1117
|
+
assertUserWhitespacable(props?: object | null): void;
|
|
1118
|
+
assertVariableDeclaration(props?: object | null): void;
|
|
1119
|
+
assertVariableDeclarator(props?: object | null): void;
|
|
1120
|
+
assertVariance(props?: object | null): void;
|
|
1121
|
+
assertVoidTypeAnnotation(props?: object | null): void;
|
|
1122
|
+
assertWhile(props?: object | null): void;
|
|
1123
|
+
assertWhileStatement(props?: object | null): void;
|
|
1124
|
+
assertWithStatement(props?: object | null): void;
|
|
1125
|
+
assertYieldExpression(props?: object | null): void;
|
|
1126
|
+
|
|
1127
|
+
assertBindingIdentifier(props?: object | null): void;
|
|
1128
|
+
assertBlockScoped(props?: object | null): void;
|
|
1129
|
+
assertGenerated(props?: object | null): void;
|
|
1130
|
+
assertPure(props?: object | null): void;
|
|
1131
|
+
assertReferenced(props?: object | null): void;
|
|
1132
|
+
assertReferencedIdentifier(props?: object | null): void;
|
|
1133
|
+
assertReferencedMemberExpression(props?: object | null): void;
|
|
1134
|
+
assertScope(props?: object | null): void;
|
|
1135
|
+
assertUser(props?: object | null): void;
|
|
1136
|
+
assertVar(props?: object | null): void;
|
|
1137
|
+
//#endregion
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
export interface HubInterface {
|
|
1141
|
+
getCode(): string | undefined;
|
|
1142
|
+
getScope(): Scope | undefined;
|
|
1143
|
+
addHelper(name: string): any;
|
|
1144
|
+
buildError<E extends Error>(node: Node, msg: string, Error: new (message?: string) => E): E;
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
export class Hub implements HubInterface {
|
|
1148
|
+
constructor();
|
|
1149
|
+
getCode(): string | undefined;
|
|
1150
|
+
getScope(): Scope | undefined;
|
|
1151
|
+
addHelper(name: string): any;
|
|
1152
|
+
buildError<E extends Error>(node: Node, msg: string, Constructor: new (message?: string) => E): E;
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
export interface TraversalContext {
|
|
1156
|
+
parentPath: NodePath;
|
|
1157
|
+
scope: Scope;
|
|
1158
|
+
state: any;
|
|
1159
|
+
opts: any;
|
|
1160
|
+
}
|