nitro-nightly 4.0.0-20251030-091344-d4418b98 → 4.0.0-20251030-122334-09c1a7a8
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/_build/common.mjs +763 -0
- package/dist/_build/rolldown.mjs +216 -0
- package/dist/_build/rollup.mjs +359 -0
- package/dist/_build/vite.build.mjs +67 -0
- package/dist/_build/vite.plugin.mjs +762 -0
- package/dist/_chunks/B-7HiF0V.mjs +1303 -0
- package/dist/_chunks/B3asVbT4.mjs +151 -0
- package/dist/_chunks/B5ooyfLk.mjs +372 -0
- package/dist/_chunks/DXMHy5ca.mjs +43 -0
- package/dist/_dev.d.mts +12 -0
- package/dist/_dev.mjs +675 -0
- package/dist/_libs/acorn.mjs +5034 -0
- package/dist/_libs/c12.mjs +2798 -0
- package/dist/_libs/chokidar.mjs +1560 -0
- package/dist/_libs/citty.mjs +333 -0
- package/dist/_libs/commondir.mjs +22 -0
- package/dist/_libs/compatx.mjs +46 -0
- package/dist/_libs/confbox.mjs +2920 -0
- package/dist/_libs/debug.mjs +848 -0
- package/dist/_libs/deepmerge.mjs +86 -0
- package/dist/_libs/depd.mjs +314 -0
- package/dist/_libs/dot-prop.mjs +138 -0
- package/dist/_libs/duplexer.mjs +71 -0
- package/dist/_libs/ee-first.mjs +68 -0
- package/dist/_libs/encodeurl.mjs +49 -0
- package/dist/_libs/escape-html.mjs +58 -0
- package/dist/_libs/escape-string-regexp.mjs +8 -0
- package/dist/_libs/estree-walker.mjs +330 -0
- package/dist/_libs/etag.mjs +75 -0
- package/dist/{_chunks/_deps → _libs}/fdir.mjs +49 -104
- package/dist/_libs/fresh.mjs +85 -0
- package/dist/_libs/function-bind.mjs +63 -0
- package/dist/_libs/gen-mapping.mjs +612 -0
- package/dist/_libs/giget.mjs +19076 -0
- package/dist/_libs/gzip-size.mjs +21 -0
- package/dist/_libs/hasown.mjs +14 -0
- package/dist/_libs/http-errors.mjs +436 -0
- package/dist/_libs/httpxy.mjs +410 -0
- package/dist/_libs/is-core-module.mjs +220 -0
- package/dist/_libs/is-module.mjs +13 -0
- package/dist/_libs/is-reference.mjs +32 -0
- package/dist/{_chunks/_deps → _libs}/js-tokens.mjs +83 -112
- package/dist/_libs/klona.mjs +90 -0
- package/dist/_libs/knitwork.mjs +124 -0
- package/dist/_libs/local-pkg.mjs +1686 -0
- package/dist/{_chunks/_deps → _libs}/magic-string.mjs +272 -629
- package/dist/_libs/mime-db.mjs +7642 -0
- package/dist/_libs/mime-types.mjs +162 -0
- package/dist/_libs/mime.mjs +1391 -0
- package/dist/_libs/node-fetch-native.mjs +173 -0
- package/dist/_libs/on-finished.mjs +170 -0
- package/dist/_libs/parseurl.mjs +103 -0
- package/dist/_libs/path-parse.mjs +47 -0
- package/dist/_libs/pathe.mjs +41 -0
- package/dist/_libs/picomatch.mjs +1673 -0
- package/dist/_libs/plugin-alias.mjs +64 -0
- package/dist/_libs/plugin-commonjs.mjs +1489 -0
- package/dist/_libs/plugin-inject.mjs +135 -0
- package/dist/_libs/plugin-json.mjs +36 -0
- package/dist/_libs/plugin-node-resolve.mjs +1553 -0
- package/dist/_libs/plugin-replace.mjs +104 -0
- package/dist/_libs/pretty-bytes.mjs +116 -0
- package/dist/_libs/range-parser.mjs +102 -0
- package/dist/_libs/remapping.mjs +117 -0
- package/dist/{_chunks/_deps → _libs}/rou3.mjs +7 -22
- package/dist/_libs/send.mjs +857 -0
- package/dist/_libs/serve-static.mjs +124 -0
- package/dist/_libs/std-env.mjs +158 -0
- package/dist/_libs/strip-literal.mjs +51 -0
- package/dist/{_chunks/_deps → _libs}/tinyglobby.mjs +32 -33
- package/dist/_libs/ultrahtml.mjs +138 -0
- package/dist/_libs/unimport.mjs +3520 -0
- package/dist/_libs/untyped.mjs +271 -0
- package/dist/_libs/unwasm.mjs +5825 -0
- package/dist/{_chunks/_deps/@pi0 → _libs}/vite-plugin-fullstack.mjs +28 -42
- package/dist/_presets.mjs +1723 -0
- package/dist/builder.d.mts +37 -35
- package/dist/builder.mjs +45 -117
- package/dist/cli/_chunks/build.mjs +43 -0
- package/dist/cli/_chunks/common.mjs +15 -0
- package/dist/cli/_chunks/detect-acorn.mjs +12 -0
- package/dist/cli/_chunks/dev.mjs +79 -0
- package/dist/cli/_chunks/dist.mjs +3 -0
- package/dist/cli/_chunks/dist2.mjs +4 -0
- package/dist/cli/_chunks/esm.mjs +3 -0
- package/dist/cli/_chunks/json5.mjs +4 -0
- package/dist/cli/_chunks/jsonc.mjs +4 -0
- package/dist/cli/_chunks/list.mjs +27 -0
- package/dist/cli/_chunks/multipart-parser.mjs +6 -0
- package/dist/cli/_chunks/prepare.mjs +19 -0
- package/dist/cli/_chunks/run.mjs +55 -0
- package/dist/cli/_chunks/task.mjs +16 -0
- package/dist/cli/_chunks/toml.mjs +4 -0
- package/dist/cli/_chunks/yaml.mjs +4 -0
- package/dist/cli/index.d.mts +1 -1
- package/dist/cli/index.mjs +19 -18
- package/dist/presets/_nitro/runtime/nitro-dev.d.mts +1 -0
- package/dist/presets/_nitro/runtime/nitro-dev.mjs +42 -33
- package/dist/presets/_nitro/runtime/nitro-prerenderer.d.mts +2 -2
- package/dist/presets/_nitro/runtime/nitro-prerenderer.mjs +4 -8
- package/dist/presets/_nitro/runtime/service-worker.d.mts +1 -0
- package/dist/presets/_nitro/runtime/service-worker.mjs +14 -11
- package/dist/presets/aws-amplify/runtime/aws-amplify.d.mts +1 -0
- package/dist/presets/aws-amplify/runtime/aws-amplify.mjs +6 -5
- package/dist/presets/aws-lambda/runtime/_utils.d.mts +8 -13
- package/dist/presets/aws-lambda/runtime/_utils.mjs +95 -81
- package/dist/presets/aws-lambda/runtime/aws-lambda-streaming.d.mts +1 -2
- package/dist/presets/aws-lambda/runtime/aws-lambda-streaming.mjs +25 -27
- package/dist/presets/aws-lambda/runtime/aws-lambda.mjs +7 -7
- package/dist/presets/azure/runtime/_utils.mjs +43 -43
- package/dist/presets/azure/runtime/azure-swa.d.mts +2 -2
- package/dist/presets/azure/runtime/azure-swa.mjs +22 -21
- package/dist/presets/bun/runtime/bun.d.mts +1 -0
- package/dist/presets/bun/runtime/bun.mjs +18 -17
- package/dist/presets/cloudflare/runtime/_module-handler.d.mts +10 -7
- package/dist/presets/cloudflare/runtime/_module-handler.mjs +78 -87
- package/dist/presets/cloudflare/runtime/cloudflare-durable.d.mts +6 -14
- package/dist/presets/cloudflare/runtime/cloudflare-durable.mjs +53 -58
- package/dist/presets/cloudflare/runtime/cloudflare-module.d.mts +1 -7
- package/dist/presets/cloudflare/runtime/cloudflare-module.mjs +12 -14
- package/dist/presets/cloudflare/runtime/cloudflare-pages.d.mts +12 -12
- package/dist/presets/cloudflare/runtime/cloudflare-pages.mjs +35 -39
- package/dist/presets/cloudflare/runtime/plugin.dev.d.mts +2 -2
- package/dist/presets/cloudflare/runtime/plugin.dev.mjs +86 -76
- package/dist/presets/deno/runtime/deno-deploy.d.mts +1 -0
- package/dist/presets/deno/runtime/deno-deploy.mjs +12 -11
- package/dist/presets/deno/runtime/deno-server.d.mts +2 -1
- package/dist/presets/deno/runtime/deno-server.mjs +31 -39
- package/dist/presets/netlify/runtime/netlify-edge.d.mts +2 -1
- package/dist/presets/netlify/runtime/netlify-edge.mjs +14 -11
- package/dist/presets/netlify/runtime/netlify.mjs +11 -17
- package/dist/presets/node/runtime/node-cluster.mjs +49 -48
- package/dist/presets/node/runtime/node-middleware.d.mts +3 -2
- package/dist/presets/node/runtime/node-middleware.mjs +7 -6
- package/dist/presets/node/runtime/node-server.mjs +33 -23
- package/dist/presets/standard/runtime/server.d.mts +1 -3
- package/dist/presets/standard/runtime/server.mjs +1 -3
- package/dist/presets/stormkit/runtime/stormkit.d.mts +13 -13
- package/dist/presets/stormkit/runtime/stormkit.mjs +20 -20
- package/dist/presets/vercel/runtime/vercel.d.mts +3 -3
- package/dist/presets/vercel/runtime/vercel.mjs +15 -14
- package/dist/presets/winterjs/runtime/winterjs.d.mts +2 -0
- package/dist/presets/winterjs/runtime/winterjs.mjs +72 -68
- package/dist/presets/zeabur/runtime/zeabur.d.mts +1 -1
- package/dist/runtime/index.d.mts +12 -1
- package/dist/runtime/index.mjs +12 -7
- package/dist/runtime/internal/app.mjs +175 -162
- package/dist/runtime/internal/cache.d.mts +10 -4
- package/dist/runtime/internal/cache.mjs +247 -216
- package/dist/runtime/internal/context.d.mts +9 -9
- package/dist/runtime/internal/context.mjs +17 -10
- package/dist/runtime/internal/database.mjs +8 -10
- package/dist/runtime/internal/error/dev.d.mts +5 -4
- package/dist/runtime/internal/error/dev.mjs +106 -105
- package/dist/runtime/internal/error/prod.d.mts +2 -2
- package/dist/runtime/internal/error/prod.mjs +48 -52
- package/dist/runtime/internal/error/utils.d.mts +4 -4
- package/dist/runtime/internal/error/utils.mjs +1 -1
- package/dist/runtime/internal/index.d.mts +2 -0
- package/dist/runtime/internal/index.mjs +2 -0
- package/dist/runtime/internal/lib/http-graceful-shutdown.d.mts +14 -14
- package/dist/runtime/internal/lib/http-graceful-shutdown.mjs +248 -209
- package/dist/runtime/internal/meta.d.mts +1 -1
- package/dist/runtime/internal/meta.mjs +1 -1
- package/dist/runtime/internal/plugin.d.mts +2 -2
- package/dist/runtime/internal/plugin.mjs +1 -1
- package/dist/runtime/internal/renderer.mjs +39 -31
- package/dist/runtime/internal/route-rules.d.mts +8 -8
- package/dist/runtime/internal/route-rules.mjs +53 -51
- package/dist/runtime/internal/routes/dev-tasks.d.mts +1 -30
- package/dist/runtime/internal/routes/dev-tasks.mjs +15 -17
- package/dist/runtime/internal/routes/openapi.d.mts +1 -0
- package/dist/runtime/internal/routes/openapi.mjs +81 -87
- package/dist/runtime/internal/routes/renderer-template.d.mts +1 -1
- package/dist/runtime/internal/routes/renderer-template.dev.d.mts +1 -2
- package/dist/runtime/internal/routes/renderer-template.dev.mjs +10 -17
- package/dist/runtime/internal/routes/renderer-template.mjs +1 -1
- package/dist/runtime/internal/routes/scalar.d.mts +1 -0
- package/dist/runtime/internal/routes/scalar.mjs +22 -23
- package/dist/runtime/internal/routes/swagger.d.mts +1 -0
- package/dist/runtime/internal/routes/swagger.mjs +9 -11
- package/dist/runtime/internal/runtime-config.d.mts +4 -4
- package/dist/runtime/internal/runtime-config.mjs +40 -35
- package/dist/runtime/internal/shutdown.d.mts +2 -7
- package/dist/runtime/internal/shutdown.mjs +30 -29
- package/dist/runtime/internal/static.mjs +63 -74
- package/dist/runtime/internal/storage.mjs +2 -2
- package/dist/runtime/internal/task.d.mts +6 -6
- package/dist/runtime/internal/task.mjs +56 -59
- package/dist/runtime/internal/utils.d.mts +1 -1
- package/dist/runtime/internal/utils.mjs +4 -10
- package/dist/types/index.d.mts +2566 -3851
- package/dist/types/index.mjs +1 -1
- package/dist/vite.d.mts +61 -51
- package/dist/vite.mjs +55 -132
- package/package.json +10 -10
- package/dist/_build/build.mjs +0 -368
- package/dist/_build/build2.mjs +0 -556
- package/dist/_build/info.mjs +0 -1002
- package/dist/_build/prepare.mjs +0 -1511
- package/dist/_build/snapshot.mjs +0 -185
- package/dist/_build/vite.mjs +0 -959
- package/dist/_build/vite2.mjs +0 -149
- package/dist/_chunks/_deps/@jridgewell/gen-mapping.mjs +0 -189
- package/dist/_chunks/_deps/@jridgewell/remapping.mjs +0 -137
- package/dist/_chunks/_deps/@jridgewell/resolve-uri.mjs +0 -231
- package/dist/_chunks/_deps/@jridgewell/sourcemap-codec.mjs +0 -173
- package/dist/_chunks/_deps/@jridgewell/trace-mapping.mjs +0 -170
- package/dist/_chunks/_deps/@rollup/plugin-alias.mjs +0 -89
- package/dist/_chunks/_deps/@rollup/plugin-commonjs.mjs +0 -2376
- package/dist/_chunks/_deps/@rollup/plugin-inject.mjs +0 -212
- package/dist/_chunks/_deps/@rollup/plugin-json.mjs +0 -37
- package/dist/_chunks/_deps/@rollup/plugin-node-resolve.mjs +0 -1386
- package/dist/_chunks/_deps/@rollup/plugin-replace.mjs +0 -133
- package/dist/_chunks/_deps/@rollup/pluginutils.mjs +0 -346
- package/dist/_chunks/_deps/acorn.mjs +0 -6225
- package/dist/_chunks/_deps/c12.mjs +0 -510
- package/dist/_chunks/_deps/chokidar.mjs +0 -1428
- package/dist/_chunks/_deps/citty.mjs +0 -460
- package/dist/_chunks/_deps/commondir.mjs +0 -77
- package/dist/_chunks/_deps/compatx.mjs +0 -76
- package/dist/_chunks/_deps/confbox.mjs +0 -300
- package/dist/_chunks/_deps/debug.mjs +0 -885
- package/dist/_chunks/_deps/deepmerge.mjs +0 -147
- package/dist/_chunks/_deps/depd.mjs +0 -550
- package/dist/_chunks/_deps/dot-prop.mjs +0 -282
- package/dist/_chunks/_deps/dotenv.mjs +0 -555
- package/dist/_chunks/_deps/duplexer.mjs +0 -1
- package/dist/_chunks/_deps/ee-first.mjs +0 -104
- package/dist/_chunks/_deps/encodeurl.mjs +0 -69
- package/dist/_chunks/_deps/escape-html.mjs +0 -87
- package/dist/_chunks/_deps/escape-string-regexp.mjs +0 -13
- package/dist/_chunks/_deps/estree-walker.mjs +0 -433
- package/dist/_chunks/_deps/etag.mjs +0 -147
- package/dist/_chunks/_deps/exsolve.mjs +0 -1416
- package/dist/_chunks/_deps/fresh.mjs +0 -145
- package/dist/_chunks/_deps/function-bind.mjs +0 -106
- package/dist/_chunks/_deps/giget.mjs +0 -451
- package/dist/_chunks/_deps/gzip-size.mjs +0 -19
- package/dist/_chunks/_deps/hasown.mjs +0 -19
- package/dist/_chunks/_deps/http-errors.mjs +0 -307
- package/dist/_chunks/_deps/httpxy.mjs +0 -580
- package/dist/_chunks/_deps/inherits.mjs +0 -57
- package/dist/_chunks/_deps/is-core-module.mjs +0 -596
- package/dist/_chunks/_deps/is-module.mjs +0 -25
- package/dist/_chunks/_deps/is-reference.mjs +0 -31
- package/dist/_chunks/_deps/klona.mjs +0 -137
- package/dist/_chunks/_deps/knitwork.mjs +0 -172
- package/dist/_chunks/_deps/local-pkg.mjs +0 -163
- package/dist/_chunks/_deps/mime-db.mjs +0 -11685
- package/dist/_chunks/_deps/mime-types.mjs +0 -287
- package/dist/_chunks/_deps/mime.mjs +0 -1172
- package/dist/_chunks/_deps/mlly.mjs +0 -2413
- package/dist/_chunks/_deps/ms.mjs +0 -172
- package/dist/_chunks/_deps/node-fetch-native.mjs +0 -3
- package/dist/_chunks/_deps/nypm.mjs +0 -219
- package/dist/_chunks/_deps/on-finished.mjs +0 -246
- package/dist/_chunks/_deps/parseurl.mjs +0 -168
- package/dist/_chunks/_deps/path-parse.mjs +0 -85
- package/dist/_chunks/_deps/pathe.mjs +0 -251
- package/dist/_chunks/_deps/perfect-debounce.mjs +0 -88
- package/dist/_chunks/_deps/picomatch.mjs +0 -2144
- package/dist/_chunks/_deps/pkg-types.mjs +0 -247
- package/dist/_chunks/_deps/pretty-bytes.mjs +0 -180
- package/dist/_chunks/_deps/quansync.mjs +0 -99
- package/dist/_chunks/_deps/range-parser.mjs +0 -171
- package/dist/_chunks/_deps/rc9.mjs +0 -219
- package/dist/_chunks/_deps/readdirp.mjs +0 -245
- package/dist/_chunks/_deps/resolve.mjs +0 -1260
- package/dist/_chunks/_deps/send.mjs +0 -1022
- package/dist/_chunks/_deps/serve-static.mjs +0 -228
- package/dist/_chunks/_deps/setprototypeof.mjs +0 -26
- package/dist/_chunks/_deps/statuses.mjs +0 -457
- package/dist/_chunks/_deps/std-env.mjs +0 -3
- package/dist/_chunks/_deps/strip-literal.mjs +0 -67
- package/dist/_chunks/_deps/supports-color.mjs +0 -44
- package/dist/_chunks/_deps/tinyexec.mjs +0 -552
- package/dist/_chunks/_deps/toidentifier.mjs +0 -41
- package/dist/_chunks/_deps/ultrahtml.mjs +0 -3
- package/dist/_chunks/_deps/unimport.mjs +0 -2267
- package/dist/_chunks/_deps/unplugin-utils.mjs +0 -65
- package/dist/_chunks/_deps/unplugin.mjs +0 -1294
- package/dist/_chunks/_deps/untyped.mjs +0 -375
- package/dist/_chunks/_deps/unwasm.mjs +0 -6959
- package/dist/_chunks/_deps/webpack-virtual-modules.mjs +0 -360
- package/dist/_chunks/_presets/_all.mjs +0 -59
- package/dist/_chunks/_presets/_nitro.mjs +0 -74
- package/dist/_chunks/_presets/_resolve.mjs +0 -64
- package/dist/_chunks/_presets/_static.mjs +0 -69
- package/dist/_chunks/_presets/_types.mjs +0 -3
- package/dist/_chunks/_presets/_utils.mjs +0 -31
- package/dist/_chunks/_presets/alwaysdata.mjs +0 -17
- package/dist/_chunks/_presets/aws-amplify.mjs +0 -111
- package/dist/_chunks/_presets/aws-lambda.mjs +0 -23
- package/dist/_chunks/_presets/azure.mjs +0 -162
- package/dist/_chunks/_presets/bun.mjs +0 -19
- package/dist/_chunks/_presets/cleavr.mjs +0 -15
- package/dist/_chunks/_presets/cloudflare.mjs +0 -608
- package/dist/_chunks/_presets/deno.mjs +0 -196
- package/dist/_chunks/_presets/digitalocean.mjs +0 -14
- package/dist/_chunks/_presets/firebase.mjs +0 -47
- package/dist/_chunks/_presets/flightcontrol.mjs +0 -14
- package/dist/_chunks/_presets/genezio.mjs +0 -13
- package/dist/_chunks/_presets/heroku.mjs +0 -14
- package/dist/_chunks/_presets/iis.mjs +0 -194
- package/dist/_chunks/_presets/index.mjs +0 -62
- package/dist/_chunks/_presets/koyeb.mjs +0 -14
- package/dist/_chunks/_presets/netlify.mjs +0 -241
- package/dist/_chunks/_presets/node.mjs +0 -54
- package/dist/_chunks/_presets/platform.mjs +0 -14
- package/dist/_chunks/_presets/render.mjs +0 -14
- package/dist/_chunks/_presets/standard.mjs +0 -23
- package/dist/_chunks/_presets/stormkit.mjs +0 -18
- package/dist/_chunks/_presets/vercel.mjs +0 -375
- package/dist/_chunks/_presets/winterjs.mjs +0 -22
- package/dist/_chunks/_presets/zeabur.mjs +0 -69
- package/dist/_chunks/_presets/zerops.mjs +0 -27
- package/dist/_chunks/app.mjs +0 -600
- package/dist/_chunks/builder.mjs +0 -648
- package/dist/_chunks/server.mjs +0 -256
- package/dist/_cli/build.mjs +0 -49
- package/dist/_cli/common.mjs +0 -13
- package/dist/_cli/dev.mjs +0 -121
- package/dist/_cli/index.mjs +0 -16
- package/dist/_cli/list.mjs +0 -33
- package/dist/_cli/prepare.mjs +0 -23
- package/dist/_cli/run.mjs +0 -59
- package/dist/presets/cloudflare/runtime/shims/workers.dev.d.mts +0 -21
- package/dist/runtime/internal/empty.d.mts +0 -0
- package/dist/runtime/internal/vite/dev-entry.d.mts +0 -1
- package/dist/runtime/internal/vite/dev-worker.d.mts +0 -1
- package/dist/runtime/internal/vite/prod-setup.d.mts +0 -4
- package/dist/runtime/internal/vite/ssr-renderer.d.mts +0 -4
- /package/lib/{indexd.mts → index.d.mts} +0 -0
|
@@ -1,596 +0,0 @@
|
|
|
1
|
-
import { r as requireHasown } from './hasown.mjs';
|
|
2
|
-
import { b as getAugmentedNamespace } from './commondir.mjs';
|
|
3
|
-
|
|
4
|
-
const assert = true;
|
|
5
|
-
const async_hooks = ">= 8";
|
|
6
|
-
const buffer_ieee754 = ">= 0.5 && < 0.9.7";
|
|
7
|
-
const buffer = true;
|
|
8
|
-
const child_process = true;
|
|
9
|
-
const cluster = ">= 0.5";
|
|
10
|
-
const console = true;
|
|
11
|
-
const constants = true;
|
|
12
|
-
const crypto = true;
|
|
13
|
-
const _debug_agent = ">= 1 && < 8";
|
|
14
|
-
const _debugger = "< 8";
|
|
15
|
-
const dgram = true;
|
|
16
|
-
const diagnostics_channel = [
|
|
17
|
-
">= 14.17 && < 15",
|
|
18
|
-
">= 15.1"
|
|
19
|
-
];
|
|
20
|
-
const dns = true;
|
|
21
|
-
const domain = ">= 0.7.12";
|
|
22
|
-
const events = true;
|
|
23
|
-
const freelist = "< 6";
|
|
24
|
-
const fs = true;
|
|
25
|
-
const _http_agent = ">= 0.11.1";
|
|
26
|
-
const _http_client = ">= 0.11.1";
|
|
27
|
-
const _http_common = ">= 0.11.1";
|
|
28
|
-
const _http_incoming = ">= 0.11.1";
|
|
29
|
-
const _http_outgoing = ">= 0.11.1";
|
|
30
|
-
const _http_server = ">= 0.11.1";
|
|
31
|
-
const http = true;
|
|
32
|
-
const http2 = ">= 8.8";
|
|
33
|
-
const https = true;
|
|
34
|
-
const inspector = ">= 8";
|
|
35
|
-
const _linklist = "< 8";
|
|
36
|
-
const module = true;
|
|
37
|
-
const net = true;
|
|
38
|
-
const os = true;
|
|
39
|
-
const path = true;
|
|
40
|
-
const perf_hooks = ">= 8.5";
|
|
41
|
-
const process$1 = ">= 1";
|
|
42
|
-
const punycode = ">= 0.5";
|
|
43
|
-
const querystring = true;
|
|
44
|
-
const readline = true;
|
|
45
|
-
const repl = true;
|
|
46
|
-
const smalloc = ">= 0.11.5 && < 3";
|
|
47
|
-
const _stream_duplex = ">= 0.9.4";
|
|
48
|
-
const _stream_transform = ">= 0.9.4";
|
|
49
|
-
const _stream_wrap = ">= 1.4.1";
|
|
50
|
-
const _stream_passthrough = ">= 0.9.4";
|
|
51
|
-
const _stream_readable = ">= 0.9.4";
|
|
52
|
-
const _stream_writable = ">= 0.9.4";
|
|
53
|
-
const stream = true;
|
|
54
|
-
const string_decoder = true;
|
|
55
|
-
const sys = [
|
|
56
|
-
">= 0.4 && < 0.7",
|
|
57
|
-
">= 0.8"
|
|
58
|
-
];
|
|
59
|
-
const timers = true;
|
|
60
|
-
const _tls_common = ">= 0.11.13";
|
|
61
|
-
const _tls_legacy = ">= 0.11.3 && < 10";
|
|
62
|
-
const _tls_wrap = ">= 0.11.3";
|
|
63
|
-
const tls = true;
|
|
64
|
-
const trace_events = ">= 10";
|
|
65
|
-
const tty = true;
|
|
66
|
-
const url = true;
|
|
67
|
-
const util = true;
|
|
68
|
-
const v8 = ">= 1";
|
|
69
|
-
const vm = true;
|
|
70
|
-
const wasi = [
|
|
71
|
-
">= 13.4 && < 13.5",
|
|
72
|
-
">= 18.17 && < 19",
|
|
73
|
-
">= 20"
|
|
74
|
-
];
|
|
75
|
-
const worker_threads = ">= 11.7";
|
|
76
|
-
const zlib = ">= 0.5";
|
|
77
|
-
const core = {
|
|
78
|
-
assert: assert,
|
|
79
|
-
"node:assert": [
|
|
80
|
-
">= 14.18 && < 15",
|
|
81
|
-
">= 16"
|
|
82
|
-
],
|
|
83
|
-
"assert/strict": ">= 15",
|
|
84
|
-
"node:assert/strict": ">= 16",
|
|
85
|
-
async_hooks: async_hooks,
|
|
86
|
-
"node:async_hooks": [
|
|
87
|
-
">= 14.18 && < 15",
|
|
88
|
-
">= 16"
|
|
89
|
-
],
|
|
90
|
-
buffer_ieee754: buffer_ieee754,
|
|
91
|
-
buffer: buffer,
|
|
92
|
-
"node:buffer": [
|
|
93
|
-
">= 14.18 && < 15",
|
|
94
|
-
">= 16"
|
|
95
|
-
],
|
|
96
|
-
child_process: child_process,
|
|
97
|
-
"node:child_process": [
|
|
98
|
-
">= 14.18 && < 15",
|
|
99
|
-
">= 16"
|
|
100
|
-
],
|
|
101
|
-
cluster: cluster,
|
|
102
|
-
"node:cluster": [
|
|
103
|
-
">= 14.18 && < 15",
|
|
104
|
-
">= 16"
|
|
105
|
-
],
|
|
106
|
-
console: console,
|
|
107
|
-
"node:console": [
|
|
108
|
-
">= 14.18 && < 15",
|
|
109
|
-
">= 16"
|
|
110
|
-
],
|
|
111
|
-
constants: constants,
|
|
112
|
-
"node:constants": [
|
|
113
|
-
">= 14.18 && < 15",
|
|
114
|
-
">= 16"
|
|
115
|
-
],
|
|
116
|
-
crypto: crypto,
|
|
117
|
-
"node:crypto": [
|
|
118
|
-
">= 14.18 && < 15",
|
|
119
|
-
">= 16"
|
|
120
|
-
],
|
|
121
|
-
_debug_agent: _debug_agent,
|
|
122
|
-
_debugger: _debugger,
|
|
123
|
-
dgram: dgram,
|
|
124
|
-
"node:dgram": [
|
|
125
|
-
">= 14.18 && < 15",
|
|
126
|
-
">= 16"
|
|
127
|
-
],
|
|
128
|
-
diagnostics_channel: diagnostics_channel,
|
|
129
|
-
"node:diagnostics_channel": [
|
|
130
|
-
">= 14.18 && < 15",
|
|
131
|
-
">= 16"
|
|
132
|
-
],
|
|
133
|
-
dns: dns,
|
|
134
|
-
"node:dns": [
|
|
135
|
-
">= 14.18 && < 15",
|
|
136
|
-
">= 16"
|
|
137
|
-
],
|
|
138
|
-
"dns/promises": ">= 15",
|
|
139
|
-
"node:dns/promises": ">= 16",
|
|
140
|
-
domain: domain,
|
|
141
|
-
"node:domain": [
|
|
142
|
-
">= 14.18 && < 15",
|
|
143
|
-
">= 16"
|
|
144
|
-
],
|
|
145
|
-
events: events,
|
|
146
|
-
"node:events": [
|
|
147
|
-
">= 14.18 && < 15",
|
|
148
|
-
">= 16"
|
|
149
|
-
],
|
|
150
|
-
freelist: freelist,
|
|
151
|
-
fs: fs,
|
|
152
|
-
"node:fs": [
|
|
153
|
-
">= 14.18 && < 15",
|
|
154
|
-
">= 16"
|
|
155
|
-
],
|
|
156
|
-
"fs/promises": [
|
|
157
|
-
">= 10 && < 10.1",
|
|
158
|
-
">= 14"
|
|
159
|
-
],
|
|
160
|
-
"node:fs/promises": [
|
|
161
|
-
">= 14.18 && < 15",
|
|
162
|
-
">= 16"
|
|
163
|
-
],
|
|
164
|
-
_http_agent: _http_agent,
|
|
165
|
-
"node:_http_agent": [
|
|
166
|
-
">= 14.18 && < 15",
|
|
167
|
-
">= 16"
|
|
168
|
-
],
|
|
169
|
-
_http_client: _http_client,
|
|
170
|
-
"node:_http_client": [
|
|
171
|
-
">= 14.18 && < 15",
|
|
172
|
-
">= 16"
|
|
173
|
-
],
|
|
174
|
-
_http_common: _http_common,
|
|
175
|
-
"node:_http_common": [
|
|
176
|
-
">= 14.18 && < 15",
|
|
177
|
-
">= 16"
|
|
178
|
-
],
|
|
179
|
-
_http_incoming: _http_incoming,
|
|
180
|
-
"node:_http_incoming": [
|
|
181
|
-
">= 14.18 && < 15",
|
|
182
|
-
">= 16"
|
|
183
|
-
],
|
|
184
|
-
_http_outgoing: _http_outgoing,
|
|
185
|
-
"node:_http_outgoing": [
|
|
186
|
-
">= 14.18 && < 15",
|
|
187
|
-
">= 16"
|
|
188
|
-
],
|
|
189
|
-
_http_server: _http_server,
|
|
190
|
-
"node:_http_server": [
|
|
191
|
-
">= 14.18 && < 15",
|
|
192
|
-
">= 16"
|
|
193
|
-
],
|
|
194
|
-
http: http,
|
|
195
|
-
"node:http": [
|
|
196
|
-
">= 14.18 && < 15",
|
|
197
|
-
">= 16"
|
|
198
|
-
],
|
|
199
|
-
http2: http2,
|
|
200
|
-
"node:http2": [
|
|
201
|
-
">= 14.18 && < 15",
|
|
202
|
-
">= 16"
|
|
203
|
-
],
|
|
204
|
-
https: https,
|
|
205
|
-
"node:https": [
|
|
206
|
-
">= 14.18 && < 15",
|
|
207
|
-
">= 16"
|
|
208
|
-
],
|
|
209
|
-
inspector: inspector,
|
|
210
|
-
"node:inspector": [
|
|
211
|
-
">= 14.18 && < 15",
|
|
212
|
-
">= 16"
|
|
213
|
-
],
|
|
214
|
-
"inspector/promises": [
|
|
215
|
-
">= 19"
|
|
216
|
-
],
|
|
217
|
-
"node:inspector/promises": [
|
|
218
|
-
">= 19"
|
|
219
|
-
],
|
|
220
|
-
_linklist: _linklist,
|
|
221
|
-
module: module,
|
|
222
|
-
"node:module": [
|
|
223
|
-
">= 14.18 && < 15",
|
|
224
|
-
">= 16"
|
|
225
|
-
],
|
|
226
|
-
net: net,
|
|
227
|
-
"node:net": [
|
|
228
|
-
">= 14.18 && < 15",
|
|
229
|
-
">= 16"
|
|
230
|
-
],
|
|
231
|
-
"node-inspect/lib/_inspect": ">= 7.6 && < 12",
|
|
232
|
-
"node-inspect/lib/internal/inspect_client": ">= 7.6 && < 12",
|
|
233
|
-
"node-inspect/lib/internal/inspect_repl": ">= 7.6 && < 12",
|
|
234
|
-
os: os,
|
|
235
|
-
"node:os": [
|
|
236
|
-
">= 14.18 && < 15",
|
|
237
|
-
">= 16"
|
|
238
|
-
],
|
|
239
|
-
path: path,
|
|
240
|
-
"node:path": [
|
|
241
|
-
">= 14.18 && < 15",
|
|
242
|
-
">= 16"
|
|
243
|
-
],
|
|
244
|
-
"path/posix": ">= 15.3",
|
|
245
|
-
"node:path/posix": ">= 16",
|
|
246
|
-
"path/win32": ">= 15.3",
|
|
247
|
-
"node:path/win32": ">= 16",
|
|
248
|
-
perf_hooks: perf_hooks,
|
|
249
|
-
"node:perf_hooks": [
|
|
250
|
-
">= 14.18 && < 15",
|
|
251
|
-
">= 16"
|
|
252
|
-
],
|
|
253
|
-
process: process$1,
|
|
254
|
-
"node:process": [
|
|
255
|
-
">= 14.18 && < 15",
|
|
256
|
-
">= 16"
|
|
257
|
-
],
|
|
258
|
-
punycode: punycode,
|
|
259
|
-
"node:punycode": [
|
|
260
|
-
">= 14.18 && < 15",
|
|
261
|
-
">= 16"
|
|
262
|
-
],
|
|
263
|
-
querystring: querystring,
|
|
264
|
-
"node:querystring": [
|
|
265
|
-
">= 14.18 && < 15",
|
|
266
|
-
">= 16"
|
|
267
|
-
],
|
|
268
|
-
readline: readline,
|
|
269
|
-
"node:readline": [
|
|
270
|
-
">= 14.18 && < 15",
|
|
271
|
-
">= 16"
|
|
272
|
-
],
|
|
273
|
-
"readline/promises": ">= 17",
|
|
274
|
-
"node:readline/promises": ">= 17",
|
|
275
|
-
repl: repl,
|
|
276
|
-
"node:repl": [
|
|
277
|
-
">= 14.18 && < 15",
|
|
278
|
-
">= 16"
|
|
279
|
-
],
|
|
280
|
-
"node:sea": [
|
|
281
|
-
">= 20.12 && < 21",
|
|
282
|
-
">= 21.7"
|
|
283
|
-
],
|
|
284
|
-
smalloc: smalloc,
|
|
285
|
-
"node:sqlite": [
|
|
286
|
-
">= 22.13 && < 23",
|
|
287
|
-
">= 23.4"
|
|
288
|
-
],
|
|
289
|
-
_stream_duplex: _stream_duplex,
|
|
290
|
-
"node:_stream_duplex": [
|
|
291
|
-
">= 14.18 && < 15",
|
|
292
|
-
">= 16"
|
|
293
|
-
],
|
|
294
|
-
_stream_transform: _stream_transform,
|
|
295
|
-
"node:_stream_transform": [
|
|
296
|
-
">= 14.18 && < 15",
|
|
297
|
-
">= 16"
|
|
298
|
-
],
|
|
299
|
-
_stream_wrap: _stream_wrap,
|
|
300
|
-
"node:_stream_wrap": [
|
|
301
|
-
">= 14.18 && < 15",
|
|
302
|
-
">= 16"
|
|
303
|
-
],
|
|
304
|
-
_stream_passthrough: _stream_passthrough,
|
|
305
|
-
"node:_stream_passthrough": [
|
|
306
|
-
">= 14.18 && < 15",
|
|
307
|
-
">= 16"
|
|
308
|
-
],
|
|
309
|
-
_stream_readable: _stream_readable,
|
|
310
|
-
"node:_stream_readable": [
|
|
311
|
-
">= 14.18 && < 15",
|
|
312
|
-
">= 16"
|
|
313
|
-
],
|
|
314
|
-
_stream_writable: _stream_writable,
|
|
315
|
-
"node:_stream_writable": [
|
|
316
|
-
">= 14.18 && < 15",
|
|
317
|
-
">= 16"
|
|
318
|
-
],
|
|
319
|
-
stream: stream,
|
|
320
|
-
"node:stream": [
|
|
321
|
-
">= 14.18 && < 15",
|
|
322
|
-
">= 16"
|
|
323
|
-
],
|
|
324
|
-
"stream/consumers": ">= 16.7",
|
|
325
|
-
"node:stream/consumers": ">= 16.7",
|
|
326
|
-
"stream/promises": ">= 15",
|
|
327
|
-
"node:stream/promises": ">= 16",
|
|
328
|
-
"stream/web": ">= 16.5",
|
|
329
|
-
"node:stream/web": ">= 16.5",
|
|
330
|
-
string_decoder: string_decoder,
|
|
331
|
-
"node:string_decoder": [
|
|
332
|
-
">= 14.18 && < 15",
|
|
333
|
-
">= 16"
|
|
334
|
-
],
|
|
335
|
-
sys: sys,
|
|
336
|
-
"node:sys": [
|
|
337
|
-
">= 14.18 && < 15",
|
|
338
|
-
">= 16"
|
|
339
|
-
],
|
|
340
|
-
"test/reporters": ">= 19.9 && < 20.2",
|
|
341
|
-
"node:test/reporters": [
|
|
342
|
-
">= 18.17 && < 19",
|
|
343
|
-
">= 19.9",
|
|
344
|
-
">= 20"
|
|
345
|
-
],
|
|
346
|
-
"test/mock_loader": ">= 22.3 && < 22.7",
|
|
347
|
-
"node:test/mock_loader": ">= 22.3 && < 22.7",
|
|
348
|
-
"node:test": [
|
|
349
|
-
">= 16.17 && < 17",
|
|
350
|
-
">= 18"
|
|
351
|
-
],
|
|
352
|
-
timers: timers,
|
|
353
|
-
"node:timers": [
|
|
354
|
-
">= 14.18 && < 15",
|
|
355
|
-
">= 16"
|
|
356
|
-
],
|
|
357
|
-
"timers/promises": ">= 15",
|
|
358
|
-
"node:timers/promises": ">= 16",
|
|
359
|
-
_tls_common: _tls_common,
|
|
360
|
-
"node:_tls_common": [
|
|
361
|
-
">= 14.18 && < 15",
|
|
362
|
-
">= 16"
|
|
363
|
-
],
|
|
364
|
-
_tls_legacy: _tls_legacy,
|
|
365
|
-
_tls_wrap: _tls_wrap,
|
|
366
|
-
"node:_tls_wrap": [
|
|
367
|
-
">= 14.18 && < 15",
|
|
368
|
-
">= 16"
|
|
369
|
-
],
|
|
370
|
-
tls: tls,
|
|
371
|
-
"node:tls": [
|
|
372
|
-
">= 14.18 && < 15",
|
|
373
|
-
">= 16"
|
|
374
|
-
],
|
|
375
|
-
trace_events: trace_events,
|
|
376
|
-
"node:trace_events": [
|
|
377
|
-
">= 14.18 && < 15",
|
|
378
|
-
">= 16"
|
|
379
|
-
],
|
|
380
|
-
tty: tty,
|
|
381
|
-
"node:tty": [
|
|
382
|
-
">= 14.18 && < 15",
|
|
383
|
-
">= 16"
|
|
384
|
-
],
|
|
385
|
-
url: url,
|
|
386
|
-
"node:url": [
|
|
387
|
-
">= 14.18 && < 15",
|
|
388
|
-
">= 16"
|
|
389
|
-
],
|
|
390
|
-
util: util,
|
|
391
|
-
"node:util": [
|
|
392
|
-
">= 14.18 && < 15",
|
|
393
|
-
">= 16"
|
|
394
|
-
],
|
|
395
|
-
"util/types": ">= 15.3",
|
|
396
|
-
"node:util/types": ">= 16",
|
|
397
|
-
"v8/tools/arguments": ">= 10 && < 12",
|
|
398
|
-
"v8/tools/codemap": [
|
|
399
|
-
">= 4.4 && < 5",
|
|
400
|
-
">= 5.2 && < 12"
|
|
401
|
-
],
|
|
402
|
-
"v8/tools/consarray": [
|
|
403
|
-
">= 4.4 && < 5",
|
|
404
|
-
">= 5.2 && < 12"
|
|
405
|
-
],
|
|
406
|
-
"v8/tools/csvparser": [
|
|
407
|
-
">= 4.4 && < 5",
|
|
408
|
-
">= 5.2 && < 12"
|
|
409
|
-
],
|
|
410
|
-
"v8/tools/logreader": [
|
|
411
|
-
">= 4.4 && < 5",
|
|
412
|
-
">= 5.2 && < 12"
|
|
413
|
-
],
|
|
414
|
-
"v8/tools/profile_view": [
|
|
415
|
-
">= 4.4 && < 5",
|
|
416
|
-
">= 5.2 && < 12"
|
|
417
|
-
],
|
|
418
|
-
"v8/tools/splaytree": [
|
|
419
|
-
">= 4.4 && < 5",
|
|
420
|
-
">= 5.2 && < 12"
|
|
421
|
-
],
|
|
422
|
-
v8: v8,
|
|
423
|
-
"node:v8": [
|
|
424
|
-
">= 14.18 && < 15",
|
|
425
|
-
">= 16"
|
|
426
|
-
],
|
|
427
|
-
vm: vm,
|
|
428
|
-
"node:vm": [
|
|
429
|
-
">= 14.18 && < 15",
|
|
430
|
-
">= 16"
|
|
431
|
-
],
|
|
432
|
-
wasi: wasi,
|
|
433
|
-
"node:wasi": [
|
|
434
|
-
">= 18.17 && < 19",
|
|
435
|
-
">= 20"
|
|
436
|
-
],
|
|
437
|
-
worker_threads: worker_threads,
|
|
438
|
-
"node:worker_threads": [
|
|
439
|
-
">= 14.18 && < 15",
|
|
440
|
-
">= 16"
|
|
441
|
-
],
|
|
442
|
-
zlib: zlib,
|
|
443
|
-
"node:zlib": [
|
|
444
|
-
">= 14.18 && < 15",
|
|
445
|
-
">= 16"
|
|
446
|
-
]
|
|
447
|
-
};
|
|
448
|
-
|
|
449
|
-
const core$1 = {
|
|
450
|
-
__proto__: null,
|
|
451
|
-
_debug_agent: _debug_agent,
|
|
452
|
-
_debugger: _debugger,
|
|
453
|
-
_http_agent: _http_agent,
|
|
454
|
-
_http_client: _http_client,
|
|
455
|
-
_http_common: _http_common,
|
|
456
|
-
_http_incoming: _http_incoming,
|
|
457
|
-
_http_outgoing: _http_outgoing,
|
|
458
|
-
_http_server: _http_server,
|
|
459
|
-
_linklist: _linklist,
|
|
460
|
-
_stream_duplex: _stream_duplex,
|
|
461
|
-
_stream_passthrough: _stream_passthrough,
|
|
462
|
-
_stream_readable: _stream_readable,
|
|
463
|
-
_stream_transform: _stream_transform,
|
|
464
|
-
_stream_wrap: _stream_wrap,
|
|
465
|
-
_stream_writable: _stream_writable,
|
|
466
|
-
_tls_common: _tls_common,
|
|
467
|
-
_tls_legacy: _tls_legacy,
|
|
468
|
-
_tls_wrap: _tls_wrap,
|
|
469
|
-
assert: assert,
|
|
470
|
-
async_hooks: async_hooks,
|
|
471
|
-
buffer: buffer,
|
|
472
|
-
buffer_ieee754: buffer_ieee754,
|
|
473
|
-
child_process: child_process,
|
|
474
|
-
cluster: cluster,
|
|
475
|
-
console: console,
|
|
476
|
-
constants: constants,
|
|
477
|
-
crypto: crypto,
|
|
478
|
-
default: core,
|
|
479
|
-
dgram: dgram,
|
|
480
|
-
diagnostics_channel: diagnostics_channel,
|
|
481
|
-
dns: dns,
|
|
482
|
-
domain: domain,
|
|
483
|
-
events: events,
|
|
484
|
-
freelist: freelist,
|
|
485
|
-
fs: fs,
|
|
486
|
-
http: http,
|
|
487
|
-
http2: http2,
|
|
488
|
-
https: https,
|
|
489
|
-
inspector: inspector,
|
|
490
|
-
module: module,
|
|
491
|
-
net: net,
|
|
492
|
-
os: os,
|
|
493
|
-
path: path,
|
|
494
|
-
perf_hooks: perf_hooks,
|
|
495
|
-
process: process$1,
|
|
496
|
-
punycode: punycode,
|
|
497
|
-
querystring: querystring,
|
|
498
|
-
readline: readline,
|
|
499
|
-
repl: repl,
|
|
500
|
-
smalloc: smalloc,
|
|
501
|
-
stream: stream,
|
|
502
|
-
string_decoder: string_decoder,
|
|
503
|
-
sys: sys,
|
|
504
|
-
timers: timers,
|
|
505
|
-
tls: tls,
|
|
506
|
-
trace_events: trace_events,
|
|
507
|
-
tty: tty,
|
|
508
|
-
url: url,
|
|
509
|
-
util: util,
|
|
510
|
-
v8: v8,
|
|
511
|
-
vm: vm,
|
|
512
|
-
wasi: wasi,
|
|
513
|
-
worker_threads: worker_threads,
|
|
514
|
-
zlib: zlib
|
|
515
|
-
};
|
|
516
|
-
|
|
517
|
-
const require$$1 = /*@__PURE__*/getAugmentedNamespace(core$1);
|
|
518
|
-
|
|
519
|
-
var isCoreModule;
|
|
520
|
-
var hasRequiredIsCoreModule;
|
|
521
|
-
|
|
522
|
-
function requireIsCoreModule () {
|
|
523
|
-
if (hasRequiredIsCoreModule) return isCoreModule;
|
|
524
|
-
hasRequiredIsCoreModule = 1;
|
|
525
|
-
|
|
526
|
-
var hasOwn = /*@__PURE__*/ requireHasown();
|
|
527
|
-
|
|
528
|
-
function specifierIncluded(current, specifier) {
|
|
529
|
-
var nodeParts = current.split('.');
|
|
530
|
-
var parts = specifier.split(' ');
|
|
531
|
-
var op = parts.length > 1 ? parts[0] : '=';
|
|
532
|
-
var versionParts = (parts.length > 1 ? parts[1] : parts[0]).split('.');
|
|
533
|
-
|
|
534
|
-
for (var i = 0; i < 3; ++i) {
|
|
535
|
-
var cur = parseInt(nodeParts[i] || 0, 10);
|
|
536
|
-
var ver = parseInt(versionParts[i] || 0, 10);
|
|
537
|
-
if (cur === ver) {
|
|
538
|
-
continue; // eslint-disable-line no-restricted-syntax, no-continue
|
|
539
|
-
}
|
|
540
|
-
if (op === '<') {
|
|
541
|
-
return cur < ver;
|
|
542
|
-
}
|
|
543
|
-
if (op === '>=') {
|
|
544
|
-
return cur >= ver;
|
|
545
|
-
}
|
|
546
|
-
return false;
|
|
547
|
-
}
|
|
548
|
-
return op === '>=';
|
|
549
|
-
}
|
|
550
|
-
|
|
551
|
-
function matchesRange(current, range) {
|
|
552
|
-
var specifiers = range.split(/ ?&& ?/);
|
|
553
|
-
if (specifiers.length === 0) {
|
|
554
|
-
return false;
|
|
555
|
-
}
|
|
556
|
-
for (var i = 0; i < specifiers.length; ++i) {
|
|
557
|
-
if (!specifierIncluded(current, specifiers[i])) {
|
|
558
|
-
return false;
|
|
559
|
-
}
|
|
560
|
-
}
|
|
561
|
-
return true;
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
function versionIncluded(nodeVersion, specifierValue) {
|
|
565
|
-
if (typeof specifierValue === 'boolean') {
|
|
566
|
-
return specifierValue;
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
var current = typeof nodeVersion === 'undefined'
|
|
570
|
-
? process.versions && process.versions.node
|
|
571
|
-
: nodeVersion;
|
|
572
|
-
|
|
573
|
-
if (typeof current !== 'string') {
|
|
574
|
-
throw new TypeError(typeof nodeVersion === 'undefined' ? 'Unable to determine current node version' : 'If provided, a valid node version is required');
|
|
575
|
-
}
|
|
576
|
-
|
|
577
|
-
if (specifierValue && typeof specifierValue === 'object') {
|
|
578
|
-
for (var i = 0; i < specifierValue.length; ++i) {
|
|
579
|
-
if (matchesRange(current, specifierValue[i])) {
|
|
580
|
-
return true;
|
|
581
|
-
}
|
|
582
|
-
}
|
|
583
|
-
return false;
|
|
584
|
-
}
|
|
585
|
-
return matchesRange(current, specifierValue);
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
var data = require$$1;
|
|
589
|
-
|
|
590
|
-
isCoreModule = function isCore(x, nodeVersion) {
|
|
591
|
-
return hasOwn(data, x) && versionIncluded(nodeVersion, data[x]);
|
|
592
|
-
};
|
|
593
|
-
return isCoreModule;
|
|
594
|
-
}
|
|
595
|
-
|
|
596
|
-
export { requireIsCoreModule as r };
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { a as getDefaultExportFromCjs } from './commondir.mjs';
|
|
2
|
-
|
|
3
|
-
var isModule$1;
|
|
4
|
-
var hasRequiredIsModule;
|
|
5
|
-
|
|
6
|
-
function requireIsModule () {
|
|
7
|
-
if (hasRequiredIsModule) return isModule$1;
|
|
8
|
-
hasRequiredIsModule = 1;
|
|
9
|
-
// no idea what these regular expressions do,
|
|
10
|
-
// but i extracted it from https://github.com/yahoo/js-module-formats/blob/master/index.js#L18
|
|
11
|
-
var ES6ImportExportRegExp = /(?:^\s*|[}{\(\);,\n]\s*)(import\s+['"]|(import|module)\s+[^"'\(\)\n;]+\s+from\s+['"]|export\s+(\*|\{|default|function|var|const|let|[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*))/;
|
|
12
|
-
|
|
13
|
-
var ES6AliasRegExp = /(?:^\s*|[}{\(\);,\n]\s*)(export\s*\*\s*from\s*(?:'([^']+)'|"([^"]+)"))/;
|
|
14
|
-
|
|
15
|
-
isModule$1 = function (sauce) {
|
|
16
|
-
return ES6ImportExportRegExp.test(sauce)
|
|
17
|
-
|| ES6AliasRegExp.test(sauce);
|
|
18
|
-
};
|
|
19
|
-
return isModule$1;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
var isModuleExports = requireIsModule();
|
|
23
|
-
const isModule = /*@__PURE__*/getDefaultExportFromCjs(isModuleExports);
|
|
24
|
-
|
|
25
|
-
export { isModule as i };
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
function isReference(node, parent) {
|
|
2
|
-
if (node.type === 'MemberExpression') {
|
|
3
|
-
return !node.computed && isReference(node.object, node);
|
|
4
|
-
}
|
|
5
|
-
if (node.type === 'Identifier') {
|
|
6
|
-
if (!parent)
|
|
7
|
-
return true;
|
|
8
|
-
switch (parent.type) {
|
|
9
|
-
// disregard `bar` in `foo.bar`
|
|
10
|
-
case 'MemberExpression': return parent.computed || node === parent.object;
|
|
11
|
-
// disregard the `foo` in `class {foo(){}}` but keep it in `class {[foo](){}}`
|
|
12
|
-
case 'MethodDefinition': return parent.computed;
|
|
13
|
-
// disregard the `foo` in `class {foo=bar}` but keep it in `class {[foo]=bar}` and `class {bar=foo}`
|
|
14
|
-
case 'FieldDefinition': return parent.computed || node === parent.value;
|
|
15
|
-
// disregard the `bar` in `{ bar: foo }`, but keep it in `{ [bar]: foo }`
|
|
16
|
-
case 'Property': return parent.computed || node === parent.value;
|
|
17
|
-
// disregard the `bar` in `export { foo as bar }` or
|
|
18
|
-
// the foo in `import { foo as bar }`
|
|
19
|
-
case 'ExportSpecifier':
|
|
20
|
-
case 'ImportSpecifier': return node === parent.local;
|
|
21
|
-
// disregard the `foo` in `foo: while (...) { ... break foo; ... continue foo;}`
|
|
22
|
-
case 'LabeledStatement':
|
|
23
|
-
case 'BreakStatement':
|
|
24
|
-
case 'ContinueStatement': return false;
|
|
25
|
-
default: return true;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
return false;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export { isReference as i };
|