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
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
import { i as __require, t as __commonJS } from "../_chunks/DXMHy5ca.mjs";
|
|
2
|
+
import { i as require_node_fetch_native_DhEqb06g, r as require_node } from "./giget.mjs";
|
|
3
|
+
|
|
4
|
+
//#region node_modules/.pnpm/node-fetch-native@1.6.7/node_modules/node-fetch-native/dist/chunks/multipart-parser.cjs
|
|
5
|
+
var require_multipart_parser = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/node-fetch-native@1.6.7/node_modules/node-fetch-native/dist/chunks/multipart-parser.cjs": ((exports) => {
|
|
6
|
+
var y = Object.defineProperty;
|
|
7
|
+
var c = (R, o) => y(R, "name", {
|
|
8
|
+
value: o,
|
|
9
|
+
configurable: !0
|
|
10
|
+
});
|
|
11
|
+
const node = require_node();
|
|
12
|
+
__require("node:http"), __require("node:https"), __require("node:zlib"), __require("node:stream"), __require("node:buffer"), __require("node:util"), require_node_fetch_native_DhEqb06g(), __require("node:url"), __require("node:net"), __require("node:fs"), __require("node:path");
|
|
13
|
+
let s = 0;
|
|
14
|
+
const S = {
|
|
15
|
+
START_BOUNDARY: s++,
|
|
16
|
+
HEADER_FIELD_START: s++,
|
|
17
|
+
HEADER_FIELD: s++,
|
|
18
|
+
HEADER_VALUE_START: s++,
|
|
19
|
+
HEADER_VALUE: s++,
|
|
20
|
+
HEADER_VALUE_ALMOST_DONE: s++,
|
|
21
|
+
HEADERS_ALMOST_DONE: s++,
|
|
22
|
+
PART_DATA_START: s++,
|
|
23
|
+
PART_DATA: s++,
|
|
24
|
+
END: s++
|
|
25
|
+
};
|
|
26
|
+
let f = 1;
|
|
27
|
+
const F = {
|
|
28
|
+
PART_BOUNDARY: f,
|
|
29
|
+
LAST_BOUNDARY: f *= 2
|
|
30
|
+
}, LF = 10, CR = 13, SPACE = 32, HYPHEN = 45, COLON = 58, A = 97, Z = 122, lower = c((R) => R | 32, "lower"), noop = c(() => {}, "noop"), g = class g$1 {
|
|
31
|
+
constructor(o) {
|
|
32
|
+
this.index = 0, this.flags = 0, this.onHeaderEnd = noop, this.onHeaderField = noop, this.onHeadersEnd = noop, this.onHeaderValue = noop, this.onPartBegin = noop, this.onPartData = noop, this.onPartEnd = noop, this.boundaryChars = {}, o = `\r
|
|
33
|
+
--` + o;
|
|
34
|
+
const t = new Uint8Array(o.length);
|
|
35
|
+
for (let n = 0; n < o.length; n++) t[n] = o.charCodeAt(n), this.boundaryChars[t[n]] = !0;
|
|
36
|
+
this.boundary = t, this.lookbehind = new Uint8Array(this.boundary.length + 8), this.state = S.START_BOUNDARY;
|
|
37
|
+
}
|
|
38
|
+
write(o) {
|
|
39
|
+
let t = 0;
|
|
40
|
+
const n = o.length;
|
|
41
|
+
let E = this.index, { lookbehind: l, boundary: h, boundaryChars: H, index: e, state: a, flags: d } = this;
|
|
42
|
+
const b = this.boundary.length, m = b - 1, O = o.length;
|
|
43
|
+
let r, P;
|
|
44
|
+
const u = c((D) => {
|
|
45
|
+
this[D + "Mark"] = t;
|
|
46
|
+
}, "mark"), i = c((D) => {
|
|
47
|
+
delete this[D + "Mark"];
|
|
48
|
+
}, "clear"), T = c((D, p, _, N) => {
|
|
49
|
+
(p === void 0 || p !== _) && this[D](N && N.subarray(p, _));
|
|
50
|
+
}, "callback"), L = c((D, p) => {
|
|
51
|
+
const _ = D + "Mark";
|
|
52
|
+
_ in this && (p ? (T(D, this[_], t, o), delete this[_]) : (T(D, this[_], o.length, o), this[_] = 0));
|
|
53
|
+
}, "dataCallback");
|
|
54
|
+
for (t = 0; t < n; t++) switch (r = o[t], a) {
|
|
55
|
+
case S.START_BOUNDARY:
|
|
56
|
+
if (e === h.length - 2) {
|
|
57
|
+
if (r === HYPHEN) d |= F.LAST_BOUNDARY;
|
|
58
|
+
else if (r !== CR) return;
|
|
59
|
+
e++;
|
|
60
|
+
break;
|
|
61
|
+
} else if (e - 1 === h.length - 2) {
|
|
62
|
+
if (d & F.LAST_BOUNDARY && r === HYPHEN) a = S.END, d = 0;
|
|
63
|
+
else if (!(d & F.LAST_BOUNDARY) && r === LF) e = 0, T("onPartBegin"), a = S.HEADER_FIELD_START;
|
|
64
|
+
else return;
|
|
65
|
+
break;
|
|
66
|
+
}
|
|
67
|
+
r !== h[e + 2] && (e = -2), r === h[e + 2] && e++;
|
|
68
|
+
break;
|
|
69
|
+
case S.HEADER_FIELD_START: a = S.HEADER_FIELD, u("onHeaderField"), e = 0;
|
|
70
|
+
case S.HEADER_FIELD:
|
|
71
|
+
if (r === CR) {
|
|
72
|
+
i("onHeaderField"), a = S.HEADERS_ALMOST_DONE;
|
|
73
|
+
break;
|
|
74
|
+
}
|
|
75
|
+
if (e++, r === HYPHEN) break;
|
|
76
|
+
if (r === COLON) {
|
|
77
|
+
if (e === 1) return;
|
|
78
|
+
L("onHeaderField", !0), a = S.HEADER_VALUE_START;
|
|
79
|
+
break;
|
|
80
|
+
}
|
|
81
|
+
if (P = lower(r), P < A || P > Z) return;
|
|
82
|
+
break;
|
|
83
|
+
case S.HEADER_VALUE_START:
|
|
84
|
+
if (r === SPACE) break;
|
|
85
|
+
u("onHeaderValue"), a = S.HEADER_VALUE;
|
|
86
|
+
case S.HEADER_VALUE:
|
|
87
|
+
r === CR && (L("onHeaderValue", !0), T("onHeaderEnd"), a = S.HEADER_VALUE_ALMOST_DONE);
|
|
88
|
+
break;
|
|
89
|
+
case S.HEADER_VALUE_ALMOST_DONE:
|
|
90
|
+
if (r !== LF) return;
|
|
91
|
+
a = S.HEADER_FIELD_START;
|
|
92
|
+
break;
|
|
93
|
+
case S.HEADERS_ALMOST_DONE:
|
|
94
|
+
if (r !== LF) return;
|
|
95
|
+
T("onHeadersEnd"), a = S.PART_DATA_START;
|
|
96
|
+
break;
|
|
97
|
+
case S.PART_DATA_START: a = S.PART_DATA, u("onPartData");
|
|
98
|
+
case S.PART_DATA:
|
|
99
|
+
if (E = e, e === 0) {
|
|
100
|
+
for (t += m; t < O && !(o[t] in H);) t += b;
|
|
101
|
+
t -= m, r = o[t];
|
|
102
|
+
}
|
|
103
|
+
if (e < h.length) h[e] === r ? (e === 0 && L("onPartData", !0), e++) : e = 0;
|
|
104
|
+
else if (e === h.length) e++, r === CR ? d |= F.PART_BOUNDARY : r === HYPHEN ? d |= F.LAST_BOUNDARY : e = 0;
|
|
105
|
+
else if (e - 1 === h.length) if (d & F.PART_BOUNDARY) {
|
|
106
|
+
if (e = 0, r === LF) {
|
|
107
|
+
d &= ~F.PART_BOUNDARY, T("onPartEnd"), T("onPartBegin"), a = S.HEADER_FIELD_START;
|
|
108
|
+
break;
|
|
109
|
+
}
|
|
110
|
+
} else d & F.LAST_BOUNDARY && r === HYPHEN ? (T("onPartEnd"), a = S.END, d = 0) : e = 0;
|
|
111
|
+
if (e > 0) l[e - 1] = r;
|
|
112
|
+
else if (E > 0) {
|
|
113
|
+
const D = new Uint8Array(l.buffer, l.byteOffset, l.byteLength);
|
|
114
|
+
T("onPartData", 0, E, D), E = 0, u("onPartData"), t--;
|
|
115
|
+
}
|
|
116
|
+
break;
|
|
117
|
+
case S.END: break;
|
|
118
|
+
default: throw new Error(`Unexpected state entered: ${a}`);
|
|
119
|
+
}
|
|
120
|
+
L("onHeaderField"), L("onHeaderValue"), L("onPartData"), this.index = e, this.state = a, this.flags = d;
|
|
121
|
+
}
|
|
122
|
+
end() {
|
|
123
|
+
if (this.state === S.HEADER_FIELD_START && this.index === 0 || this.state === S.PART_DATA && this.index === this.boundary.length) this.onPartEnd();
|
|
124
|
+
else if (this.state !== S.END) throw new Error("MultipartParser.end(): stream ended unexpectedly");
|
|
125
|
+
}
|
|
126
|
+
};
|
|
127
|
+
c(g, "MultipartParser");
|
|
128
|
+
let MultipartParser = g;
|
|
129
|
+
function _fileName(R) {
|
|
130
|
+
const o = R.match(/\bfilename=("(.*?)"|([^()<>@,;:\\"/[\]?={}\s\t]+))($|;\s)/i);
|
|
131
|
+
if (!o) return;
|
|
132
|
+
const t = o[2] || o[3] || "";
|
|
133
|
+
let n = t.slice(t.lastIndexOf("\\") + 1);
|
|
134
|
+
return n = n.replace(/%22/g, "\""), n = n.replace(/&#(\d{4});/g, (E, l) => String.fromCharCode(l)), n;
|
|
135
|
+
}
|
|
136
|
+
c(_fileName, "_fileName");
|
|
137
|
+
async function toFormData(R, o) {
|
|
138
|
+
if (!/multipart/i.test(o)) throw new TypeError("Failed to fetch");
|
|
139
|
+
const t = o.match(/boundary=(?:"([^"]+)"|([^;]+))/i);
|
|
140
|
+
if (!t) throw new TypeError("no or bad content-type header, no multipart boundary");
|
|
141
|
+
const n = new MultipartParser(t[1] || t[2]);
|
|
142
|
+
let E, l, h, H, e, a;
|
|
143
|
+
const d = [], b = new node.FormData(), m = c((i) => {
|
|
144
|
+
h += u.decode(i, { stream: !0 });
|
|
145
|
+
}, "onPartData"), O = c((i) => {
|
|
146
|
+
d.push(i);
|
|
147
|
+
}, "appendToFile"), r = c(() => {
|
|
148
|
+
const i = new node.File(d, a, { type: e });
|
|
149
|
+
b.append(H, i);
|
|
150
|
+
}, "appendFileToFormData"), P = c(() => {
|
|
151
|
+
b.append(H, h);
|
|
152
|
+
}, "appendEntryToFormData"), u = new TextDecoder("utf-8");
|
|
153
|
+
u.decode(), n.onPartBegin = function() {
|
|
154
|
+
n.onPartData = m, n.onPartEnd = P, E = "", l = "", h = "", H = "", e = "", a = null, d.length = 0;
|
|
155
|
+
}, n.onHeaderField = function(i) {
|
|
156
|
+
E += u.decode(i, { stream: !0 });
|
|
157
|
+
}, n.onHeaderValue = function(i) {
|
|
158
|
+
l += u.decode(i, { stream: !0 });
|
|
159
|
+
}, n.onHeaderEnd = function() {
|
|
160
|
+
if (l += u.decode(), E = E.toLowerCase(), E === "content-disposition") {
|
|
161
|
+
const i = l.match(/\bname=("([^"]*)"|([^()<>@,;:\\"/[\]?={}\s\t]+))/i);
|
|
162
|
+
i && (H = i[2] || i[3] || ""), a = _fileName(l), a && (n.onPartData = O, n.onPartEnd = r);
|
|
163
|
+
} else E === "content-type" && (e = l);
|
|
164
|
+
l = "", E = "";
|
|
165
|
+
};
|
|
166
|
+
for await (const i of R) n.write(i);
|
|
167
|
+
return n.end(), b;
|
|
168
|
+
}
|
|
169
|
+
c(toFormData, "toFormData"), exports.toFormData = toFormData;
|
|
170
|
+
}) });
|
|
171
|
+
|
|
172
|
+
//#endregion
|
|
173
|
+
export { require_multipart_parser as t };
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
import { i as __require, t as __commonJS } from "../_chunks/DXMHy5ca.mjs";
|
|
2
|
+
import { t as require_ee_first } from "./ee-first.mjs";
|
|
3
|
+
|
|
4
|
+
//#region node_modules/.pnpm/on-finished@2.4.1/node_modules/on-finished/index.js
|
|
5
|
+
var require_on_finished = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/on-finished@2.4.1/node_modules/on-finished/index.js": ((exports, module) => {
|
|
6
|
+
/**
|
|
7
|
+
* Module exports.
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
module.exports = onFinished;
|
|
11
|
+
module.exports.isFinished = isFinished;
|
|
12
|
+
/**
|
|
13
|
+
* Module dependencies.
|
|
14
|
+
* @private
|
|
15
|
+
*/
|
|
16
|
+
var asyncHooks = tryRequireAsyncHooks();
|
|
17
|
+
var first = require_ee_first();
|
|
18
|
+
/**
|
|
19
|
+
* Variables.
|
|
20
|
+
* @private
|
|
21
|
+
*/
|
|
22
|
+
/* istanbul ignore next */
|
|
23
|
+
var defer = typeof setImmediate === "function" ? setImmediate : function(fn) {
|
|
24
|
+
process.nextTick(fn.bind.apply(fn, arguments));
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Invoke callback when the response has finished, useful for
|
|
28
|
+
* cleaning up resources afterwards.
|
|
29
|
+
*
|
|
30
|
+
* @param {object} msg
|
|
31
|
+
* @param {function} listener
|
|
32
|
+
* @return {object}
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
function onFinished(msg, listener) {
|
|
36
|
+
if (isFinished(msg) !== false) {
|
|
37
|
+
defer(listener, null, msg);
|
|
38
|
+
return msg;
|
|
39
|
+
}
|
|
40
|
+
attachListener(msg, wrap(listener));
|
|
41
|
+
return msg;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Determine if message is already finished.
|
|
45
|
+
*
|
|
46
|
+
* @param {object} msg
|
|
47
|
+
* @return {boolean}
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
function isFinished(msg) {
|
|
51
|
+
var socket = msg.socket;
|
|
52
|
+
if (typeof msg.finished === "boolean") return Boolean(msg.finished || socket && !socket.writable);
|
|
53
|
+
if (typeof msg.complete === "boolean") return Boolean(msg.upgrade || !socket || !socket.readable || msg.complete && !msg.readable);
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Attach a finished listener to the message.
|
|
57
|
+
*
|
|
58
|
+
* @param {object} msg
|
|
59
|
+
* @param {function} callback
|
|
60
|
+
* @private
|
|
61
|
+
*/
|
|
62
|
+
function attachFinishedListener(msg, callback) {
|
|
63
|
+
var eeMsg;
|
|
64
|
+
var eeSocket;
|
|
65
|
+
var finished = false;
|
|
66
|
+
function onFinish(error) {
|
|
67
|
+
eeMsg.cancel();
|
|
68
|
+
eeSocket.cancel();
|
|
69
|
+
finished = true;
|
|
70
|
+
callback(error);
|
|
71
|
+
}
|
|
72
|
+
eeMsg = eeSocket = first([[
|
|
73
|
+
msg,
|
|
74
|
+
"end",
|
|
75
|
+
"finish"
|
|
76
|
+
]], onFinish);
|
|
77
|
+
function onSocket(socket) {
|
|
78
|
+
msg.removeListener("socket", onSocket);
|
|
79
|
+
if (finished) return;
|
|
80
|
+
if (eeMsg !== eeSocket) return;
|
|
81
|
+
eeSocket = first([[
|
|
82
|
+
socket,
|
|
83
|
+
"error",
|
|
84
|
+
"close"
|
|
85
|
+
]], onFinish);
|
|
86
|
+
}
|
|
87
|
+
if (msg.socket) {
|
|
88
|
+
onSocket(msg.socket);
|
|
89
|
+
return;
|
|
90
|
+
}
|
|
91
|
+
msg.on("socket", onSocket);
|
|
92
|
+
if (msg.socket === void 0)
|
|
93
|
+
// istanbul ignore next: node.js 0.8 patch
|
|
94
|
+
patchAssignSocket(msg, onSocket);
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* Attach the listener to the message.
|
|
98
|
+
*
|
|
99
|
+
* @param {object} msg
|
|
100
|
+
* @return {function}
|
|
101
|
+
* @private
|
|
102
|
+
*/
|
|
103
|
+
function attachListener(msg, listener) {
|
|
104
|
+
var attached = msg.__onFinished;
|
|
105
|
+
if (!attached || !attached.queue) {
|
|
106
|
+
attached = msg.__onFinished = createListener(msg);
|
|
107
|
+
attachFinishedListener(msg, attached);
|
|
108
|
+
}
|
|
109
|
+
attached.queue.push(listener);
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* Create listener on message.
|
|
113
|
+
*
|
|
114
|
+
* @param {object} msg
|
|
115
|
+
* @return {function}
|
|
116
|
+
* @private
|
|
117
|
+
*/
|
|
118
|
+
function createListener(msg) {
|
|
119
|
+
function listener(err) {
|
|
120
|
+
if (msg.__onFinished === listener) msg.__onFinished = null;
|
|
121
|
+
if (!listener.queue) return;
|
|
122
|
+
var queue = listener.queue;
|
|
123
|
+
listener.queue = null;
|
|
124
|
+
for (var i = 0; i < queue.length; i++) queue[i](err, msg);
|
|
125
|
+
}
|
|
126
|
+
listener.queue = [];
|
|
127
|
+
return listener;
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* Patch ServerResponse.prototype.assignSocket for node.js 0.8.
|
|
131
|
+
*
|
|
132
|
+
* @param {ServerResponse} res
|
|
133
|
+
* @param {function} callback
|
|
134
|
+
* @private
|
|
135
|
+
*/
|
|
136
|
+
// istanbul ignore next: node.js 0.8 patch
|
|
137
|
+
function patchAssignSocket(res, callback) {
|
|
138
|
+
var assignSocket = res.assignSocket;
|
|
139
|
+
if (typeof assignSocket !== "function") return;
|
|
140
|
+
res.assignSocket = function _assignSocket(socket) {
|
|
141
|
+
assignSocket.call(this, socket);
|
|
142
|
+
callback(socket);
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* Try to require async_hooks
|
|
147
|
+
* @private
|
|
148
|
+
*/
|
|
149
|
+
function tryRequireAsyncHooks() {
|
|
150
|
+
try {
|
|
151
|
+
return __require("async_hooks");
|
|
152
|
+
} catch (e) {
|
|
153
|
+
return {};
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* Wrap function with async resource, if possible.
|
|
158
|
+
* AsyncResource.bind static method backported.
|
|
159
|
+
* @private
|
|
160
|
+
*/
|
|
161
|
+
function wrap(fn) {
|
|
162
|
+
var res;
|
|
163
|
+
if (asyncHooks.AsyncResource) res = new asyncHooks.AsyncResource(fn.name || "bound-anonymous-fn");
|
|
164
|
+
if (!res || !res.runInAsyncScope) return fn;
|
|
165
|
+
return res.runInAsyncScope.bind(res, fn, null);
|
|
166
|
+
}
|
|
167
|
+
}) });
|
|
168
|
+
|
|
169
|
+
//#endregion
|
|
170
|
+
export { require_on_finished as t };
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { i as __require, t as __commonJS } from "../_chunks/DXMHy5ca.mjs";
|
|
2
|
+
|
|
3
|
+
//#region node_modules/.pnpm/parseurl@1.3.3/node_modules/parseurl/index.js
|
|
4
|
+
var require_parseurl = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/parseurl@1.3.3/node_modules/parseurl/index.js": ((exports, module) => {
|
|
5
|
+
/**
|
|
6
|
+
* Module dependencies.
|
|
7
|
+
* @private
|
|
8
|
+
*/
|
|
9
|
+
var url = __require("url");
|
|
10
|
+
var parse = url.parse;
|
|
11
|
+
var Url = url.Url;
|
|
12
|
+
/**
|
|
13
|
+
* Module exports.
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
module.exports = parseurl;
|
|
17
|
+
module.exports.original = originalurl;
|
|
18
|
+
/**
|
|
19
|
+
* Parse the `req` url with memoization.
|
|
20
|
+
*
|
|
21
|
+
* @param {ServerRequest} req
|
|
22
|
+
* @return {Object}
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
function parseurl(req) {
|
|
26
|
+
var url$1 = req.url;
|
|
27
|
+
if (url$1 === void 0) return;
|
|
28
|
+
var parsed = req._parsedUrl;
|
|
29
|
+
if (fresh(url$1, parsed)) return parsed;
|
|
30
|
+
parsed = fastparse(url$1);
|
|
31
|
+
parsed._raw = url$1;
|
|
32
|
+
return req._parsedUrl = parsed;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Parse the `req` original url with fallback and memoization.
|
|
36
|
+
*
|
|
37
|
+
* @param {ServerRequest} req
|
|
38
|
+
* @return {Object}
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
function originalurl(req) {
|
|
42
|
+
var url$1 = req.originalUrl;
|
|
43
|
+
if (typeof url$1 !== "string") return parseurl(req);
|
|
44
|
+
var parsed = req._parsedOriginalUrl;
|
|
45
|
+
if (fresh(url$1, parsed)) return parsed;
|
|
46
|
+
parsed = fastparse(url$1);
|
|
47
|
+
parsed._raw = url$1;
|
|
48
|
+
return req._parsedOriginalUrl = parsed;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Parse the `str` url with fast-path short-cut.
|
|
52
|
+
*
|
|
53
|
+
* @param {string} str
|
|
54
|
+
* @return {Object}
|
|
55
|
+
* @private
|
|
56
|
+
*/
|
|
57
|
+
function fastparse(str) {
|
|
58
|
+
if (typeof str !== "string" || str.charCodeAt(0) !== 47) return parse(str);
|
|
59
|
+
var pathname = str;
|
|
60
|
+
var query = null;
|
|
61
|
+
var search = null;
|
|
62
|
+
for (var i = 1; i < str.length; i++) switch (str.charCodeAt(i)) {
|
|
63
|
+
case 63:
|
|
64
|
+
if (search === null) {
|
|
65
|
+
pathname = str.substring(0, i);
|
|
66
|
+
query = str.substring(i + 1);
|
|
67
|
+
search = str.substring(i);
|
|
68
|
+
}
|
|
69
|
+
break;
|
|
70
|
+
case 9:
|
|
71
|
+
case 10:
|
|
72
|
+
case 12:
|
|
73
|
+
case 13:
|
|
74
|
+
case 32:
|
|
75
|
+
case 35:
|
|
76
|
+
case 160:
|
|
77
|
+
case 65279: return parse(str);
|
|
78
|
+
}
|
|
79
|
+
var url$1 = Url !== void 0 ? new Url() : {};
|
|
80
|
+
url$1.path = str;
|
|
81
|
+
url$1.href = str;
|
|
82
|
+
url$1.pathname = pathname;
|
|
83
|
+
if (search !== null) {
|
|
84
|
+
url$1.query = query;
|
|
85
|
+
url$1.search = search;
|
|
86
|
+
}
|
|
87
|
+
return url$1;
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* Determine if parsed is still fresh for url.
|
|
91
|
+
*
|
|
92
|
+
* @param {string} url
|
|
93
|
+
* @param {object} parsedUrl
|
|
94
|
+
* @return {boolean}
|
|
95
|
+
* @private
|
|
96
|
+
*/
|
|
97
|
+
function fresh(url$1, parsedUrl) {
|
|
98
|
+
return typeof parsedUrl === "object" && parsedUrl !== null && (Url === void 0 || parsedUrl instanceof Url) && parsedUrl._raw === url$1;
|
|
99
|
+
}
|
|
100
|
+
}) });
|
|
101
|
+
|
|
102
|
+
//#endregion
|
|
103
|
+
export { require_parseurl as t };
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { t as __commonJS } from "../_chunks/DXMHy5ca.mjs";
|
|
2
|
+
|
|
3
|
+
//#region node_modules/.pnpm/path-parse@1.0.7/node_modules/path-parse/index.js
|
|
4
|
+
var require_path_parse = /* @__PURE__ */ __commonJS({ "node_modules/.pnpm/path-parse@1.0.7/node_modules/path-parse/index.js": ((exports, module) => {
|
|
5
|
+
var isWindows = process.platform === "win32";
|
|
6
|
+
var splitWindowsRe = /^(((?:[a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/]+[^\\\/]+)?[\\\/]?)(?:[^\\\/]*[\\\/])*)((\.{1,2}|[^\\\/]+?|)(\.[^.\/\\]*|))[\\\/]*$/;
|
|
7
|
+
var win32 = {};
|
|
8
|
+
function win32SplitPath(filename) {
|
|
9
|
+
return splitWindowsRe.exec(filename).slice(1);
|
|
10
|
+
}
|
|
11
|
+
win32.parse = function(pathString) {
|
|
12
|
+
if (typeof pathString !== "string") throw new TypeError("Parameter 'pathString' must be a string, not " + typeof pathString);
|
|
13
|
+
var allParts = win32SplitPath(pathString);
|
|
14
|
+
if (!allParts || allParts.length !== 5) throw new TypeError("Invalid path '" + pathString + "'");
|
|
15
|
+
return {
|
|
16
|
+
root: allParts[1],
|
|
17
|
+
dir: allParts[0] === allParts[1] ? allParts[0] : allParts[0].slice(0, -1),
|
|
18
|
+
base: allParts[2],
|
|
19
|
+
ext: allParts[4],
|
|
20
|
+
name: allParts[3]
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
var splitPathRe = /^((\/?)(?:[^\/]*\/)*)((\.{1,2}|[^\/]+?|)(\.[^.\/]*|))[\/]*$/;
|
|
24
|
+
var posix = {};
|
|
25
|
+
function posixSplitPath(filename) {
|
|
26
|
+
return splitPathRe.exec(filename).slice(1);
|
|
27
|
+
}
|
|
28
|
+
posix.parse = function(pathString) {
|
|
29
|
+
if (typeof pathString !== "string") throw new TypeError("Parameter 'pathString' must be a string, not " + typeof pathString);
|
|
30
|
+
var allParts = posixSplitPath(pathString);
|
|
31
|
+
if (!allParts || allParts.length !== 5) throw new TypeError("Invalid path '" + pathString + "'");
|
|
32
|
+
return {
|
|
33
|
+
root: allParts[1],
|
|
34
|
+
dir: allParts[0].slice(0, -1),
|
|
35
|
+
base: allParts[2],
|
|
36
|
+
ext: allParts[4],
|
|
37
|
+
name: allParts[3]
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
if (isWindows) module.exports = win32.parse;
|
|
41
|
+
else module.exports = posix.parse;
|
|
42
|
+
module.exports.posix = posix.parse;
|
|
43
|
+
module.exports.win32 = win32.parse;
|
|
44
|
+
}) });
|
|
45
|
+
|
|
46
|
+
//#endregion
|
|
47
|
+
export { require_path_parse as t };
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { S as normalizeWindowsPath, b as join } from "./c12.mjs";
|
|
2
|
+
|
|
3
|
+
//#region node_modules/.pnpm/pathe@2.0.3/node_modules/pathe/dist/utils.mjs
|
|
4
|
+
const pathSeparators = /* @__PURE__ */ new Set([
|
|
5
|
+
"/",
|
|
6
|
+
"\\",
|
|
7
|
+
void 0
|
|
8
|
+
]);
|
|
9
|
+
const normalizedAliasSymbol = Symbol.for("pathe:normalizedAlias");
|
|
10
|
+
function normalizeAliases(_aliases) {
|
|
11
|
+
if (_aliases[normalizedAliasSymbol]) return _aliases;
|
|
12
|
+
const aliases = Object.fromEntries(Object.entries(_aliases).sort(([a], [b]) => _compareAliases(a, b)));
|
|
13
|
+
for (const key in aliases) for (const alias in aliases) {
|
|
14
|
+
if (alias === key || key.startsWith(alias)) continue;
|
|
15
|
+
if (aliases[key]?.startsWith(alias) && pathSeparators.has(aliases[key][alias.length])) aliases[key] = aliases[alias] + aliases[key].slice(alias.length);
|
|
16
|
+
}
|
|
17
|
+
Object.defineProperty(aliases, normalizedAliasSymbol, {
|
|
18
|
+
value: true,
|
|
19
|
+
enumerable: false
|
|
20
|
+
});
|
|
21
|
+
return aliases;
|
|
22
|
+
}
|
|
23
|
+
function resolveAlias(path, aliases) {
|
|
24
|
+
const _path = normalizeWindowsPath(path);
|
|
25
|
+
aliases = normalizeAliases(aliases);
|
|
26
|
+
for (const [alias, to] of Object.entries(aliases)) {
|
|
27
|
+
if (!_path.startsWith(alias)) continue;
|
|
28
|
+
if (hasTrailingSlash(_path[(hasTrailingSlash(alias) ? alias.slice(0, -1) : alias).length])) return join(to, _path.slice(alias.length));
|
|
29
|
+
}
|
|
30
|
+
return _path;
|
|
31
|
+
}
|
|
32
|
+
function _compareAliases(a, b) {
|
|
33
|
+
return b.split("/").length - a.split("/").length;
|
|
34
|
+
}
|
|
35
|
+
function hasTrailingSlash(path = "/") {
|
|
36
|
+
const lastChar = path[path.length - 1];
|
|
37
|
+
return lastChar === "/" || lastChar === "\\";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
//#endregion
|
|
41
|
+
export { resolveAlias as t };
|