@alanszp/business-days-date-fns 9.0.0 → 10.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +15 -9
- 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 @@
|
|
|
1
|
+
{"version":3,"names":["_buffer","require","n","_t","generatorFunctions","isFunction","isStatement","isClassBody","isTSInterfaceBody","isTSEnumDeclaration","SCIENTIFIC_NOTATION","ZERO_DECIMAL_INTEGER","HAS_NEWLINE","HAS_NEWLINE_OR_BlOCK_COMMENT_END","needsParens","Printer","constructor","format","map","inForStatementInitCounter","_printStack","_indent","_indentRepeat","_insideAux","_parenPushNewlineState","_noLineTerminator","_printAuxAfterOnNextUserNode","_printedComments","Set","_endsWithInteger","_endsWithWord","_lastCommentLine","_endsWithInnerRaw","_indentInnerComments","indent","style","length","_inputMap","_buf","Buffer","generate","ast","print","_maybeAddAuxComment","get","compact","concise","dedent","semicolon","force","_appendChar","_queue","rightBrace","node","minified","removeLastSemicolon","sourceWithOffset","loc","token","rightParens","space","_space","hasContent","lastCp","getLastChar","word","str","noLineTerminatorAfter","_maybePrintInnerComments","charCodeAt","endsWith","_append","number","isNonDecimalLiteral","secondChar","Number","isInteger","test","maybeNewline","lastChar","strFirst","tokenChar","char","newline","i","retainLines","getNewlineCount","j","_newline","endsWithCharAndNewline","removeTrailingNewline","exactSource","cb","_catchUp","source","prop","columnOffset","withSource","sourceIdentifierName","identifierName","pos","_canMarkIdName","sourcePosition","_sourcePosition","identifierNamePos","_maybeAddParen","_maybeIndent","append","_maybeAddParenChar","appendChar","queue","firstChar","queueIndentation","_getIndent","_shouldIndent","parenPushNewlineState","printed","len","cha","chaPost","catchUp","line","count","getCurrentLine","_loc$prop","printTerminatorless","parent","isLabel","terminatorState","trailingCommentsLineOffset","forceParens","_node$extra","_node$leadingComments","nodeType","type","oldConcise","_compact","printMethod","undefined","ReferenceError","JSON","stringify","name","push","oldInAux","parenthesized","extra","shouldPrintParens","retainFunctionParens","leadingComments","parentType","callee","_printLeadingComments","bind","_printTrailingComments","pop","enteredPositionlessNode","_printAuxBeforeComment","_printAuxAfterComment","comment","auxiliaryCommentBefore","_printComment","value","auxiliaryCommentAfter","getPossibleRaw","raw","rawValue","printJoin","nodes","opts","_nodes$0$loc","startLine","start","newlineOpts","addNewlines","nextNodeStartLine","separator","statement","_printNewline","iterator","_node$trailingComment","trailingComments","_nextNode$loc","nextNode","printAndIndentOnComments","printBlock","body","lineOffset","innerComments","_printComments","comments","printInnerComments","hasSpace","printedCommentsCount","size","noIndentInnerCommentsHere","printSequence","_opts$indent","printList","items","commaSeparator","newLine","lastCommentLine","offset","_shouldPrintComment","ignore","has","add","shouldPrintComment","skipNewLines","noLineTerminator","isBlockComment","printNewLines","lastCharCode","val","adjustMultilineComment","_comment$loc","column","newlineRegex","RegExp","replace","indentSize","getCurrentColumn","repeat","nodeLoc","hasLoc","nodeStartLine","nodeEndLine","end","lastLine","leadingCommentNewline","shouldPrint","commentStartLine","commentEndLine","Math","max","min","singleLine","shouldSkipNewline","properties","Object","assign","prototype","Noop","_default","exports","default"],"sources":["../src/printer.ts"],"sourcesContent":["import Buffer, { type Pos } from \"./buffer.ts\";\nimport type { Loc } from \"./buffer.ts\";\nimport * as n from \"./node/index.ts\";\nimport type * as t from \"@babel/types\";\nimport {\n isFunction,\n isStatement,\n isClassBody,\n isTSInterfaceBody,\n isTSEnumDeclaration,\n} from \"@babel/types\";\nimport type {\n RecordAndTuplePluginOptions,\n PipelineOperatorPluginOptions,\n} from \"@babel/parser\";\nimport type { Opts as jsescOptions } from \"jsesc\";\n\nimport * as generatorFunctions from \"./generators/index.ts\";\nimport type SourceMap from \"./source-map.ts\";\nimport * as charCodes from \"charcodes\";\nimport type { TraceMap } from \"@jridgewell/trace-mapping\";\n\nconst SCIENTIFIC_NOTATION = /e/i;\nconst ZERO_DECIMAL_INTEGER = /\\.0+$/;\nconst HAS_NEWLINE = /[\\n\\r\\u2028\\u2029]/;\nconst HAS_NEWLINE_OR_BlOCK_COMMENT_END = /[\\n\\r\\u2028\\u2029]|\\*\\//;\n\nconst { needsParens } = n;\n\nconst enum COMMENT_TYPE {\n LEADING,\n INNER,\n TRAILING,\n}\n\nconst enum COMMENT_SKIP_NEWLINE {\n DEFAULT,\n ALL,\n LEADING,\n TRAILING,\n}\n\nconst enum PRINT_COMMENT_HINT {\n SKIP,\n ALLOW,\n DEFER,\n}\n\nexport type Format = {\n shouldPrintComment: (comment: string) => boolean;\n retainLines: boolean;\n retainFunctionParens: boolean;\n comments: boolean;\n auxiliaryCommentBefore: string;\n auxiliaryCommentAfter: string;\n compact: boolean | \"auto\";\n minified: boolean;\n concise: boolean;\n indent: {\n adjustMultilineComment: boolean;\n style: string;\n };\n recordAndTupleSyntaxType: RecordAndTuplePluginOptions[\"syntaxType\"];\n jsescOption: jsescOptions;\n /**\n * @deprecated Removed in Babel 8, use `jsescOption` instead\n */\n jsonCompatibleStrings?: boolean;\n /**\n * For use with the Hack-style pipe operator.\n * Changes what token is used for pipe bodies’ topic references.\n */\n topicToken?: PipelineOperatorPluginOptions[\"topicToken\"];\n /**\n * @deprecated Removed in Babel 8\n */\n decoratorsBeforeExport?: boolean;\n /**\n * The import attributes syntax style:\n * - \"with\" : `import { a } from \"b\" with { type: \"json\" };`\n * - \"assert\" : `import { a } from \"b\" assert { type: \"json\" };`\n * - \"with-legacy\" : `import { a } from \"b\" with type: \"json\";`\n */\n importAttributesKeyword?: \"with\" | \"assert\" | \"with-legacy\";\n};\n\ninterface AddNewlinesOptions {\n addNewlines(leading: boolean, node: t.Node): number;\n nextNodeStartLine: number;\n}\n\ninterface PrintSequenceOptions extends Partial<AddNewlinesOptions> {\n statement?: boolean;\n indent?: boolean;\n trailingCommentsLineOffset?: number;\n}\n\ninterface PrintListOptions {\n separator?: (this: Printer) => void;\n iterator?: (node: t.Node, index: number) => void;\n statement?: boolean;\n indent?: boolean;\n}\n\nexport type PrintJoinOptions = PrintListOptions & PrintSequenceOptions;\nclass Printer {\n constructor(format: Format, map: SourceMap) {\n this.format = format;\n\n this._indentRepeat = format.indent.style.length;\n\n this._inputMap = map?._inputMap;\n\n this._buf = new Buffer(map, format.indent.style[0]);\n }\n declare _inputMap: TraceMap;\n\n declare format: Format;\n inForStatementInitCounter: number = 0;\n\n declare _buf: Buffer;\n _printStack: Array<t.Node> = [];\n _indent: number = 0;\n _indentRepeat: number = 0;\n _insideAux: boolean = false;\n _parenPushNewlineState: { printed: boolean } | null = null;\n _noLineTerminator: boolean = false;\n _printAuxAfterOnNextUserNode: boolean = false;\n _printedComments = new Set<t.Comment>();\n _endsWithInteger = false;\n _endsWithWord = false;\n _lastCommentLine = 0;\n _endsWithInnerRaw: boolean = false;\n _indentInnerComments: boolean = true;\n\n generate(ast: t.Node) {\n this.print(ast);\n this._maybeAddAuxComment();\n\n return this._buf.get();\n }\n\n /**\n * Increment indent size.\n */\n\n indent(): void {\n if (this.format.compact || this.format.concise) return;\n\n this._indent++;\n }\n\n /**\n * Decrement indent size.\n */\n\n dedent(): void {\n if (this.format.compact || this.format.concise) return;\n\n this._indent--;\n }\n\n /**\n * Add a semicolon to the buffer.\n */\n\n semicolon(force: boolean = false): void {\n this._maybeAddAuxComment();\n if (force) {\n this._appendChar(charCodes.semicolon);\n } else {\n this._queue(charCodes.semicolon);\n }\n this._noLineTerminator = false;\n }\n\n /**\n * Add a right brace to the buffer.\n */\n\n rightBrace(node: t.Node): void {\n if (this.format.minified) {\n this._buf.removeLastSemicolon();\n }\n this.sourceWithOffset(\"end\", node.loc, -1);\n this.token(\"}\");\n }\n\n rightParens(node: t.Node): void {\n this.sourceWithOffset(\"end\", node.loc, -1);\n this.token(\")\");\n }\n\n /**\n * Add a space to the buffer unless it is compact.\n */\n\n space(force: boolean = false): void {\n if (this.format.compact) return;\n\n if (force) {\n this._space();\n } else if (this._buf.hasContent()) {\n const lastCp = this.getLastChar();\n if (lastCp !== charCodes.space && lastCp !== charCodes.lineFeed) {\n this._space();\n }\n }\n }\n\n /**\n * Writes a token that can't be safely parsed without taking whitespace into account.\n */\n\n word(str: string, noLineTerminatorAfter: boolean = false): void {\n this._maybePrintInnerComments();\n\n // prevent concatenating words and creating // comment out of division and regex\n if (\n this._endsWithWord ||\n (str.charCodeAt(0) === charCodes.slash && this.endsWith(charCodes.slash))\n ) {\n this._space();\n }\n\n this._maybeAddAuxComment();\n this._append(str, false);\n\n this._endsWithWord = true;\n this._noLineTerminator = noLineTerminatorAfter;\n }\n\n /**\n * Writes a number token so that we can validate if it is an integer.\n */\n\n number(str: string, number?: number): void {\n // const NON_DECIMAL_LITERAL = /^0[box]/;\n function isNonDecimalLiteral(str: string) {\n if (str.length > 2 && str.charCodeAt(0) === charCodes.digit0) {\n const secondChar = str.charCodeAt(1);\n return (\n secondChar === charCodes.lowercaseB ||\n secondChar === charCodes.lowercaseO ||\n secondChar === charCodes.lowercaseX\n );\n }\n return false;\n }\n this.word(str);\n\n // Integer tokens need special handling because they cannot have '.'s inserted\n // immediately after them.\n this._endsWithInteger =\n Number.isInteger(number) &&\n !isNonDecimalLiteral(str) &&\n !SCIENTIFIC_NOTATION.test(str) &&\n !ZERO_DECIMAL_INTEGER.test(str) &&\n str.charCodeAt(str.length - 1) !== charCodes.dot;\n }\n\n /**\n * Writes a simple token.\n */\n token(str: string, maybeNewline = false): void {\n this._maybePrintInnerComments();\n\n const lastChar = this.getLastChar();\n const strFirst = str.charCodeAt(0);\n if (\n (lastChar === charCodes.exclamationMark &&\n // space is mandatory to avoid outputting <!--\n // http://javascript.spec.whatwg.org/#comment-syntax\n (str === \"--\" ||\n // Needs spaces to avoid changing a! == 0 to a!== 0\n strFirst === charCodes.equalsTo)) ||\n // Need spaces for operators of the same kind to avoid: `a+++b`\n (strFirst === charCodes.plusSign && lastChar === charCodes.plusSign) ||\n (strFirst === charCodes.dash && lastChar === charCodes.dash) ||\n // Needs spaces to avoid changing '34' to '34.', which would still be a valid number.\n (strFirst === charCodes.dot && this._endsWithInteger)\n ) {\n this._space();\n }\n\n this._maybeAddAuxComment();\n this._append(str, maybeNewline);\n this._noLineTerminator = false;\n }\n\n tokenChar(char: number): void {\n this._maybePrintInnerComments();\n\n const lastChar = this.getLastChar();\n if (\n // Need spaces for operators of the same kind to avoid: `a+++b`\n (char === charCodes.plusSign && lastChar === charCodes.plusSign) ||\n (char === charCodes.dash && lastChar === charCodes.dash) ||\n // Needs spaces to avoid changing '34' to '34.', which would still be a valid number.\n (char === charCodes.dot && this._endsWithInteger)\n ) {\n this._space();\n }\n\n this._maybeAddAuxComment();\n this._appendChar(char);\n this._noLineTerminator = false;\n }\n\n /**\n * Add a newline (or many newlines), maintaining formatting.\n * This function checks the number of newlines in the queue and subtracts them.\n * It currently has some limitations.\n * @see {Buffer#getNewlineCount}\n */\n newline(i: number = 1, force?: boolean): void {\n if (i <= 0) return;\n\n if (!force) {\n if (this.format.retainLines || this.format.compact) return;\n\n if (this.format.concise) {\n this.space();\n return;\n }\n }\n\n if (i > 2) i = 2; // Max two lines\n\n i -= this._buf.getNewlineCount();\n\n for (let j = 0; j < i; j++) {\n this._newline();\n }\n\n return;\n }\n\n endsWith(char: number): boolean {\n return this.getLastChar() === char;\n }\n\n getLastChar(): number {\n return this._buf.getLastChar();\n }\n\n endsWithCharAndNewline(): number {\n return this._buf.endsWithCharAndNewline();\n }\n\n removeTrailingNewline(): void {\n this._buf.removeTrailingNewline();\n }\n\n exactSource(loc: Loc | undefined, cb: () => void) {\n if (!loc) {\n cb();\n return;\n }\n\n this._catchUp(\"start\", loc);\n\n this._buf.exactSource(loc, cb);\n }\n\n source(prop: \"start\" | \"end\", loc: Loc | undefined): void {\n if (!loc) return;\n\n this._catchUp(prop, loc);\n\n this._buf.source(prop, loc);\n }\n\n sourceWithOffset(\n prop: \"start\" | \"end\",\n loc: Loc | undefined,\n columnOffset: number,\n ): void {\n if (!loc) return;\n\n this._catchUp(prop, loc);\n\n this._buf.sourceWithOffset(prop, loc, columnOffset);\n }\n\n withSource(\n prop: \"start\" | \"end\",\n loc: Loc | undefined,\n cb: () => void,\n ): void {\n if (!loc) {\n cb();\n return;\n }\n\n this._catchUp(prop, loc);\n\n this._buf.withSource(prop, loc, cb);\n }\n\n sourceIdentifierName(identifierName: string, pos?: Pos): void {\n if (!this._buf._canMarkIdName) return;\n\n const sourcePosition = this._buf._sourcePosition;\n sourcePosition.identifierNamePos = pos;\n sourcePosition.identifierName = identifierName;\n }\n\n _space(): void {\n this._queue(charCodes.space);\n }\n\n _newline(): void {\n this._queue(charCodes.lineFeed);\n }\n\n _append(str: string, maybeNewline: boolean): void {\n this._maybeAddParen(str);\n this._maybeIndent(str.charCodeAt(0));\n\n this._buf.append(str, maybeNewline);\n\n this._endsWithWord = false;\n this._endsWithInteger = false;\n }\n\n _appendChar(char: number): void {\n this._maybeAddParenChar(char);\n this._maybeIndent(char);\n\n this._buf.appendChar(char);\n\n this._endsWithWord = false;\n this._endsWithInteger = false;\n }\n\n _queue(char: number) {\n this._maybeAddParenChar(char);\n this._maybeIndent(char);\n\n this._buf.queue(char);\n\n this._endsWithWord = false;\n this._endsWithInteger = false;\n }\n\n _maybeIndent(firstChar: number): void {\n // we've got a newline before us so prepend on the indentation\n if (\n this._indent &&\n firstChar !== charCodes.lineFeed &&\n this.endsWith(charCodes.lineFeed)\n ) {\n this._buf.queueIndentation(this._getIndent());\n }\n }\n\n _shouldIndent(firstChar: number) {\n // we've got a newline before us so prepend on the indentation\n if (\n this._indent &&\n firstChar !== charCodes.lineFeed &&\n this.endsWith(charCodes.lineFeed)\n ) {\n return true;\n }\n }\n\n _maybeAddParenChar(char: number): void {\n // see startTerminatorless() instance method\n const parenPushNewlineState = this._parenPushNewlineState;\n if (!parenPushNewlineState) return;\n\n // This function does two things:\n // - If needed, prints a parenthesis\n // - If the currently printed string removes the need for the paren,\n // it resets the _parenPushNewlineState field.\n // Almost everything removes the need for a paren, except for\n // comments and whitespaces.\n\n if (char === charCodes.space) {\n // Whitespaces only, the parentheses might still be needed.\n return;\n }\n\n // Check for newline or comment.\n if (char !== charCodes.lineFeed) {\n this._parenPushNewlineState = null;\n return;\n }\n\n this.token(\"(\");\n this.indent();\n parenPushNewlineState.printed = true;\n }\n\n _maybeAddParen(str: string): void {\n // see startTerminatorless() instance method\n const parenPushNewlineState = this._parenPushNewlineState;\n if (!parenPushNewlineState) return;\n\n // This function does two things:\n // - If needed, prints a parenthesis\n // - If the currently printed string removes the need for the paren,\n // it resets the _parenPushNewlineState field.\n // Almost everything removes the need for a paren, except for\n // comments and whitespaces.\n\n const len = str.length;\n\n let i;\n for (i = 0; i < len && str.charCodeAt(i) === charCodes.space; i++) continue;\n if (i === len) {\n // Whitespaces only, the parentheses might still be needed.\n return;\n }\n\n // Check for newline or comment.\n const cha = str.charCodeAt(i);\n if (cha !== charCodes.lineFeed) {\n if (\n // This is not a comment (it doesn't start with /)\n cha !== charCodes.slash ||\n // This is not a comment (it's a / operator)\n i + 1 === len\n ) {\n // After a normal token, the parentheses aren't needed anymore\n this._parenPushNewlineState = null;\n return;\n }\n\n const chaPost = str.charCodeAt(i + 1);\n\n if (chaPost === charCodes.asterisk) {\n // This is a block comment\n return;\n } else if (chaPost !== charCodes.slash) {\n // This is neither a block comment, nor a line comment.\n // After a normal token, the parentheses aren't needed anymore\n this._parenPushNewlineState = null;\n return;\n }\n }\n\n this.token(\"(\");\n this.indent();\n parenPushNewlineState.printed = true;\n }\n\n catchUp(line: number) {\n if (!this.format.retainLines) return;\n\n // catch up to this nodes newline if we're behind\n const count = line - this._buf.getCurrentLine();\n\n for (let i = 0; i < count; i++) {\n this._newline();\n }\n }\n\n _catchUp(prop: \"start\" | \"end\", loc?: Loc) {\n if (!this.format.retainLines) return;\n\n // catch up to this nodes newline if we're behind\n const line = loc?.[prop]?.line;\n if (line != null) {\n const count = line - this._buf.getCurrentLine();\n\n for (let i = 0; i < count; i++) {\n this._newline();\n }\n }\n }\n\n /**\n * Get the current indent.\n */\n\n _getIndent(): number {\n return this._indentRepeat * this._indent;\n }\n\n printTerminatorless(node: t.Node, parent: t.Node, isLabel: boolean) {\n /**\n * Set some state that will be modified if a newline has been inserted before any\n * non-space characters.\n *\n * This is to prevent breaking semantics for terminatorless separator nodes. eg:\n *\n * return foo;\n *\n * returns `foo`. But if we do:\n *\n * return\n * foo;\n *\n * `undefined` will be returned and not `foo` due to the terminator.\n */\n if (isLabel) {\n this._noLineTerminator = true;\n this.print(node, parent);\n } else {\n const terminatorState = {\n printed: false,\n };\n this._parenPushNewlineState = terminatorState;\n this.print(node, parent);\n /**\n * Print an ending parentheses if a starting one has been printed.\n */\n if (terminatorState.printed) {\n this.dedent();\n this.newline();\n this.token(\")\");\n }\n }\n }\n\n print(\n node: t.Node | null,\n parent?: t.Node,\n noLineTerminatorAfter?: boolean,\n // trailingCommentsLineOffset also used to check if called from printJoin\n // it will be ignored if `noLineTerminatorAfter||this._noLineTerminator`\n trailingCommentsLineOffset?: number,\n forceParens?: boolean,\n ) {\n if (!node) return;\n\n this._endsWithInnerRaw = false;\n\n const nodeType = node.type;\n const format = this.format;\n\n const oldConcise = format.concise;\n if (\n // @ts-expect-error document _compact AST properties\n node._compact\n ) {\n format.concise = true;\n }\n\n const printMethod =\n this[\n nodeType as Exclude<\n t.Node[\"type\"],\n // removed\n | \"Noop\"\n // renamed\n | t.DeprecatedAliases[\"type\"]\n >\n ];\n if (printMethod === undefined) {\n throw new ReferenceError(\n `unknown node of type ${JSON.stringify(\n nodeType,\n )} with constructor ${JSON.stringify(node.constructor.name)}`,\n );\n }\n\n this._printStack.push(node);\n\n const oldInAux = this._insideAux;\n this._insideAux = node.loc == undefined;\n this._maybeAddAuxComment(this._insideAux && !oldInAux);\n\n const parenthesized = node.extra?.parenthesized as boolean | undefined;\n let shouldPrintParens =\n forceParens ||\n (parenthesized &&\n format.retainFunctionParens &&\n nodeType === \"FunctionExpression\") ||\n needsParens(node, parent, this._printStack);\n\n if (\n !shouldPrintParens &&\n parenthesized &&\n node.leadingComments?.length &&\n node.leadingComments[0].type === \"CommentBlock\"\n ) {\n const parentType = parent?.type;\n switch (parentType) {\n case \"ExpressionStatement\":\n case \"VariableDeclarator\":\n case \"AssignmentExpression\":\n case \"ReturnStatement\":\n break;\n case \"CallExpression\":\n case \"OptionalCallExpression\":\n case \"NewExpression\":\n if (parent.callee !== node) break;\n // falls through\n default:\n shouldPrintParens = true;\n }\n }\n\n if (shouldPrintParens) {\n this.token(\"(\");\n this._endsWithInnerRaw = false;\n }\n\n this._lastCommentLine = 0;\n\n this._printLeadingComments(node, parent);\n\n const loc = nodeType === \"Program\" || nodeType === \"File\" ? null : node.loc;\n\n this.exactSource(loc, printMethod.bind(this, node, parent));\n\n if (shouldPrintParens) {\n this._printTrailingComments(node, parent);\n this.token(\")\");\n this._noLineTerminator = noLineTerminatorAfter;\n } else if (noLineTerminatorAfter && !this._noLineTerminator) {\n this._noLineTerminator = true;\n this._printTrailingComments(node, parent);\n } else {\n this._printTrailingComments(node, parent, trailingCommentsLineOffset);\n }\n\n // end\n this._printStack.pop();\n\n format.concise = oldConcise;\n this._insideAux = oldInAux;\n\n this._endsWithInnerRaw = false;\n }\n\n _maybeAddAuxComment(enteredPositionlessNode?: boolean) {\n if (enteredPositionlessNode) this._printAuxBeforeComment();\n if (!this._insideAux) this._printAuxAfterComment();\n }\n\n _printAuxBeforeComment() {\n if (this._printAuxAfterOnNextUserNode) return;\n this._printAuxAfterOnNextUserNode = true;\n\n const comment = this.format.auxiliaryCommentBefore;\n if (comment) {\n this._printComment(\n {\n type: \"CommentBlock\",\n value: comment,\n },\n COMMENT_SKIP_NEWLINE.DEFAULT,\n );\n }\n }\n\n _printAuxAfterComment() {\n if (!this._printAuxAfterOnNextUserNode) return;\n this._printAuxAfterOnNextUserNode = false;\n\n const comment = this.format.auxiliaryCommentAfter;\n if (comment) {\n this._printComment(\n {\n type: \"CommentBlock\",\n value: comment,\n },\n COMMENT_SKIP_NEWLINE.DEFAULT,\n );\n }\n }\n\n getPossibleRaw(\n node:\n | t.StringLiteral\n | t.NumericLiteral\n | t.BigIntLiteral\n | t.DecimalLiteral\n | t.DirectiveLiteral\n | t.JSXText,\n ): string | undefined {\n const extra = node.extra;\n if (\n extra?.raw != null &&\n extra.rawValue != null &&\n node.value === extra.rawValue\n ) {\n // @ts-expect-error: The extra.raw of these AST node types must be a string\n return extra.raw;\n }\n }\n\n printJoin(\n nodes: Array<t.Node> | undefined | null,\n parent: t.Node,\n opts: PrintJoinOptions = {},\n ) {\n if (!nodes?.length) return;\n\n let { indent } = opts;\n\n if (indent == null && this.format.retainLines) {\n const startLine = nodes[0].loc?.start.line;\n if (startLine != null && startLine !== this._buf.getCurrentLine()) {\n indent = true;\n }\n }\n\n if (indent) this.indent();\n\n const newlineOpts: AddNewlinesOptions = {\n addNewlines: opts.addNewlines,\n nextNodeStartLine: 0,\n };\n\n const separator = opts.separator ? opts.separator.bind(this) : null;\n\n const len = nodes.length;\n for (let i = 0; i < len; i++) {\n const node = nodes[i];\n if (!node) continue;\n\n if (opts.statement) this._printNewline(i === 0, newlineOpts);\n\n this.print(node, parent, undefined, opts.trailingCommentsLineOffset || 0);\n\n opts.iterator?.(node, i);\n\n if (i < len - 1) separator?.();\n\n if (opts.statement) {\n if (!node.trailingComments?.length) {\n this._lastCommentLine = 0;\n }\n\n if (i + 1 === len) {\n this.newline(1);\n } else {\n const nextNode = nodes[i + 1];\n newlineOpts.nextNodeStartLine = nextNode.loc?.start.line || 0;\n\n this._printNewline(true, newlineOpts);\n }\n }\n }\n\n if (indent) this.dedent();\n }\n\n printAndIndentOnComments(node: t.Node, parent: t.Node) {\n const indent = node.leadingComments && node.leadingComments.length > 0;\n if (indent) this.indent();\n this.print(node, parent);\n if (indent) this.dedent();\n }\n\n printBlock(parent: Extract<t.Node, { body: t.Statement }>) {\n const node = parent.body;\n\n if (node.type !== \"EmptyStatement\") {\n this.space();\n }\n\n this.print(node, parent);\n }\n\n _printTrailingComments(node: t.Node, parent?: t.Node, lineOffset?: number) {\n const { innerComments, trailingComments } = node;\n // We print inner comments here, so that if for some reason they couldn't\n // be printed in earlier locations they are still printed *somewhere*,\n // even if at the end of the node.\n if (innerComments?.length) {\n this._printComments(\n COMMENT_TYPE.TRAILING,\n innerComments,\n node,\n parent,\n lineOffset,\n );\n }\n if (trailingComments?.length) {\n this._printComments(\n COMMENT_TYPE.TRAILING,\n trailingComments,\n node,\n parent,\n lineOffset,\n );\n }\n }\n\n _printLeadingComments(node: t.Node, parent: t.Node) {\n const comments = node.leadingComments;\n if (!comments?.length) return;\n this._printComments(COMMENT_TYPE.LEADING, comments, node, parent);\n }\n\n _maybePrintInnerComments() {\n if (this._endsWithInnerRaw) this.printInnerComments();\n this._endsWithInnerRaw = true;\n this._indentInnerComments = true;\n }\n\n printInnerComments() {\n const node = this._printStack[this._printStack.length - 1];\n const comments = node.innerComments;\n if (!comments?.length) return;\n\n const hasSpace = this.endsWith(charCodes.space);\n const indent = this._indentInnerComments;\n const printedCommentsCount = this._printedComments.size;\n if (indent) this.indent();\n this._printComments(COMMENT_TYPE.INNER, comments, node);\n if (hasSpace && printedCommentsCount !== this._printedComments.size) {\n this.space();\n }\n if (indent) this.dedent();\n }\n\n noIndentInnerCommentsHere() {\n this._indentInnerComments = false;\n }\n\n printSequence(\n nodes: t.Node[],\n parent: t.Node,\n opts: PrintSequenceOptions = {},\n ) {\n opts.statement = true;\n opts.indent ??= false;\n this.printJoin(nodes, parent, opts);\n }\n\n printList(items: t.Node[], parent: t.Node, opts: PrintListOptions = {}) {\n if (opts.separator == null) {\n opts.separator = commaSeparator;\n }\n\n this.printJoin(items, parent, opts);\n }\n\n _printNewline(newLine: boolean, opts: AddNewlinesOptions) {\n const format = this.format;\n\n // Fast path since 'this.newline' does nothing when not tracking lines.\n if (format.retainLines || format.compact) return;\n\n // Fast path for concise since 'this.newline' just inserts a space when\n // concise formatting is in use.\n if (format.concise) {\n this.space();\n return;\n }\n\n if (!newLine) {\n return;\n }\n\n const startLine = opts.nextNodeStartLine;\n const lastCommentLine = this._lastCommentLine;\n if (startLine > 0 && lastCommentLine > 0) {\n const offset = startLine - lastCommentLine;\n if (offset >= 0) {\n this.newline(offset || 1);\n return;\n }\n }\n\n // don't add newlines at the beginning of the file\n if (this._buf.hasContent()) {\n // Here is the logic of the original line wrapping according to the node layout, we are not using it now.\n // We currently add at most one newline to each node in the list, ignoring `opts.addNewlines`.\n\n // let lines = 0;\n // if (!leading) lines++; // always include at least a single line after\n // if (opts.addNewlines) lines += opts.addNewlines(leading, node) || 0;\n\n // const needs = leading ? needsWhitespaceBefore : needsWhitespaceAfter;\n // if (needs(node, parent)) lines++;\n\n // this.newline(Math.min(2, lines));\n\n this.newline(1);\n }\n }\n\n // Returns `PRINT_COMMENT_HINT.DEFER` if the comment cannot be printed in this position due to\n // line terminators, signaling that the print comments loop can stop and\n // resume printing comments at the next possible position. This happens when\n // printing inner comments, since if we have an inner comment with a multiline\n // there is at least one inner position where line terminators are allowed.\n _shouldPrintComment(comment: t.Comment): PRINT_COMMENT_HINT {\n // Some plugins (such as flow-strip-types) use this to mark comments as removed using the AST-root 'comments' property,\n // where they can't manually mutate the AST node comment lists.\n if (comment.ignore) return PRINT_COMMENT_HINT.SKIP;\n\n if (this._printedComments.has(comment)) return PRINT_COMMENT_HINT.SKIP;\n\n if (\n this._noLineTerminator &&\n HAS_NEWLINE_OR_BlOCK_COMMENT_END.test(comment.value)\n ) {\n return PRINT_COMMENT_HINT.DEFER;\n }\n\n this._printedComments.add(comment);\n\n if (!this.format.shouldPrintComment(comment.value)) {\n return PRINT_COMMENT_HINT.SKIP;\n }\n\n return PRINT_COMMENT_HINT.ALLOW;\n }\n\n _printComment(comment: t.Comment, skipNewLines: COMMENT_SKIP_NEWLINE) {\n const noLineTerminator = this._noLineTerminator;\n const isBlockComment = comment.type === \"CommentBlock\";\n\n // Add a newline before and after a block comment, unless explicitly\n // disallowed\n const printNewLines =\n isBlockComment &&\n skipNewLines !== COMMENT_SKIP_NEWLINE.ALL &&\n !this._noLineTerminator;\n\n if (\n printNewLines &&\n this._buf.hasContent() &&\n skipNewLines !== COMMENT_SKIP_NEWLINE.LEADING\n ) {\n this.newline(1);\n }\n\n const lastCharCode = this.getLastChar();\n if (\n lastCharCode !== charCodes.leftSquareBracket &&\n lastCharCode !== charCodes.leftCurlyBrace\n ) {\n this.space();\n }\n\n let val;\n if (isBlockComment) {\n const { _parenPushNewlineState } = this;\n if (\n _parenPushNewlineState?.printed === false &&\n HAS_NEWLINE.test(comment.value)\n ) {\n this.token(\"(\");\n this.indent();\n _parenPushNewlineState.printed = true;\n }\n val = `/*${comment.value}*/`;\n if (this.format.indent.adjustMultilineComment) {\n const offset = comment.loc?.start.column;\n if (offset) {\n const newlineRegex = new RegExp(\"\\\\n\\\\s{1,\" + offset + \"}\", \"g\");\n val = val.replace(newlineRegex, \"\\n\");\n }\n if (this.format.concise) {\n val = val.replace(/\\n(?!$)/g, `\\n`);\n } else {\n let indentSize = this.format.retainLines\n ? 0\n : this._buf.getCurrentColumn();\n\n if (this._shouldIndent(charCodes.slash) || this.format.retainLines) {\n indentSize += this._getIndent();\n }\n\n val = val.replace(/\\n(?!$)/g, `\\n${\" \".repeat(indentSize)}`);\n }\n }\n } else if (!noLineTerminator) {\n val = `//${comment.value}`;\n } else {\n // It was a single-line comment, so it's guaranteed to not\n // contain newlines and it can be safely printed as a block\n // comment.\n val = `/*${comment.value}*/`;\n }\n\n // Avoid creating //* comments\n if (this.endsWith(charCodes.slash)) this._space();\n\n this.source(\"start\", comment.loc);\n this._append(val, isBlockComment);\n\n if (!isBlockComment && !noLineTerminator) {\n this.newline(1, true);\n }\n\n if (printNewLines && skipNewLines !== COMMENT_SKIP_NEWLINE.TRAILING) {\n this.newline(1);\n }\n }\n\n _printComments(\n type: COMMENT_TYPE,\n comments: readonly t.Comment[],\n node: t.Node,\n parent?: t.Node,\n lineOffset: number = 0,\n ) {\n const nodeLoc = node.loc;\n const len = comments.length;\n let hasLoc = !!nodeLoc;\n const nodeStartLine = hasLoc ? nodeLoc.start.line : 0;\n const nodeEndLine = hasLoc ? nodeLoc.end.line : 0;\n let lastLine = 0;\n let leadingCommentNewline = 0;\n\n const maybeNewline = this._noLineTerminator\n ? function () {}\n : this.newline.bind(this);\n\n for (let i = 0; i < len; i++) {\n const comment = comments[i];\n\n const shouldPrint = this._shouldPrintComment(comment);\n if (shouldPrint === PRINT_COMMENT_HINT.DEFER) {\n hasLoc = false;\n break;\n }\n if (hasLoc && comment.loc && shouldPrint === PRINT_COMMENT_HINT.ALLOW) {\n const commentStartLine = comment.loc.start.line;\n const commentEndLine = comment.loc.end.line;\n if (type === COMMENT_TYPE.LEADING) {\n let offset = 0;\n if (i === 0) {\n // Because currently we cannot handle blank lines before leading comments,\n // we always wrap before and after multi-line comments.\n if (\n this._buf.hasContent() &&\n (comment.type === \"CommentLine\" ||\n commentStartLine != commentEndLine)\n ) {\n offset = leadingCommentNewline = 1;\n }\n } else {\n offset = commentStartLine - lastLine;\n }\n lastLine = commentEndLine;\n\n maybeNewline(offset);\n this._printComment(comment, COMMENT_SKIP_NEWLINE.ALL);\n\n if (i + 1 === len) {\n maybeNewline(\n Math.max(nodeStartLine - lastLine, leadingCommentNewline),\n );\n lastLine = nodeStartLine;\n }\n } else if (type === COMMENT_TYPE.INNER) {\n const offset =\n commentStartLine - (i === 0 ? nodeStartLine : lastLine);\n lastLine = commentEndLine;\n\n maybeNewline(offset);\n this._printComment(comment, COMMENT_SKIP_NEWLINE.ALL);\n\n if (i + 1 === len) {\n maybeNewline(Math.min(1, nodeEndLine - lastLine)); // TODO: Improve here when inner comments processing is stronger\n lastLine = nodeEndLine;\n }\n } else {\n const offset =\n commentStartLine - (i === 0 ? nodeEndLine - lineOffset : lastLine);\n lastLine = commentEndLine;\n\n maybeNewline(offset);\n this._printComment(comment, COMMENT_SKIP_NEWLINE.ALL);\n }\n } else {\n hasLoc = false;\n if (shouldPrint !== PRINT_COMMENT_HINT.ALLOW) {\n continue;\n }\n\n if (len === 1) {\n const singleLine = comment.loc\n ? comment.loc.start.line === comment.loc.end.line\n : !HAS_NEWLINE.test(comment.value);\n\n const shouldSkipNewline =\n singleLine &&\n !isStatement(node) &&\n !isClassBody(parent) &&\n !isTSInterfaceBody(parent) &&\n !isTSEnumDeclaration(parent);\n\n if (type === COMMENT_TYPE.LEADING) {\n this._printComment(\n comment,\n (shouldSkipNewline && node.type !== \"ObjectExpression\") ||\n (singleLine && isFunction(parent, { body: node }))\n ? COMMENT_SKIP_NEWLINE.ALL\n : COMMENT_SKIP_NEWLINE.DEFAULT,\n );\n } else if (shouldSkipNewline && type === COMMENT_TYPE.TRAILING) {\n this._printComment(comment, COMMENT_SKIP_NEWLINE.ALL);\n } else {\n this._printComment(comment, COMMENT_SKIP_NEWLINE.DEFAULT);\n }\n } else if (\n type === COMMENT_TYPE.INNER &&\n !(node.type === \"ObjectExpression\" && node.properties.length > 1) &&\n node.type !== \"ClassBody\" &&\n node.type !== \"TSInterfaceBody\"\n ) {\n // class X {\n // /*:: a: number*/\n // /*:: b: ?string*/\n // }\n\n this._printComment(\n comment,\n i === 0\n ? COMMENT_SKIP_NEWLINE.LEADING\n : i === len - 1\n ? COMMENT_SKIP_NEWLINE.TRAILING\n : COMMENT_SKIP_NEWLINE.DEFAULT,\n );\n } else {\n this._printComment(comment, COMMENT_SKIP_NEWLINE.DEFAULT);\n }\n }\n }\n\n if (type === COMMENT_TYPE.TRAILING && hasLoc && lastLine) {\n this._lastCommentLine = lastLine;\n }\n }\n}\n\n// Expose the node type functions and helpers on the prototype for easy usage.\nObject.assign(Printer.prototype, generatorFunctions);\n\nif (!process.env.BABEL_8_BREAKING) {\n // @ts-ignore(Babel 7 vs Babel 8) Babel 7 has Noop print method\n Printer.prototype.Noop = function Noop(this: Printer) {};\n}\n\ntype GeneratorFunctions = typeof generatorFunctions;\ninterface Printer extends GeneratorFunctions {}\nexport default Printer;\n\nfunction commaSeparator(this: Printer) {\n this.token(\",\");\n this.space();\n}\n"],"mappings":"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"}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _genMapping = require("@jridgewell/gen-mapping");
|
|
8
|
+
var _traceMapping = require("@jridgewell/trace-mapping");
|
|
9
|
+
class SourceMap {
|
|
10
|
+
constructor(opts, code) {
|
|
11
|
+
var _opts$sourceFileName;
|
|
12
|
+
this._map = void 0;
|
|
13
|
+
this._rawMappings = void 0;
|
|
14
|
+
this._sourceFileName = void 0;
|
|
15
|
+
this._lastGenLine = 0;
|
|
16
|
+
this._lastSourceLine = 0;
|
|
17
|
+
this._lastSourceColumn = 0;
|
|
18
|
+
this._inputMap = void 0;
|
|
19
|
+
const map = this._map = new _genMapping.GenMapping({
|
|
20
|
+
sourceRoot: opts.sourceRoot
|
|
21
|
+
});
|
|
22
|
+
this._sourceFileName = (_opts$sourceFileName = opts.sourceFileName) == null ? void 0 : _opts$sourceFileName.replace(/\\/g, "/");
|
|
23
|
+
this._rawMappings = undefined;
|
|
24
|
+
if (opts.inputSourceMap) {
|
|
25
|
+
this._inputMap = new _traceMapping.TraceMap(opts.inputSourceMap);
|
|
26
|
+
const resolvedSources = this._inputMap.resolvedSources;
|
|
27
|
+
if (resolvedSources.length) {
|
|
28
|
+
for (let i = 0; i < resolvedSources.length; i++) {
|
|
29
|
+
var _this$_inputMap$sourc;
|
|
30
|
+
(0, _genMapping.setSourceContent)(map, resolvedSources[i], (_this$_inputMap$sourc = this._inputMap.sourcesContent) == null ? void 0 : _this$_inputMap$sourc[i]);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
if (typeof code === "string" && !opts.inputSourceMap) {
|
|
35
|
+
(0, _genMapping.setSourceContent)(map, this._sourceFileName, code);
|
|
36
|
+
} else if (typeof code === "object") {
|
|
37
|
+
for (const sourceFileName of Object.keys(code)) {
|
|
38
|
+
(0, _genMapping.setSourceContent)(map, sourceFileName.replace(/\\/g, "/"), code[sourceFileName]);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
get() {
|
|
43
|
+
return (0, _genMapping.toEncodedMap)(this._map);
|
|
44
|
+
}
|
|
45
|
+
getDecoded() {
|
|
46
|
+
return (0, _genMapping.toDecodedMap)(this._map);
|
|
47
|
+
}
|
|
48
|
+
getRawMappings() {
|
|
49
|
+
return this._rawMappings || (this._rawMappings = (0, _genMapping.allMappings)(this._map));
|
|
50
|
+
}
|
|
51
|
+
mark(generated, line, column, identifierName, identifierNamePos, filename) {
|
|
52
|
+
var _originalMapping;
|
|
53
|
+
this._rawMappings = undefined;
|
|
54
|
+
let originalMapping;
|
|
55
|
+
if (line != null) {
|
|
56
|
+
if (this._inputMap) {
|
|
57
|
+
originalMapping = (0, _traceMapping.originalPositionFor)(this._inputMap, {
|
|
58
|
+
line,
|
|
59
|
+
column
|
|
60
|
+
});
|
|
61
|
+
if (!originalMapping.name && identifierNamePos) {
|
|
62
|
+
const originalIdentifierMapping = (0, _traceMapping.originalPositionFor)(this._inputMap, identifierNamePos);
|
|
63
|
+
if (originalIdentifierMapping.name) {
|
|
64
|
+
identifierName = originalIdentifierMapping.name;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
} else {
|
|
68
|
+
originalMapping = {
|
|
69
|
+
source: (filename == null ? void 0 : filename.replace(/\\/g, "/")) || this._sourceFileName,
|
|
70
|
+
line: line,
|
|
71
|
+
column: column
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
(0, _genMapping.maybeAddMapping)(this._map, {
|
|
76
|
+
name: identifierName,
|
|
77
|
+
generated,
|
|
78
|
+
source: (_originalMapping = originalMapping) == null ? void 0 : _originalMapping.source,
|
|
79
|
+
original: originalMapping
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
exports.default = SourceMap;
|
|
84
|
+
|
|
85
|
+
//# sourceMappingURL=source-map.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_genMapping","require","_traceMapping","SourceMap","constructor","opts","code","_opts$sourceFileName","_map","_rawMappings","_sourceFileName","_lastGenLine","_lastSourceLine","_lastSourceColumn","_inputMap","map","GenMapping","sourceRoot","sourceFileName","replace","undefined","inputSourceMap","TraceMap","resolvedSources","length","i","_this$_inputMap$sourc","setSourceContent","sourcesContent","Object","keys","get","toEncodedMap","getDecoded","toDecodedMap","getRawMappings","allMappings","mark","generated","line","column","identifierName","identifierNamePos","filename","_originalMapping","originalMapping","originalPositionFor","name","originalIdentifierMapping","source","maybeAddMapping","original","exports","default"],"sources":["../src/source-map.ts"],"sourcesContent":["import {\n GenMapping,\n maybeAddMapping,\n setSourceContent,\n allMappings,\n toEncodedMap,\n toDecodedMap,\n} from \"@jridgewell/gen-mapping\";\n\nimport type {\n EncodedSourceMap,\n DecodedSourceMap,\n Mapping,\n} from \"@jridgewell/gen-mapping\";\n\nimport {\n type SourceMapInput,\n originalPositionFor,\n TraceMap,\n} from \"@jridgewell/trace-mapping\";\n\n/**\n * Build a sourcemap.\n */\n\nexport default class SourceMap {\n private _map: GenMapping;\n private _rawMappings: Mapping[] | undefined;\n private _sourceFileName: string | undefined;\n\n // Any real line is > 0, so init to 0 is fine.\n private _lastGenLine = 0;\n private _lastSourceLine = 0;\n\n // Source columns can be 0, but we only check in unison with sourceLine, which\n // inits to an impossible value. So init to 0 is fine.\n private _lastSourceColumn = 0;\n\n public _inputMap: TraceMap;\n\n constructor(\n opts: {\n sourceFileName?: string;\n sourceRoot?: string;\n inputSourceMap?: SourceMapInput;\n },\n code: string | { [sourceFileName: string]: string },\n ) {\n const map = (this._map = new GenMapping({ sourceRoot: opts.sourceRoot }));\n this._sourceFileName = opts.sourceFileName?.replace(/\\\\/g, \"/\");\n this._rawMappings = undefined;\n\n if (opts.inputSourceMap) {\n this._inputMap = new TraceMap(opts.inputSourceMap);\n const resolvedSources = this._inputMap.resolvedSources;\n if (resolvedSources.length) {\n for (let i = 0; i < resolvedSources.length; i++) {\n setSourceContent(\n map,\n resolvedSources[i],\n this._inputMap.sourcesContent?.[i],\n );\n }\n }\n }\n\n if (typeof code === \"string\" && !opts.inputSourceMap) {\n setSourceContent(map, this._sourceFileName, code);\n } else if (typeof code === \"object\") {\n for (const sourceFileName of Object.keys(code)) {\n setSourceContent(\n map,\n sourceFileName.replace(/\\\\/g, \"/\"),\n code[sourceFileName],\n );\n }\n }\n }\n\n /**\n * Get the sourcemap.\n */\n get(): EncodedSourceMap {\n return toEncodedMap(this._map);\n }\n\n getDecoded(): DecodedSourceMap {\n return toDecodedMap(this._map);\n }\n\n getRawMappings(): Mapping[] {\n return (this._rawMappings ||= allMappings(this._map));\n }\n\n /**\n * Mark the current generated position with a source position. May also be passed null line/column\n * values to insert a mapping to nothing.\n */\n\n mark(\n generated: { line: number; column: number },\n line: number,\n column: number,\n identifierName?: string | null,\n identifierNamePos?: { line: number; column: number },\n filename?: string | null,\n ) {\n this._rawMappings = undefined;\n\n let originalMapping: {\n source: string | null;\n name?: string | null;\n line: number | null;\n column: number | null;\n };\n\n if (line != null) {\n if (this._inputMap) {\n // This is the lookup for this mark\n originalMapping = originalPositionFor(this._inputMap, {\n line,\n column,\n });\n\n // If the we found a name, nothing else needs to be done\n // Maybe we're marking a `(` and the input map already had a name attached there,\n // or we're marking a `(` and the sourcemap spanned a `foo(`,\n // or we're marking an identifier, etc.\n if (!originalMapping.name && identifierNamePos) {\n // We're trying to mark a `(` (as that's the only thing that provides\n // an identifierNamePos currently), and we the AST had an identifier attached.\n // Lookup it's original name.\n const originalIdentifierMapping = originalPositionFor(\n this._inputMap,\n identifierNamePos,\n );\n if (originalIdentifierMapping.name) {\n identifierName = originalIdentifierMapping.name;\n }\n }\n } else {\n originalMapping = {\n source: filename?.replace(/\\\\/g, \"/\") || this._sourceFileName,\n line: line,\n column: column,\n };\n }\n }\n\n maybeAddMapping(this._map, {\n name: identifierName,\n generated,\n source: originalMapping?.source,\n original: originalMapping,\n });\n }\n}\n"],"mappings":"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"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@babel/generator",
|
|
3
|
+
"version": "7.23.6",
|
|
4
|
+
"description": "Turns an AST into code.",
|
|
5
|
+
"author": "The Babel Team (https://babel.dev/team)",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/babel/babel.git",
|
|
13
|
+
"directory": "packages/babel-generator"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://babel.dev/docs/en/next/babel-generator",
|
|
16
|
+
"bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20generator%22+is%3Aopen",
|
|
17
|
+
"main": "./lib/index.js",
|
|
18
|
+
"files": [
|
|
19
|
+
"lib"
|
|
20
|
+
],
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@babel/types": "^7.23.6",
|
|
23
|
+
"@jridgewell/gen-mapping": "^0.3.2",
|
|
24
|
+
"@jridgewell/trace-mapping": "^0.3.17",
|
|
25
|
+
"jsesc": "^2.5.1"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@babel/helper-fixtures": "^7.23.4",
|
|
29
|
+
"@babel/parser": "^7.23.6",
|
|
30
|
+
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
31
|
+
"@types/jsesc": "^2.5.0",
|
|
32
|
+
"charcodes": "^0.2.0"
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=6.9.0"
|
|
36
|
+
},
|
|
37
|
+
"type": "commonjs"
|
|
38
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @babel/helper-annotate-as-pure
|
|
2
|
+
|
|
3
|
+
> Helper function to annotate paths and nodes with #__PURE__ comment
|
|
4
|
+
|
|
5
|
+
See our website [@babel/helper-annotate-as-pure](https://babeljs.io/docs/en/babel-helper-annotate-as-pure) for more information.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
Using npm:
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
npm install --save @babel/helper-annotate-as-pure
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
or using yarn:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
yarn add @babel/helper-annotate-as-pure
|
|
19
|
+
```
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = annotateAsPure;
|
|
7
|
+
var _t = require("@babel/types");
|
|
8
|
+
const {
|
|
9
|
+
addComment
|
|
10
|
+
} = _t;
|
|
11
|
+
const PURE_ANNOTATION = "#__PURE__";
|
|
12
|
+
const isPureAnnotated = ({
|
|
13
|
+
leadingComments
|
|
14
|
+
}) => !!leadingComments && leadingComments.some(comment => /[@#]__PURE__/.test(comment.value));
|
|
15
|
+
function annotateAsPure(pathOrNode) {
|
|
16
|
+
const node = pathOrNode["node"] || pathOrNode;
|
|
17
|
+
if (isPureAnnotated(node)) {
|
|
18
|
+
return;
|
|
19
|
+
}
|
|
20
|
+
addComment(node, "leading", PURE_ANNOTATION);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_t","require","addComment","PURE_ANNOTATION","isPureAnnotated","leadingComments","some","comment","test","value","annotateAsPure","pathOrNode","node"],"sources":["../src/index.ts"],"sourcesContent":["import { addComment, type Node } from \"@babel/types\";\nimport type { NodePath } from \"@babel/traverse\";\n\nconst PURE_ANNOTATION = \"#__PURE__\";\n\nconst isPureAnnotated = ({ leadingComments }: Node): boolean =>\n !!leadingComments &&\n leadingComments.some(comment => /[@#]__PURE__/.test(comment.value));\n\nexport default function annotateAsPure(pathOrNode: Node | NodePath): void {\n const node =\n // @ts-expect-error Node will not have `node` property\n (pathOrNode[\"node\"] || pathOrNode) as Node;\n if (isPureAnnotated(node)) {\n return;\n }\n addComment(node, \"leading\", PURE_ANNOTATION);\n}\n"],"mappings":";;;;;;AAAA,IAAAA,EAAA,GAAAC,OAAA;AAAqD;EAA5CC;AAAU,IAAAF,EAAA;AAGnB,MAAMG,eAAe,GAAG,WAAW;AAEnC,MAAMC,eAAe,GAAGA,CAAC;EAAEC;AAAsB,CAAC,KAChD,CAAC,CAACA,eAAe,IACjBA,eAAe,CAACC,IAAI,CAACC,OAAO,IAAI,cAAc,CAACC,IAAI,CAACD,OAAO,CAACE,KAAK,CAAC,CAAC;AAEtD,SAASC,cAAcA,CAACC,UAA2B,EAAQ;EACxE,MAAMC,IAAI,GAEPD,UAAU,CAAC,MAAM,CAAC,IAAIA,UAAmB;EAC5C,IAAIP,eAAe,CAACQ,IAAI,CAAC,EAAE;IACzB;EACF;EACAV,UAAU,CAACU,IAAI,EAAE,SAAS,EAAET,eAAe,CAAC;AAC9C"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@babel/helper-annotate-as-pure",
|
|
3
|
+
"version": "7.22.5",
|
|
4
|
+
"description": "Helper function to annotate paths and nodes with #__PURE__ comment",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/babel/babel.git",
|
|
8
|
+
"directory": "packages/babel-helper-annotate-as-pure"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://babel.dev/docs/en/next/babel-helper-annotate-as-pure",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"main": "./lib/index.js",
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@babel/types": "^7.22.5"
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=6.9.0"
|
|
21
|
+
},
|
|
22
|
+
"author": "The Babel Team (https://babel.dev/team)",
|
|
23
|
+
"type": "commonjs"
|
|
24
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @babel/helper-builder-binary-assignment-operator-visitor
|
|
2
|
+
|
|
3
|
+
> Helper function to build binary assignment operator visitors
|
|
4
|
+
|
|
5
|
+
See our website [@babel/helper-builder-binary-assignment-operator-visitor](https://babeljs.io/docs/babel-helper-builder-binary-assignment-operator-visitor) for more information.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
Using npm:
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
npm install --save @babel/helper-builder-binary-assignment-operator-visitor
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
or using yarn:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
yarn add @babel/helper-builder-binary-assignment-operator-visitor
|
|
19
|
+
```
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = explode;
|
|
7
|
+
var _t = require("@babel/types");
|
|
8
|
+
const {
|
|
9
|
+
assignmentExpression,
|
|
10
|
+
cloneNode,
|
|
11
|
+
isIdentifier,
|
|
12
|
+
isLiteral,
|
|
13
|
+
isMemberExpression,
|
|
14
|
+
isPrivateName,
|
|
15
|
+
isPureish,
|
|
16
|
+
isSuper,
|
|
17
|
+
memberExpression,
|
|
18
|
+
toComputedKey
|
|
19
|
+
} = _t;
|
|
20
|
+
function getObjRef(node, nodes, scope) {
|
|
21
|
+
let ref;
|
|
22
|
+
if (isIdentifier(node)) {
|
|
23
|
+
if (scope.hasBinding(node.name)) {
|
|
24
|
+
return node;
|
|
25
|
+
} else {
|
|
26
|
+
ref = node;
|
|
27
|
+
}
|
|
28
|
+
} else if (isMemberExpression(node)) {
|
|
29
|
+
ref = node.object;
|
|
30
|
+
if (isSuper(ref) || isIdentifier(ref) && scope.hasBinding(ref.name)) {
|
|
31
|
+
return ref;
|
|
32
|
+
}
|
|
33
|
+
} else {
|
|
34
|
+
throw new Error(`We can't explode this node type ${node["type"]}`);
|
|
35
|
+
}
|
|
36
|
+
const temp = scope.generateUidIdentifierBasedOnNode(ref);
|
|
37
|
+
scope.push({
|
|
38
|
+
id: temp
|
|
39
|
+
});
|
|
40
|
+
nodes.push(assignmentExpression("=", cloneNode(temp), cloneNode(ref)));
|
|
41
|
+
return temp;
|
|
42
|
+
}
|
|
43
|
+
function getPropRef(node, nodes, scope) {
|
|
44
|
+
const prop = node.property;
|
|
45
|
+
if (isPrivateName(prop)) {
|
|
46
|
+
throw new Error("We can't generate property ref for private name, please install `@babel/plugin-transform-class-properties`");
|
|
47
|
+
}
|
|
48
|
+
const key = toComputedKey(node, prop);
|
|
49
|
+
if (isLiteral(key) && isPureish(key)) return key;
|
|
50
|
+
const temp = scope.generateUidIdentifierBasedOnNode(prop);
|
|
51
|
+
scope.push({
|
|
52
|
+
id: temp
|
|
53
|
+
});
|
|
54
|
+
nodes.push(assignmentExpression("=", cloneNode(temp), cloneNode(prop)));
|
|
55
|
+
return temp;
|
|
56
|
+
}
|
|
57
|
+
function explode(node, nodes, scope) {
|
|
58
|
+
const obj = getObjRef(node, nodes, scope);
|
|
59
|
+
let ref, uid;
|
|
60
|
+
if (isIdentifier(node)) {
|
|
61
|
+
ref = cloneNode(node);
|
|
62
|
+
uid = obj;
|
|
63
|
+
} else {
|
|
64
|
+
const prop = getPropRef(node, nodes, scope);
|
|
65
|
+
const computed = node.computed || isLiteral(prop);
|
|
66
|
+
uid = memberExpression(cloneNode(obj), cloneNode(prop), computed);
|
|
67
|
+
ref = memberExpression(cloneNode(obj), cloneNode(prop), computed);
|
|
68
|
+
}
|
|
69
|
+
return {
|
|
70
|
+
uid: uid,
|
|
71
|
+
ref: ref
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
//# sourceMappingURL=explode-assignable-expression.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_t","require","assignmentExpression","cloneNode","isIdentifier","isLiteral","isMemberExpression","isPrivateName","isPureish","isSuper","memberExpression","toComputedKey","getObjRef","node","nodes","scope","ref","hasBinding","name","object","Error","temp","generateUidIdentifierBasedOnNode","push","id","getPropRef","prop","property","key","explode","obj","uid","computed"],"sources":["../src/explode-assignable-expression.ts"],"sourcesContent":["import type { Scope } from \"@babel/traverse\";\nimport {\n assignmentExpression,\n cloneNode,\n isIdentifier,\n isLiteral,\n isMemberExpression,\n isPrivateName,\n isPureish,\n isSuper,\n memberExpression,\n toComputedKey,\n} from \"@babel/types\";\nimport type * as t from \"@babel/types\";\n\nfunction getObjRef(\n node: t.Identifier | t.MemberExpression,\n nodes: Array<t.AssignmentExpression>,\n scope: Scope,\n): t.Identifier | t.Super {\n let ref;\n if (isIdentifier(node)) {\n if (scope.hasBinding(node.name)) {\n // this variable is declared in scope so we can be 100% sure\n // that evaluating it multiple times won't trigger a getter\n // or something else\n return node;\n } else {\n // could possibly trigger a getter so we need to only evaluate\n // it once\n ref = node;\n }\n } else if (isMemberExpression(node)) {\n ref = node.object;\n\n if (isSuper(ref) || (isIdentifier(ref) && scope.hasBinding(ref.name))) {\n // the object reference that we need to save is locally declared\n // so as per the previous comment we can be 100% sure evaluating\n // it multiple times will be safe\n // Super cannot be directly assigned so lets return it also\n return ref;\n }\n } else {\n throw new Error(`We can't explode this node type ${node[\"type\"]}`);\n }\n\n const temp = scope.generateUidIdentifierBasedOnNode(ref);\n scope.push({ id: temp });\n nodes.push(assignmentExpression(\"=\", cloneNode(temp), cloneNode(ref)));\n return temp;\n}\n\nfunction getPropRef(\n node: t.MemberExpression,\n nodes: Array<t.AssignmentExpression>,\n scope: Scope,\n): t.Identifier | t.Literal {\n const prop = node.property;\n if (isPrivateName(prop)) {\n throw new Error(\n \"We can't generate property ref for private name, please install `@babel/plugin-transform-class-properties`\",\n );\n }\n const key = toComputedKey(node, prop);\n if (isLiteral(key) && isPureish(key)) return key;\n\n const temp = scope.generateUidIdentifierBasedOnNode(prop);\n scope.push({ id: temp });\n nodes.push(assignmentExpression(\"=\", cloneNode(temp), cloneNode(prop)));\n return temp;\n}\n\nexport default function explode(\n node: t.Identifier | t.MemberExpression,\n nodes: Array<t.AssignmentExpression>,\n scope: Scope,\n): {\n uid: t.Identifier | t.MemberExpression | t.Super;\n ref: t.Identifier | t.MemberExpression;\n} {\n const obj = getObjRef(node, nodes, scope);\n\n let ref, uid;\n\n if (isIdentifier(node)) {\n ref = cloneNode(node);\n uid = obj;\n } else {\n const prop = getPropRef(node, nodes, scope);\n const computed = node.computed || isLiteral(prop);\n uid = memberExpression(cloneNode(obj), cloneNode(prop), computed);\n ref = memberExpression(cloneNode(obj), cloneNode(prop), computed);\n }\n\n return {\n uid: uid,\n ref: ref,\n };\n}\n"],"mappings":"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"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = _default;
|
|
7
|
+
var _t = require("@babel/types");
|
|
8
|
+
var _explodeAssignableExpression = require("./explode-assignable-expression.js");
|
|
9
|
+
const {
|
|
10
|
+
assignmentExpression,
|
|
11
|
+
sequenceExpression
|
|
12
|
+
} = _t;
|
|
13
|
+
function _default(opts) {
|
|
14
|
+
const {
|
|
15
|
+
build,
|
|
16
|
+
operator
|
|
17
|
+
} = opts;
|
|
18
|
+
const visitor = {
|
|
19
|
+
AssignmentExpression(path) {
|
|
20
|
+
const {
|
|
21
|
+
node,
|
|
22
|
+
scope
|
|
23
|
+
} = path;
|
|
24
|
+
if (node.operator !== operator + "=") return;
|
|
25
|
+
const nodes = [];
|
|
26
|
+
const exploded = (0, _explodeAssignableExpression.default)(node.left, nodes, scope);
|
|
27
|
+
nodes.push(assignmentExpression("=", exploded.ref, build(exploded.uid, node.right)));
|
|
28
|
+
path.replaceWith(sequenceExpression(nodes));
|
|
29
|
+
},
|
|
30
|
+
BinaryExpression(path) {
|
|
31
|
+
const {
|
|
32
|
+
node
|
|
33
|
+
} = path;
|
|
34
|
+
if (node.operator === operator) {
|
|
35
|
+
path.replaceWith(build(node.left, node.right));
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
return visitor;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
//# sourceMappingURL=index.js.map
|
package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_t","require","_explodeAssignableExpression","assignmentExpression","sequenceExpression","_default","opts","build","operator","visitor","AssignmentExpression","path","node","scope","nodes","exploded","explode","left","push","ref","uid","right","replaceWith","BinaryExpression"],"sources":["../src/index.ts"],"sourcesContent":["import { assignmentExpression, sequenceExpression } from \"@babel/types\";\nimport type { Visitor } from \"@babel/traverse\";\nimport type * as t from \"@babel/types\";\n\nimport explode from \"./explode-assignable-expression.ts\";\n\nexport default function (opts: {\n build: (\n left: t.Expression | t.PrivateName | t.Super,\n right: t.Expression,\n ) => t.Expression;\n operator: t.BinaryExpression[\"operator\"];\n}) {\n const { build, operator } = opts;\n\n const visitor: Visitor = {\n AssignmentExpression(path) {\n const { node, scope } = path;\n if (node.operator !== operator + \"=\") return;\n\n const nodes: t.AssignmentExpression[] = [];\n // @ts-expect-error Fixme: node.left can be a TSAsExpression\n const exploded = explode(node.left, nodes, scope);\n nodes.push(\n assignmentExpression(\n \"=\",\n exploded.ref,\n build(exploded.uid, node.right),\n ),\n );\n path.replaceWith(sequenceExpression(nodes));\n },\n\n BinaryExpression(path) {\n const { node } = path;\n if (node.operator === operator) {\n path.replaceWith(build(node.left, node.right));\n }\n },\n };\n return visitor;\n}\n"],"mappings":";;;;;;AAAA,IAAAA,EAAA,GAAAC,OAAA;AAIA,IAAAC,4BAAA,GAAAD,OAAA;AAAyD;EAJhDE,oBAAoB;EAAEC;AAAkB,IAAAJ,EAAA;AAMlC,SAAAK,SAAUC,IAMxB,EAAE;EACD,MAAM;IAAEC,KAAK;IAAEC;EAAS,CAAC,GAAGF,IAAI;EAEhC,MAAMG,OAAgB,GAAG;IACvBC,oBAAoBA,CAACC,IAAI,EAAE;MACzB,MAAM;QAAEC,IAAI;QAAEC;MAAM,CAAC,GAAGF,IAAI;MAC5B,IAAIC,IAAI,CAACJ,QAAQ,KAAKA,QAAQ,GAAG,GAAG,EAAE;MAEtC,MAAMM,KAA+B,GAAG,EAAE;MAE1C,MAAMC,QAAQ,GAAG,IAAAC,oCAAO,EAACJ,IAAI,CAACK,IAAI,EAAEH,KAAK,EAAED,KAAK,CAAC;MACjDC,KAAK,CAACI,IAAI,CACRf,oBAAoB,CAClB,GAAG,EACHY,QAAQ,CAACI,GAAG,EACZZ,KAAK,CAACQ,QAAQ,CAACK,GAAG,EAAER,IAAI,CAACS,KAAK,CAChC,CACF,CAAC;MACDV,IAAI,CAACW,WAAW,CAAClB,kBAAkB,CAACU,KAAK,CAAC,CAAC;IAC7C,CAAC;IAEDS,gBAAgBA,CAACZ,IAAI,EAAE;MACrB,MAAM;QAAEC;MAAK,CAAC,GAAGD,IAAI;MACrB,IAAIC,IAAI,CAACJ,QAAQ,KAAKA,QAAQ,EAAE;QAC9BG,IAAI,CAACW,WAAW,CAACf,KAAK,CAACK,IAAI,CAACK,IAAI,EAAEL,IAAI,CAACS,KAAK,CAAC,CAAC;MAChD;IACF;EACF,CAAC;EACD,OAAOZ,OAAO;AAChB"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@babel/helper-builder-binary-assignment-operator-visitor",
|
|
3
|
+
"version": "7.22.15",
|
|
4
|
+
"description": "Helper function to build binary assignment operator visitors",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/babel/babel.git",
|
|
8
|
+
"directory": "packages/babel-helper-builder-binary-assignment-operator-visitor"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://babel.dev/docs/en/next/babel-helper-builder-binary-assignment-operator-visitor",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"main": "./lib/index.js",
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@babel/types": "^7.22.15"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@babel/traverse": "^7.22.15"
|
|
21
|
+
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=6.9.0"
|
|
24
|
+
},
|
|
25
|
+
"author": "The Babel Team (https://babel.dev/team)",
|
|
26
|
+
"type": "commonjs"
|
|
27
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|