first commit
This commit is contained in:
commit
4baaf9e32d
17
node_modules/.bin/nodemon
generated
vendored
Normal file
17
node_modules/.bin/nodemon
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
case `uname` in
|
||||||
|
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -z "$NODE_PATH" ]; then
|
||||||
|
export NODE_PATH="/mnt/d/Projects/minm-api/node_modules/.pnpm/nodemon@3.1.10/node_modules/nodemon/bin/node_modules:/mnt/d/Projects/minm-api/node_modules/.pnpm/nodemon@3.1.10/node_modules/nodemon/node_modules:/mnt/d/Projects/minm-api/node_modules/.pnpm/nodemon@3.1.10/node_modules:/mnt/d/Projects/minm-api/node_modules/.pnpm/node_modules"
|
||||||
|
else
|
||||||
|
export NODE_PATH="/mnt/d/Projects/minm-api/node_modules/.pnpm/nodemon@3.1.10/node_modules/nodemon/bin/node_modules:/mnt/d/Projects/minm-api/node_modules/.pnpm/nodemon@3.1.10/node_modules/nodemon/node_modules:/mnt/d/Projects/minm-api/node_modules/.pnpm/nodemon@3.1.10/node_modules:/mnt/d/Projects/minm-api/node_modules/.pnpm/node_modules:$NODE_PATH"
|
||||||
|
fi
|
||||||
|
if [ -x "$basedir/node" ]; then
|
||||||
|
exec "$basedir/node" "$basedir/../.pnpm/nodemon@3.1.10/node_modules/nodemon/bin/nodemon.js" "$@"
|
||||||
|
else
|
||||||
|
exec node "$basedir/../.pnpm/nodemon@3.1.10/node_modules/nodemon/bin/nodemon.js" "$@"
|
||||||
|
fi
|
12
node_modules/.bin/nodemon.CMD
generated
vendored
Normal file
12
node_modules/.bin/nodemon.CMD
generated
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
@SETLOCAL
|
||||||
|
@IF NOT DEFINED NODE_PATH (
|
||||||
|
@SET "NODE_PATH=D:\Projects\minm-api\node_modules\.pnpm\nodemon@3.1.10\node_modules\nodemon\bin\node_modules;D:\Projects\minm-api\node_modules\.pnpm\nodemon@3.1.10\node_modules\nodemon\node_modules;D:\Projects\minm-api\node_modules\.pnpm\nodemon@3.1.10\node_modules;D:\Projects\minm-api\node_modules\.pnpm\node_modules"
|
||||||
|
) ELSE (
|
||||||
|
@SET "NODE_PATH=D:\Projects\minm-api\node_modules\.pnpm\nodemon@3.1.10\node_modules\nodemon\bin\node_modules;D:\Projects\minm-api\node_modules\.pnpm\nodemon@3.1.10\node_modules\nodemon\node_modules;D:\Projects\minm-api\node_modules\.pnpm\nodemon@3.1.10\node_modules;D:\Projects\minm-api\node_modules\.pnpm\node_modules;%NODE_PATH%"
|
||||||
|
)
|
||||||
|
@IF EXIST "%~dp0\node.exe" (
|
||||||
|
"%~dp0\node.exe" "%~dp0\..\.pnpm\nodemon@3.1.10\node_modules\nodemon\bin\nodemon.js" %*
|
||||||
|
) ELSE (
|
||||||
|
@SET PATHEXT=%PATHEXT:;.JS;=;%
|
||||||
|
node "%~dp0\..\.pnpm\nodemon@3.1.10\node_modules\nodemon\bin\nodemon.js" %*
|
||||||
|
)
|
41
node_modules/.bin/nodemon.ps1
generated
vendored
Normal file
41
node_modules/.bin/nodemon.ps1
generated
vendored
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
|
||||||
|
|
||||||
|
$exe=""
|
||||||
|
$pathsep=":"
|
||||||
|
$env_node_path=$env:NODE_PATH
|
||||||
|
$new_node_path="D:\Projects\minm-api\node_modules\.pnpm\nodemon@3.1.10\node_modules\nodemon\bin\node_modules;D:\Projects\minm-api\node_modules\.pnpm\nodemon@3.1.10\node_modules\nodemon\node_modules;D:\Projects\minm-api\node_modules\.pnpm\nodemon@3.1.10\node_modules;D:\Projects\minm-api\node_modules\.pnpm\node_modules"
|
||||||
|
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
|
||||||
|
# Fix case when both the Windows and Linux builds of Node
|
||||||
|
# are installed in the same directory
|
||||||
|
$exe=".exe"
|
||||||
|
$pathsep=";"
|
||||||
|
} else {
|
||||||
|
$new_node_path="/mnt/d/Projects/minm-api/node_modules/.pnpm/nodemon@3.1.10/node_modules/nodemon/bin/node_modules:/mnt/d/Projects/minm-api/node_modules/.pnpm/nodemon@3.1.10/node_modules/nodemon/node_modules:/mnt/d/Projects/minm-api/node_modules/.pnpm/nodemon@3.1.10/node_modules:/mnt/d/Projects/minm-api/node_modules/.pnpm/node_modules"
|
||||||
|
}
|
||||||
|
if ([string]::IsNullOrEmpty($env_node_path)) {
|
||||||
|
$env:NODE_PATH=$new_node_path
|
||||||
|
} else {
|
||||||
|
$env:NODE_PATH="$new_node_path$pathsep$env_node_path"
|
||||||
|
}
|
||||||
|
|
||||||
|
$ret=0
|
||||||
|
if (Test-Path "$basedir/node$exe") {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "$basedir/node$exe" "$basedir/../.pnpm/nodemon@3.1.10/node_modules/nodemon/bin/nodemon.js" $args
|
||||||
|
} else {
|
||||||
|
& "$basedir/node$exe" "$basedir/../.pnpm/nodemon@3.1.10/node_modules/nodemon/bin/nodemon.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
} else {
|
||||||
|
# Support pipeline input
|
||||||
|
if ($MyInvocation.ExpectingInput) {
|
||||||
|
$input | & "node$exe" "$basedir/../.pnpm/nodemon@3.1.10/node_modules/nodemon/bin/nodemon.js" $args
|
||||||
|
} else {
|
||||||
|
& "node$exe" "$basedir/../.pnpm/nodemon@3.1.10/node_modules/nodemon/bin/nodemon.js" $args
|
||||||
|
}
|
||||||
|
$ret=$LASTEXITCODE
|
||||||
|
}
|
||||||
|
$env:NODE_PATH=$env_node_path
|
||||||
|
exit $ret
|
259
node_modules/.modules.yaml
generated
vendored
Normal file
259
node_modules/.modules.yaml
generated
vendored
Normal file
@ -0,0 +1,259 @@
|
|||||||
|
hoistPattern:
|
||||||
|
- '*'
|
||||||
|
hoistedDependencies:
|
||||||
|
accepts@2.0.0:
|
||||||
|
accepts: private
|
||||||
|
anymatch@3.1.3:
|
||||||
|
anymatch: private
|
||||||
|
asynckit@0.4.0:
|
||||||
|
asynckit: private
|
||||||
|
balanced-match@1.0.2:
|
||||||
|
balanced-match: private
|
||||||
|
binary-extensions@2.3.0:
|
||||||
|
binary-extensions: private
|
||||||
|
body-parser@2.2.0:
|
||||||
|
body-parser: private
|
||||||
|
boolbase@1.0.0:
|
||||||
|
boolbase: private
|
||||||
|
brace-expansion@1.1.11:
|
||||||
|
brace-expansion: private
|
||||||
|
braces@3.0.3:
|
||||||
|
braces: private
|
||||||
|
bytes@3.1.2:
|
||||||
|
bytes: private
|
||||||
|
call-bind-apply-helpers@1.0.2:
|
||||||
|
call-bind-apply-helpers: private
|
||||||
|
call-bound@1.0.4:
|
||||||
|
call-bound: private
|
||||||
|
cheerio-select@2.1.0:
|
||||||
|
cheerio-select: private
|
||||||
|
chokidar@3.6.0:
|
||||||
|
chokidar: private
|
||||||
|
combined-stream@1.0.8:
|
||||||
|
combined-stream: private
|
||||||
|
concat-map@0.0.1:
|
||||||
|
concat-map: private
|
||||||
|
content-disposition@1.0.0:
|
||||||
|
content-disposition: private
|
||||||
|
content-type@1.0.5:
|
||||||
|
content-type: private
|
||||||
|
cookie-signature@1.2.2:
|
||||||
|
cookie-signature: private
|
||||||
|
cookie@0.7.2:
|
||||||
|
cookie: private
|
||||||
|
css-select@5.1.0:
|
||||||
|
css-select: private
|
||||||
|
css-what@6.1.0:
|
||||||
|
css-what: private
|
||||||
|
debug@4.4.1(supports-color@5.5.0):
|
||||||
|
debug: private
|
||||||
|
delayed-stream@1.0.0:
|
||||||
|
delayed-stream: private
|
||||||
|
depd@2.0.0:
|
||||||
|
depd: private
|
||||||
|
dom-serializer@2.0.0:
|
||||||
|
dom-serializer: private
|
||||||
|
domelementtype@2.3.0:
|
||||||
|
domelementtype: private
|
||||||
|
domhandler@5.0.3:
|
||||||
|
domhandler: private
|
||||||
|
domutils@3.2.2:
|
||||||
|
domutils: private
|
||||||
|
dunder-proto@1.0.1:
|
||||||
|
dunder-proto: private
|
||||||
|
ee-first@1.1.1:
|
||||||
|
ee-first: private
|
||||||
|
encodeurl@2.0.0:
|
||||||
|
encodeurl: private
|
||||||
|
encoding-sniffer@0.2.0:
|
||||||
|
encoding-sniffer: private
|
||||||
|
entities@4.5.0:
|
||||||
|
entities: private
|
||||||
|
es-define-property@1.0.1:
|
||||||
|
es-define-property: private
|
||||||
|
es-errors@1.3.0:
|
||||||
|
es-errors: private
|
||||||
|
es-object-atoms@1.1.1:
|
||||||
|
es-object-atoms: private
|
||||||
|
es-set-tostringtag@2.1.0:
|
||||||
|
es-set-tostringtag: private
|
||||||
|
escape-html@1.0.3:
|
||||||
|
escape-html: private
|
||||||
|
etag@1.8.1:
|
||||||
|
etag: private
|
||||||
|
fill-range@7.1.1:
|
||||||
|
fill-range: private
|
||||||
|
finalhandler@2.1.0:
|
||||||
|
finalhandler: private
|
||||||
|
follow-redirects@1.15.9:
|
||||||
|
follow-redirects: private
|
||||||
|
form-data@4.0.2:
|
||||||
|
form-data: private
|
||||||
|
forwarded@0.2.0:
|
||||||
|
forwarded: private
|
||||||
|
fresh@2.0.0:
|
||||||
|
fresh: private
|
||||||
|
fsevents@2.3.3:
|
||||||
|
fsevents: private
|
||||||
|
function-bind@1.1.2:
|
||||||
|
function-bind: private
|
||||||
|
get-intrinsic@1.3.0:
|
||||||
|
get-intrinsic: private
|
||||||
|
get-proto@1.0.1:
|
||||||
|
get-proto: private
|
||||||
|
glob-parent@5.1.2:
|
||||||
|
glob-parent: private
|
||||||
|
gopd@1.2.0:
|
||||||
|
gopd: private
|
||||||
|
has-flag@3.0.0:
|
||||||
|
has-flag: private
|
||||||
|
has-symbols@1.1.0:
|
||||||
|
has-symbols: private
|
||||||
|
has-tostringtag@1.0.2:
|
||||||
|
has-tostringtag: private
|
||||||
|
hasown@2.0.2:
|
||||||
|
hasown: private
|
||||||
|
htmlparser2@9.1.0:
|
||||||
|
htmlparser2: private
|
||||||
|
http-errors@2.0.0:
|
||||||
|
http-errors: private
|
||||||
|
iconv-lite@0.6.3:
|
||||||
|
iconv-lite: private
|
||||||
|
ignore-by-default@1.0.1:
|
||||||
|
ignore-by-default: private
|
||||||
|
inherits@2.0.4:
|
||||||
|
inherits: private
|
||||||
|
ipaddr.js@1.9.1:
|
||||||
|
ipaddr.js: private
|
||||||
|
is-binary-path@2.1.0:
|
||||||
|
is-binary-path: private
|
||||||
|
is-extglob@2.1.1:
|
||||||
|
is-extglob: private
|
||||||
|
is-glob@4.0.3:
|
||||||
|
is-glob: private
|
||||||
|
is-number@7.0.0:
|
||||||
|
is-number: private
|
||||||
|
is-promise@4.0.0:
|
||||||
|
is-promise: private
|
||||||
|
math-intrinsics@1.1.0:
|
||||||
|
math-intrinsics: private
|
||||||
|
media-typer@1.1.0:
|
||||||
|
media-typer: private
|
||||||
|
merge-descriptors@2.0.0:
|
||||||
|
merge-descriptors: private
|
||||||
|
mime-db@1.54.0:
|
||||||
|
mime-db: private
|
||||||
|
mime-types@3.0.1:
|
||||||
|
mime-types: private
|
||||||
|
minimatch@3.1.2:
|
||||||
|
minimatch: private
|
||||||
|
ms@2.1.3:
|
||||||
|
ms: private
|
||||||
|
negotiator@1.0.0:
|
||||||
|
negotiator: private
|
||||||
|
normalize-path@3.0.0:
|
||||||
|
normalize-path: private
|
||||||
|
nth-check@2.1.1:
|
||||||
|
nth-check: private
|
||||||
|
object-assign@4.1.1:
|
||||||
|
object-assign: private
|
||||||
|
object-inspect@1.13.4:
|
||||||
|
object-inspect: private
|
||||||
|
on-finished@2.4.1:
|
||||||
|
on-finished: private
|
||||||
|
once@1.4.0:
|
||||||
|
once: private
|
||||||
|
parse5-htmlparser2-tree-adapter@7.1.0:
|
||||||
|
parse5-htmlparser2-tree-adapter: private
|
||||||
|
parse5-parser-stream@7.1.2:
|
||||||
|
parse5-parser-stream: private
|
||||||
|
parse5@7.3.0:
|
||||||
|
parse5: private
|
||||||
|
parseurl@1.3.3:
|
||||||
|
parseurl: private
|
||||||
|
path-to-regexp@8.2.0:
|
||||||
|
path-to-regexp: private
|
||||||
|
picomatch@2.3.1:
|
||||||
|
picomatch: private
|
||||||
|
proxy-addr@2.0.7:
|
||||||
|
proxy-addr: private
|
||||||
|
proxy-from-env@1.1.0:
|
||||||
|
proxy-from-env: private
|
||||||
|
pstree.remy@1.1.8:
|
||||||
|
pstree.remy: private
|
||||||
|
qs@6.14.0:
|
||||||
|
qs: private
|
||||||
|
range-parser@1.2.1:
|
||||||
|
range-parser: private
|
||||||
|
raw-body@3.0.0:
|
||||||
|
raw-body: private
|
||||||
|
readdirp@3.6.0:
|
||||||
|
readdirp: private
|
||||||
|
router@2.2.0:
|
||||||
|
router: private
|
||||||
|
safe-buffer@5.2.1:
|
||||||
|
safe-buffer: private
|
||||||
|
safer-buffer@2.1.2:
|
||||||
|
safer-buffer: private
|
||||||
|
semver@7.7.2:
|
||||||
|
semver: private
|
||||||
|
send@1.2.0:
|
||||||
|
send: private
|
||||||
|
serve-static@2.2.0:
|
||||||
|
serve-static: private
|
||||||
|
setprototypeof@1.2.0:
|
||||||
|
setprototypeof: private
|
||||||
|
side-channel-list@1.0.0:
|
||||||
|
side-channel-list: private
|
||||||
|
side-channel-map@1.0.1:
|
||||||
|
side-channel-map: private
|
||||||
|
side-channel-weakmap@1.0.2:
|
||||||
|
side-channel-weakmap: private
|
||||||
|
side-channel@1.1.0:
|
||||||
|
side-channel: private
|
||||||
|
simple-update-notifier@2.0.0:
|
||||||
|
simple-update-notifier: private
|
||||||
|
statuses@2.0.1:
|
||||||
|
statuses: private
|
||||||
|
supports-color@5.5.0:
|
||||||
|
supports-color: private
|
||||||
|
to-regex-range@5.0.1:
|
||||||
|
to-regex-range: private
|
||||||
|
toidentifier@1.0.1:
|
||||||
|
toidentifier: private
|
||||||
|
touch@3.1.1:
|
||||||
|
touch: private
|
||||||
|
type-is@2.0.1:
|
||||||
|
type-is: private
|
||||||
|
undefsafe@2.0.5:
|
||||||
|
undefsafe: private
|
||||||
|
undici@6.21.3:
|
||||||
|
undici: private
|
||||||
|
unpipe@1.0.0:
|
||||||
|
unpipe: private
|
||||||
|
vary@1.1.2:
|
||||||
|
vary: private
|
||||||
|
whatwg-encoding@3.1.1:
|
||||||
|
whatwg-encoding: private
|
||||||
|
whatwg-mimetype@4.0.0:
|
||||||
|
whatwg-mimetype: private
|
||||||
|
wrappy@1.0.2:
|
||||||
|
wrappy: private
|
||||||
|
included:
|
||||||
|
dependencies: true
|
||||||
|
devDependencies: true
|
||||||
|
optionalDependencies: true
|
||||||
|
injectedDeps: {}
|
||||||
|
layoutVersion: 5
|
||||||
|
nodeLinker: isolated
|
||||||
|
packageManager: pnpm@10.7.0
|
||||||
|
pendingBuilds: []
|
||||||
|
prunedAt: Fri, 23 May 2025 02:05:46 GMT
|
||||||
|
publicHoistPattern: []
|
||||||
|
registries:
|
||||||
|
default: https://registry.npmmirror.com/
|
||||||
|
skipped:
|
||||||
|
- fsevents@2.3.3
|
||||||
|
storeDir: D:\.pnpm-store\v10
|
||||||
|
virtualStoreDir: D:\Projects\minm-api\node_modules\.pnpm
|
||||||
|
virtualStoreDirMaxLength: 60
|
25
node_modules/.pnpm-workspace-state.json
generated
vendored
Normal file
25
node_modules/.pnpm-workspace-state.json
generated
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"lastValidatedTimestamp": 1747967100472,
|
||||||
|
"projects": {},
|
||||||
|
"pnpmfileExists": false,
|
||||||
|
"settings": {
|
||||||
|
"autoInstallPeers": true,
|
||||||
|
"dedupeDirectDeps": false,
|
||||||
|
"dedupeInjectedDeps": true,
|
||||||
|
"dedupePeerDependents": true,
|
||||||
|
"dev": true,
|
||||||
|
"excludeLinksFromLockfile": false,
|
||||||
|
"hoistPattern": [
|
||||||
|
"*"
|
||||||
|
],
|
||||||
|
"hoistWorkspacePackages": true,
|
||||||
|
"injectWorkspacePackages": false,
|
||||||
|
"linkWorkspacePackages": false,
|
||||||
|
"nodeLinker": "isolated",
|
||||||
|
"optional": true,
|
||||||
|
"preferWorkspacePackages": false,
|
||||||
|
"production": true,
|
||||||
|
"publicHoistPattern": []
|
||||||
|
},
|
||||||
|
"filteredInstall": false
|
||||||
|
}
|
250
node_modules/.pnpm/accepts@2.0.0/node_modules/accepts/HISTORY.md
generated
vendored
Normal file
250
node_modules/.pnpm/accepts@2.0.0/node_modules/accepts/HISTORY.md
generated
vendored
Normal file
@ -0,0 +1,250 @@
|
|||||||
|
2.0.0 / 2024-08-31
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Drop node <18 support
|
||||||
|
* deps: mime-types@^3.0.0
|
||||||
|
* deps: negotiator@^1.0.0
|
||||||
|
|
||||||
|
1.3.8 / 2022-02-02
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.1.34
|
||||||
|
- deps: mime-db@~1.51.0
|
||||||
|
* deps: negotiator@0.6.3
|
||||||
|
|
||||||
|
1.3.7 / 2019-04-29
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: negotiator@0.6.2
|
||||||
|
- Fix sorting charset, encoding, and language with extra parameters
|
||||||
|
|
||||||
|
1.3.6 / 2019-04-28
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.1.24
|
||||||
|
- deps: mime-db@~1.40.0
|
||||||
|
|
||||||
|
1.3.5 / 2018-02-28
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.1.18
|
||||||
|
- deps: mime-db@~1.33.0
|
||||||
|
|
||||||
|
1.3.4 / 2017-08-22
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.1.16
|
||||||
|
- deps: mime-db@~1.29.0
|
||||||
|
|
||||||
|
1.3.3 / 2016-05-02
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.1.11
|
||||||
|
- deps: mime-db@~1.23.0
|
||||||
|
* deps: negotiator@0.6.1
|
||||||
|
- perf: improve `Accept` parsing speed
|
||||||
|
- perf: improve `Accept-Charset` parsing speed
|
||||||
|
- perf: improve `Accept-Encoding` parsing speed
|
||||||
|
- perf: improve `Accept-Language` parsing speed
|
||||||
|
|
||||||
|
1.3.2 / 2016-03-08
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.1.10
|
||||||
|
- Fix extension of `application/dash+xml`
|
||||||
|
- Update primary extension for `audio/mp4`
|
||||||
|
- deps: mime-db@~1.22.0
|
||||||
|
|
||||||
|
1.3.1 / 2016-01-19
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.1.9
|
||||||
|
- deps: mime-db@~1.21.0
|
||||||
|
|
||||||
|
1.3.0 / 2015-09-29
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.1.7
|
||||||
|
- deps: mime-db@~1.19.0
|
||||||
|
* deps: negotiator@0.6.0
|
||||||
|
- Fix including type extensions in parameters in `Accept` parsing
|
||||||
|
- Fix parsing `Accept` parameters with quoted equals
|
||||||
|
- Fix parsing `Accept` parameters with quoted semicolons
|
||||||
|
- Lazy-load modules from main entry point
|
||||||
|
- perf: delay type concatenation until needed
|
||||||
|
- perf: enable strict mode
|
||||||
|
- perf: hoist regular expressions
|
||||||
|
- perf: remove closures getting spec properties
|
||||||
|
- perf: remove a closure from media type parsing
|
||||||
|
- perf: remove property delete from media type parsing
|
||||||
|
|
||||||
|
1.2.13 / 2015-09-06
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.1.6
|
||||||
|
- deps: mime-db@~1.18.0
|
||||||
|
|
||||||
|
1.2.12 / 2015-07-30
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.1.4
|
||||||
|
- deps: mime-db@~1.16.0
|
||||||
|
|
||||||
|
1.2.11 / 2015-07-16
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.1.3
|
||||||
|
- deps: mime-db@~1.15.0
|
||||||
|
|
||||||
|
1.2.10 / 2015-07-01
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.1.2
|
||||||
|
- deps: mime-db@~1.14.0
|
||||||
|
|
||||||
|
1.2.9 / 2015-06-08
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.1.1
|
||||||
|
- perf: fix deopt during mapping
|
||||||
|
|
||||||
|
1.2.8 / 2015-06-07
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.1.0
|
||||||
|
- deps: mime-db@~1.13.0
|
||||||
|
* perf: avoid argument reassignment & argument slice
|
||||||
|
* perf: avoid negotiator recursive construction
|
||||||
|
* perf: enable strict mode
|
||||||
|
* perf: remove unnecessary bitwise operator
|
||||||
|
|
||||||
|
1.2.7 / 2015-05-10
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: negotiator@0.5.3
|
||||||
|
- Fix media type parameter matching to be case-insensitive
|
||||||
|
|
||||||
|
1.2.6 / 2015-05-07
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.0.11
|
||||||
|
- deps: mime-db@~1.9.1
|
||||||
|
* deps: negotiator@0.5.2
|
||||||
|
- Fix comparing media types with quoted values
|
||||||
|
- Fix splitting media types with quoted commas
|
||||||
|
|
||||||
|
1.2.5 / 2015-03-13
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.0.10
|
||||||
|
- deps: mime-db@~1.8.0
|
||||||
|
|
||||||
|
1.2.4 / 2015-02-14
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Support Node.js 0.6
|
||||||
|
* deps: mime-types@~2.0.9
|
||||||
|
- deps: mime-db@~1.7.0
|
||||||
|
* deps: negotiator@0.5.1
|
||||||
|
- Fix preference sorting to be stable for long acceptable lists
|
||||||
|
|
||||||
|
1.2.3 / 2015-01-31
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.0.8
|
||||||
|
- deps: mime-db@~1.6.0
|
||||||
|
|
||||||
|
1.2.2 / 2014-12-30
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.0.7
|
||||||
|
- deps: mime-db@~1.5.0
|
||||||
|
|
||||||
|
1.2.1 / 2014-12-30
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.0.5
|
||||||
|
- deps: mime-db@~1.3.1
|
||||||
|
|
||||||
|
1.2.0 / 2014-12-19
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: negotiator@0.5.0
|
||||||
|
- Fix list return order when large accepted list
|
||||||
|
- Fix missing identity encoding when q=0 exists
|
||||||
|
- Remove dynamic building of Negotiator class
|
||||||
|
|
||||||
|
1.1.4 / 2014-12-10
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.0.4
|
||||||
|
- deps: mime-db@~1.3.0
|
||||||
|
|
||||||
|
1.1.3 / 2014-11-09
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.0.3
|
||||||
|
- deps: mime-db@~1.2.0
|
||||||
|
|
||||||
|
1.1.2 / 2014-10-14
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: negotiator@0.4.9
|
||||||
|
- Fix error when media type has invalid parameter
|
||||||
|
|
||||||
|
1.1.1 / 2014-09-28
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-types@~2.0.2
|
||||||
|
- deps: mime-db@~1.1.0
|
||||||
|
* deps: negotiator@0.4.8
|
||||||
|
- Fix all negotiations to be case-insensitive
|
||||||
|
- Stable sort preferences of same quality according to client order
|
||||||
|
|
||||||
|
1.1.0 / 2014-09-02
|
||||||
|
==================
|
||||||
|
|
||||||
|
* update `mime-types`
|
||||||
|
|
||||||
|
1.0.7 / 2014-07-04
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Fix wrong type returned from `type` when match after unknown extension
|
||||||
|
|
||||||
|
1.0.6 / 2014-06-24
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: negotiator@0.4.7
|
||||||
|
|
||||||
|
1.0.5 / 2014-06-20
|
||||||
|
==================
|
||||||
|
|
||||||
|
* fix crash when unknown extension given
|
||||||
|
|
||||||
|
1.0.4 / 2014-06-19
|
||||||
|
==================
|
||||||
|
|
||||||
|
* use `mime-types`
|
||||||
|
|
||||||
|
1.0.3 / 2014-06-11
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: negotiator@0.4.6
|
||||||
|
- Order by specificity when quality is the same
|
||||||
|
|
||||||
|
1.0.2 / 2014-05-29
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Fix interpretation when header not in request
|
||||||
|
* deps: pin negotiator@0.4.5
|
||||||
|
|
||||||
|
1.0.1 / 2014-01-18
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Identity encoding isn't always acceptable
|
||||||
|
* deps: negotiator@~0.4.0
|
||||||
|
|
||||||
|
1.0.0 / 2013-12-27
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Genesis
|
23
node_modules/.pnpm/accepts@2.0.0/node_modules/accepts/LICENSE
generated
vendored
Normal file
23
node_modules/.pnpm/accepts@2.0.0/node_modules/accepts/LICENSE
generated
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
(The MIT License)
|
||||||
|
|
||||||
|
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
||||||
|
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of this software and associated documentation files (the
|
||||||
|
'Software'), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||||
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||||
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||||
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
140
node_modules/.pnpm/accepts@2.0.0/node_modules/accepts/README.md
generated
vendored
Normal file
140
node_modules/.pnpm/accepts@2.0.0/node_modules/accepts/README.md
generated
vendored
Normal file
@ -0,0 +1,140 @@
|
|||||||
|
# accepts
|
||||||
|
|
||||||
|
[![NPM Version][npm-version-image]][npm-url]
|
||||||
|
[![NPM Downloads][npm-downloads-image]][npm-url]
|
||||||
|
[![Node.js Version][node-version-image]][node-version-url]
|
||||||
|
[![Build Status][github-actions-ci-image]][github-actions-ci-url]
|
||||||
|
[![Test Coverage][coveralls-image]][coveralls-url]
|
||||||
|
|
||||||
|
Higher level content negotiation based on [negotiator](https://www.npmjs.com/package/negotiator).
|
||||||
|
Extracted from [koa](https://www.npmjs.com/package/koa) for general use.
|
||||||
|
|
||||||
|
In addition to negotiator, it allows:
|
||||||
|
|
||||||
|
- Allows types as an array or arguments list, ie `(['text/html', 'application/json'])`
|
||||||
|
as well as `('text/html', 'application/json')`.
|
||||||
|
- Allows type shorthands such as `json`.
|
||||||
|
- Returns `false` when no types match
|
||||||
|
- Treats non-existent headers as `*`
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
This is a [Node.js](https://nodejs.org/en/) module available through the
|
||||||
|
[npm registry](https://www.npmjs.com/). Installation is done using the
|
||||||
|
[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ npm install accepts
|
||||||
|
```
|
||||||
|
|
||||||
|
## API
|
||||||
|
|
||||||
|
```js
|
||||||
|
var accepts = require('accepts')
|
||||||
|
```
|
||||||
|
|
||||||
|
### accepts(req)
|
||||||
|
|
||||||
|
Create a new `Accepts` object for the given `req`.
|
||||||
|
|
||||||
|
#### .charset(charsets)
|
||||||
|
|
||||||
|
Return the first accepted charset. If nothing in `charsets` is accepted,
|
||||||
|
then `false` is returned.
|
||||||
|
|
||||||
|
#### .charsets()
|
||||||
|
|
||||||
|
Return the charsets that the request accepts, in the order of the client's
|
||||||
|
preference (most preferred first).
|
||||||
|
|
||||||
|
#### .encoding(encodings)
|
||||||
|
|
||||||
|
Return the first accepted encoding. If nothing in `encodings` is accepted,
|
||||||
|
then `false` is returned.
|
||||||
|
|
||||||
|
#### .encodings()
|
||||||
|
|
||||||
|
Return the encodings that the request accepts, in the order of the client's
|
||||||
|
preference (most preferred first).
|
||||||
|
|
||||||
|
#### .language(languages)
|
||||||
|
|
||||||
|
Return the first accepted language. If nothing in `languages` is accepted,
|
||||||
|
then `false` is returned.
|
||||||
|
|
||||||
|
#### .languages()
|
||||||
|
|
||||||
|
Return the languages that the request accepts, in the order of the client's
|
||||||
|
preference (most preferred first).
|
||||||
|
|
||||||
|
#### .type(types)
|
||||||
|
|
||||||
|
Return the first accepted type (and it is returned as the same text as what
|
||||||
|
appears in the `types` array). If nothing in `types` is accepted, then `false`
|
||||||
|
is returned.
|
||||||
|
|
||||||
|
The `types` array can contain full MIME types or file extensions. Any value
|
||||||
|
that is not a full MIME type is passed to `require('mime-types').lookup`.
|
||||||
|
|
||||||
|
#### .types()
|
||||||
|
|
||||||
|
Return the types that the request accepts, in the order of the client's
|
||||||
|
preference (most preferred first).
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
### Simple type negotiation
|
||||||
|
|
||||||
|
This simple example shows how to use `accepts` to return a different typed
|
||||||
|
respond body based on what the client wants to accept. The server lists it's
|
||||||
|
preferences in order and will get back the best match between the client and
|
||||||
|
server.
|
||||||
|
|
||||||
|
```js
|
||||||
|
var accepts = require('accepts')
|
||||||
|
var http = require('http')
|
||||||
|
|
||||||
|
function app (req, res) {
|
||||||
|
var accept = accepts(req)
|
||||||
|
|
||||||
|
// the order of this list is significant; should be server preferred order
|
||||||
|
switch (accept.type(['json', 'html'])) {
|
||||||
|
case 'json':
|
||||||
|
res.setHeader('Content-Type', 'application/json')
|
||||||
|
res.write('{"hello":"world!"}')
|
||||||
|
break
|
||||||
|
case 'html':
|
||||||
|
res.setHeader('Content-Type', 'text/html')
|
||||||
|
res.write('<b>hello, world!</b>')
|
||||||
|
break
|
||||||
|
default:
|
||||||
|
// the fallback is text/plain, so no need to specify it above
|
||||||
|
res.setHeader('Content-Type', 'text/plain')
|
||||||
|
res.write('hello, world!')
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
res.end()
|
||||||
|
}
|
||||||
|
|
||||||
|
http.createServer(app).listen(3000)
|
||||||
|
```
|
||||||
|
|
||||||
|
You can test this out with the cURL program:
|
||||||
|
```sh
|
||||||
|
curl -I -H'Accept: text/html' http://localhost:3000/
|
||||||
|
```
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
[MIT](LICENSE)
|
||||||
|
|
||||||
|
[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/accepts/master
|
||||||
|
[coveralls-url]: https://coveralls.io/r/jshttp/accepts?branch=master
|
||||||
|
[github-actions-ci-image]: https://badgen.net/github/checks/jshttp/accepts/master?label=ci
|
||||||
|
[github-actions-ci-url]: https://github.com/jshttp/accepts/actions/workflows/ci.yml
|
||||||
|
[node-version-image]: https://badgen.net/npm/node/accepts
|
||||||
|
[node-version-url]: https://nodejs.org/en/download
|
||||||
|
[npm-downloads-image]: https://badgen.net/npm/dm/accepts
|
||||||
|
[npm-url]: https://npmjs.org/package/accepts
|
||||||
|
[npm-version-image]: https://badgen.net/npm/v/accepts
|
238
node_modules/.pnpm/accepts@2.0.0/node_modules/accepts/index.js
generated
vendored
Normal file
238
node_modules/.pnpm/accepts@2.0.0/node_modules/accepts/index.js
generated
vendored
Normal file
@ -0,0 +1,238 @@
|
|||||||
|
/*!
|
||||||
|
* accepts
|
||||||
|
* Copyright(c) 2014 Jonathan Ong
|
||||||
|
* Copyright(c) 2015 Douglas Christopher Wilson
|
||||||
|
* MIT Licensed
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module dependencies.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
var Negotiator = require('negotiator')
|
||||||
|
var mime = require('mime-types')
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module exports.
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
module.exports = Accepts
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new Accepts object for the given req.
|
||||||
|
*
|
||||||
|
* @param {object} req
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
function Accepts (req) {
|
||||||
|
if (!(this instanceof Accepts)) {
|
||||||
|
return new Accepts(req)
|
||||||
|
}
|
||||||
|
|
||||||
|
this.headers = req.headers
|
||||||
|
this.negotiator = new Negotiator(req)
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if the given `type(s)` is acceptable, returning
|
||||||
|
* the best match when true, otherwise `undefined`, in which
|
||||||
|
* case you should respond with 406 "Not Acceptable".
|
||||||
|
*
|
||||||
|
* The `type` value may be a single mime type string
|
||||||
|
* such as "application/json", the extension name
|
||||||
|
* such as "json" or an array `["json", "html", "text/plain"]`. When a list
|
||||||
|
* or array is given the _best_ match, if any is returned.
|
||||||
|
*
|
||||||
|
* Examples:
|
||||||
|
*
|
||||||
|
* // Accept: text/html
|
||||||
|
* this.types('html');
|
||||||
|
* // => "html"
|
||||||
|
*
|
||||||
|
* // Accept: text/*, application/json
|
||||||
|
* this.types('html');
|
||||||
|
* // => "html"
|
||||||
|
* this.types('text/html');
|
||||||
|
* // => "text/html"
|
||||||
|
* this.types('json', 'text');
|
||||||
|
* // => "json"
|
||||||
|
* this.types('application/json');
|
||||||
|
* // => "application/json"
|
||||||
|
*
|
||||||
|
* // Accept: text/*, application/json
|
||||||
|
* this.types('image/png');
|
||||||
|
* this.types('png');
|
||||||
|
* // => undefined
|
||||||
|
*
|
||||||
|
* // Accept: text/*;q=.5, application/json
|
||||||
|
* this.types(['html', 'json']);
|
||||||
|
* this.types('html', 'json');
|
||||||
|
* // => "json"
|
||||||
|
*
|
||||||
|
* @param {String|Array} types...
|
||||||
|
* @return {String|Array|Boolean}
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
Accepts.prototype.type =
|
||||||
|
Accepts.prototype.types = function (types_) {
|
||||||
|
var types = types_
|
||||||
|
|
||||||
|
// support flattened arguments
|
||||||
|
if (types && !Array.isArray(types)) {
|
||||||
|
types = new Array(arguments.length)
|
||||||
|
for (var i = 0; i < types.length; i++) {
|
||||||
|
types[i] = arguments[i]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// no types, return all requested types
|
||||||
|
if (!types || types.length === 0) {
|
||||||
|
return this.negotiator.mediaTypes()
|
||||||
|
}
|
||||||
|
|
||||||
|
// no accept header, return first given type
|
||||||
|
if (!this.headers.accept) {
|
||||||
|
return types[0]
|
||||||
|
}
|
||||||
|
|
||||||
|
var mimes = types.map(extToMime)
|
||||||
|
var accepts = this.negotiator.mediaTypes(mimes.filter(validMime))
|
||||||
|
var first = accepts[0]
|
||||||
|
|
||||||
|
return first
|
||||||
|
? types[mimes.indexOf(first)]
|
||||||
|
: false
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return accepted encodings or best fit based on `encodings`.
|
||||||
|
*
|
||||||
|
* Given `Accept-Encoding: gzip, deflate`
|
||||||
|
* an array sorted by quality is returned:
|
||||||
|
*
|
||||||
|
* ['gzip', 'deflate']
|
||||||
|
*
|
||||||
|
* @param {String|Array} encodings...
|
||||||
|
* @return {String|Array}
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
Accepts.prototype.encoding =
|
||||||
|
Accepts.prototype.encodings = function (encodings_) {
|
||||||
|
var encodings = encodings_
|
||||||
|
|
||||||
|
// support flattened arguments
|
||||||
|
if (encodings && !Array.isArray(encodings)) {
|
||||||
|
encodings = new Array(arguments.length)
|
||||||
|
for (var i = 0; i < encodings.length; i++) {
|
||||||
|
encodings[i] = arguments[i]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// no encodings, return all requested encodings
|
||||||
|
if (!encodings || encodings.length === 0) {
|
||||||
|
return this.negotiator.encodings()
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.negotiator.encodings(encodings)[0] || false
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return accepted charsets or best fit based on `charsets`.
|
||||||
|
*
|
||||||
|
* Given `Accept-Charset: utf-8, iso-8859-1;q=0.2, utf-7;q=0.5`
|
||||||
|
* an array sorted by quality is returned:
|
||||||
|
*
|
||||||
|
* ['utf-8', 'utf-7', 'iso-8859-1']
|
||||||
|
*
|
||||||
|
* @param {String|Array} charsets...
|
||||||
|
* @return {String|Array}
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
Accepts.prototype.charset =
|
||||||
|
Accepts.prototype.charsets = function (charsets_) {
|
||||||
|
var charsets = charsets_
|
||||||
|
|
||||||
|
// support flattened arguments
|
||||||
|
if (charsets && !Array.isArray(charsets)) {
|
||||||
|
charsets = new Array(arguments.length)
|
||||||
|
for (var i = 0; i < charsets.length; i++) {
|
||||||
|
charsets[i] = arguments[i]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// no charsets, return all requested charsets
|
||||||
|
if (!charsets || charsets.length === 0) {
|
||||||
|
return this.negotiator.charsets()
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.negotiator.charsets(charsets)[0] || false
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return accepted languages or best fit based on `langs`.
|
||||||
|
*
|
||||||
|
* Given `Accept-Language: en;q=0.8, es, pt`
|
||||||
|
* an array sorted by quality is returned:
|
||||||
|
*
|
||||||
|
* ['es', 'pt', 'en']
|
||||||
|
*
|
||||||
|
* @param {String|Array} langs...
|
||||||
|
* @return {Array|String}
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
Accepts.prototype.lang =
|
||||||
|
Accepts.prototype.langs =
|
||||||
|
Accepts.prototype.language =
|
||||||
|
Accepts.prototype.languages = function (languages_) {
|
||||||
|
var languages = languages_
|
||||||
|
|
||||||
|
// support flattened arguments
|
||||||
|
if (languages && !Array.isArray(languages)) {
|
||||||
|
languages = new Array(arguments.length)
|
||||||
|
for (var i = 0; i < languages.length; i++) {
|
||||||
|
languages[i] = arguments[i]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// no languages, return all requested languages
|
||||||
|
if (!languages || languages.length === 0) {
|
||||||
|
return this.negotiator.languages()
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.negotiator.languages(languages)[0] || false
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert extnames to mime.
|
||||||
|
*
|
||||||
|
* @param {String} type
|
||||||
|
* @return {String}
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function extToMime (type) {
|
||||||
|
return type.indexOf('/') === -1
|
||||||
|
? mime.lookup(type)
|
||||||
|
: type
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if mime is valid.
|
||||||
|
*
|
||||||
|
* @param {String} type
|
||||||
|
* @return {Boolean}
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function validMime (type) {
|
||||||
|
return typeof type === 'string'
|
||||||
|
}
|
47
node_modules/.pnpm/accepts@2.0.0/node_modules/accepts/package.json
generated
vendored
Normal file
47
node_modules/.pnpm/accepts@2.0.0/node_modules/accepts/package.json
generated
vendored
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"name": "accepts",
|
||||||
|
"description": "Higher-level content negotiation",
|
||||||
|
"version": "2.0.0",
|
||||||
|
"contributors": [
|
||||||
|
"Douglas Christopher Wilson <doug@somethingdoug.com>",
|
||||||
|
"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
|
||||||
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"repository": "jshttp/accepts",
|
||||||
|
"dependencies": {
|
||||||
|
"mime-types": "^3.0.0",
|
||||||
|
"negotiator": "^1.0.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"deep-equal": "1.0.1",
|
||||||
|
"eslint": "7.32.0",
|
||||||
|
"eslint-config-standard": "14.1.1",
|
||||||
|
"eslint-plugin-import": "2.25.4",
|
||||||
|
"eslint-plugin-markdown": "2.2.1",
|
||||||
|
"eslint-plugin-node": "11.1.0",
|
||||||
|
"eslint-plugin-promise": "4.3.1",
|
||||||
|
"eslint-plugin-standard": "4.1.0",
|
||||||
|
"mocha": "9.2.0",
|
||||||
|
"nyc": "15.1.0"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"LICENSE",
|
||||||
|
"HISTORY.md",
|
||||||
|
"index.js"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 0.6"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"lint": "eslint .",
|
||||||
|
"test": "mocha --reporter spec --check-leaks --bail test/",
|
||||||
|
"test-ci": "nyc --reporter=lcov --reporter=text npm test",
|
||||||
|
"test-cov": "nyc --reporter=html --reporter=text npm test"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"content",
|
||||||
|
"negotiation",
|
||||||
|
"accept",
|
||||||
|
"accepts"
|
||||||
|
]
|
||||||
|
}
|
421
node_modules/.pnpm/accepts@2.0.0/node_modules/mime-types/HISTORY.md
generated
vendored
Normal file
421
node_modules/.pnpm/accepts@2.0.0/node_modules/mime-types/HISTORY.md
generated
vendored
Normal file
@ -0,0 +1,421 @@
|
|||||||
|
3.0.1 / 2025-03-26
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@1.54.0
|
||||||
|
|
||||||
|
3.0.0 / 2024-08-31
|
||||||
|
===================
|
||||||
|
|
||||||
|
* Drop support for node <18
|
||||||
|
* deps: mime-db@1.53.0
|
||||||
|
* resolve extension conflicts with mime-score (#119)
|
||||||
|
* asc -> application/pgp-signature is now application/pgp-keys
|
||||||
|
* mpp -> application/vnd.ms-project is now application/dash-patch+xml
|
||||||
|
* ac -> application/vnd.nokia.n-gage.ac+xml is now application/pkix-attr-cert
|
||||||
|
* bdoc -> application/x-bdoc is now application/bdoc
|
||||||
|
* wmz -> application/x-msmetafile is now application/x-ms-wmz
|
||||||
|
* xsl -> application/xslt+xml is now application/xml
|
||||||
|
* wav -> audio/wave is now audio/wav
|
||||||
|
* rtf -> text/rtf is now application/rtf
|
||||||
|
* xml -> text/xml is now application/xml
|
||||||
|
* mp4 -> video/mp4 is now application/mp4
|
||||||
|
* mpg4 -> video/mp4 is now application/mp4
|
||||||
|
|
||||||
|
|
||||||
|
2.1.35 / 2022-03-12
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@1.52.0
|
||||||
|
- Add extensions from IANA for more `image/*` types
|
||||||
|
- Add extension `.asc` to `application/pgp-keys`
|
||||||
|
- Add extensions to various XML types
|
||||||
|
- Add new upstream MIME types
|
||||||
|
|
||||||
|
2.1.34 / 2021-11-08
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@1.51.0
|
||||||
|
- Add new upstream MIME types
|
||||||
|
|
||||||
|
2.1.33 / 2021-10-01
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@1.50.0
|
||||||
|
- Add deprecated iWorks mime types and extensions
|
||||||
|
- Add new upstream MIME types
|
||||||
|
|
||||||
|
2.1.32 / 2021-07-27
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@1.49.0
|
||||||
|
- Add extension `.trig` to `application/trig`
|
||||||
|
- Add new upstream MIME types
|
||||||
|
|
||||||
|
2.1.31 / 2021-06-01
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@1.48.0
|
||||||
|
- Add extension `.mvt` to `application/vnd.mapbox-vector-tile`
|
||||||
|
- Add new upstream MIME types
|
||||||
|
|
||||||
|
2.1.30 / 2021-04-02
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@1.47.0
|
||||||
|
- Add extension `.amr` to `audio/amr`
|
||||||
|
- Remove ambigious extensions from IANA for `application/*+xml` types
|
||||||
|
- Update primary extension to `.es` for `application/ecmascript`
|
||||||
|
|
||||||
|
2.1.29 / 2021-02-17
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@1.46.0
|
||||||
|
- Add extension `.amr` to `audio/amr`
|
||||||
|
- Add extension `.m4s` to `video/iso.segment`
|
||||||
|
- Add extension `.opus` to `audio/ogg`
|
||||||
|
- Add new upstream MIME types
|
||||||
|
|
||||||
|
2.1.28 / 2021-01-01
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@1.45.0
|
||||||
|
- Add `application/ubjson` with extension `.ubj`
|
||||||
|
- Add `image/avif` with extension `.avif`
|
||||||
|
- Add `image/ktx2` with extension `.ktx2`
|
||||||
|
- Add extension `.dbf` to `application/vnd.dbf`
|
||||||
|
- Add extension `.rar` to `application/vnd.rar`
|
||||||
|
- Add extension `.td` to `application/urc-targetdesc+xml`
|
||||||
|
- Add new upstream MIME types
|
||||||
|
- Fix extension of `application/vnd.apple.keynote` to be `.key`
|
||||||
|
|
||||||
|
2.1.27 / 2020-04-23
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@1.44.0
|
||||||
|
- Add charsets from IANA
|
||||||
|
- Add extension `.cjs` to `application/node`
|
||||||
|
- Add new upstream MIME types
|
||||||
|
|
||||||
|
2.1.26 / 2020-01-05
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@1.43.0
|
||||||
|
- Add `application/x-keepass2` with extension `.kdbx`
|
||||||
|
- Add extension `.mxmf` to `audio/mobile-xmf`
|
||||||
|
- Add extensions from IANA for `application/*+xml` types
|
||||||
|
- Add new upstream MIME types
|
||||||
|
|
||||||
|
2.1.25 / 2019-11-12
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@1.42.0
|
||||||
|
- Add new upstream MIME types
|
||||||
|
- Add `application/toml` with extension `.toml`
|
||||||
|
- Add `image/vnd.ms-dds` with extension `.dds`
|
||||||
|
|
||||||
|
2.1.24 / 2019-04-20
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@1.40.0
|
||||||
|
- Add extensions from IANA for `model/*` types
|
||||||
|
- Add `text/mdx` with extension `.mdx`
|
||||||
|
|
||||||
|
2.1.23 / 2019-04-17
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.39.0
|
||||||
|
- Add extensions `.siv` and `.sieve` to `application/sieve`
|
||||||
|
- Add new upstream MIME types
|
||||||
|
|
||||||
|
2.1.22 / 2019-02-14
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.38.0
|
||||||
|
- Add extension `.nq` to `application/n-quads`
|
||||||
|
- Add extension `.nt` to `application/n-triples`
|
||||||
|
- Add new upstream MIME types
|
||||||
|
|
||||||
|
2.1.21 / 2018-10-19
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.37.0
|
||||||
|
- Add extensions to HEIC image types
|
||||||
|
- Add new upstream MIME types
|
||||||
|
|
||||||
|
2.1.20 / 2018-08-26
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.36.0
|
||||||
|
- Add Apple file extensions from IANA
|
||||||
|
- Add extensions from IANA for `image/*` types
|
||||||
|
- Add new upstream MIME types
|
||||||
|
|
||||||
|
2.1.19 / 2018-07-17
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.35.0
|
||||||
|
- Add extension `.csl` to `application/vnd.citationstyles.style+xml`
|
||||||
|
- Add extension `.es` to `application/ecmascript`
|
||||||
|
- Add extension `.owl` to `application/rdf+xml`
|
||||||
|
- Add new upstream MIME types
|
||||||
|
- Add UTF-8 as default charset for `text/turtle`
|
||||||
|
|
||||||
|
2.1.18 / 2018-02-16
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.33.0
|
||||||
|
- Add `application/raml+yaml` with extension `.raml`
|
||||||
|
- Add `application/wasm` with extension `.wasm`
|
||||||
|
- Add `text/shex` with extension `.shex`
|
||||||
|
- Add extensions for JPEG-2000 images
|
||||||
|
- Add extensions from IANA for `message/*` types
|
||||||
|
- Add new upstream MIME types
|
||||||
|
- Update font MIME types
|
||||||
|
- Update `text/hjson` to registered `application/hjson`
|
||||||
|
|
||||||
|
2.1.17 / 2017-09-01
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.30.0
|
||||||
|
- Add `application/vnd.ms-outlook`
|
||||||
|
- Add `application/x-arj`
|
||||||
|
- Add extension `.mjs` to `application/javascript`
|
||||||
|
- Add glTF types and extensions
|
||||||
|
- Add new upstream MIME types
|
||||||
|
- Add `text/x-org`
|
||||||
|
- Add VirtualBox MIME types
|
||||||
|
- Fix `source` records for `video/*` types that are IANA
|
||||||
|
- Update `font/opentype` to registered `font/otf`
|
||||||
|
|
||||||
|
2.1.16 / 2017-07-24
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.29.0
|
||||||
|
- Add `application/fido.trusted-apps+json`
|
||||||
|
- Add extension `.wadl` to `application/vnd.sun.wadl+xml`
|
||||||
|
- Add extension `.gz` to `application/gzip`
|
||||||
|
- Add new upstream MIME types
|
||||||
|
- Update extensions `.md` and `.markdown` to be `text/markdown`
|
||||||
|
|
||||||
|
2.1.15 / 2017-03-23
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.27.0
|
||||||
|
- Add new mime types
|
||||||
|
- Add `image/apng`
|
||||||
|
|
||||||
|
2.1.14 / 2017-01-14
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.26.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.1.13 / 2016-11-18
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.25.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.1.12 / 2016-09-18
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.24.0
|
||||||
|
- Add new mime types
|
||||||
|
- Add `audio/mp3`
|
||||||
|
|
||||||
|
2.1.11 / 2016-05-01
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.23.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.1.10 / 2016-02-15
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.22.0
|
||||||
|
- Add new mime types
|
||||||
|
- Fix extension of `application/dash+xml`
|
||||||
|
- Update primary extension for `audio/mp4`
|
||||||
|
|
||||||
|
2.1.9 / 2016-01-06
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.21.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.1.8 / 2015-11-30
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.20.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.1.7 / 2015-09-20
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.19.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.1.6 / 2015-09-03
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.18.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.1.5 / 2015-08-20
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.17.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.1.4 / 2015-07-30
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.16.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.1.3 / 2015-07-13
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.15.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.1.2 / 2015-06-25
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.14.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.1.1 / 2015-06-08
|
||||||
|
==================
|
||||||
|
|
||||||
|
* perf: fix deopt during mapping
|
||||||
|
|
||||||
|
2.1.0 / 2015-06-07
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Fix incorrectly treating extension-less file name as extension
|
||||||
|
- i.e. `'path/to/json'` will no longer return `application/json`
|
||||||
|
* Fix `.charset(type)` to accept parameters
|
||||||
|
* Fix `.charset(type)` to match case-insensitive
|
||||||
|
* Improve generation of extension to MIME mapping
|
||||||
|
* Refactor internals for readability and no argument reassignment
|
||||||
|
* Prefer `application/*` MIME types from the same source
|
||||||
|
* Prefer any type over `application/octet-stream`
|
||||||
|
* deps: mime-db@~1.13.0
|
||||||
|
- Add nginx as a source
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.0.14 / 2015-06-06
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.12.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.0.13 / 2015-05-31
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.11.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.0.12 / 2015-05-19
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.10.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.0.11 / 2015-05-05
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.9.1
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.0.10 / 2015-03-13
|
||||||
|
===================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.8.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.0.9 / 2015-02-09
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.7.0
|
||||||
|
- Add new mime types
|
||||||
|
- Community extensions ownership transferred from `node-mime`
|
||||||
|
|
||||||
|
2.0.8 / 2015-01-29
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.6.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.0.7 / 2014-12-30
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.5.0
|
||||||
|
- Add new mime types
|
||||||
|
- Fix various invalid MIME type entries
|
||||||
|
|
||||||
|
2.0.6 / 2014-12-30
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.4.0
|
||||||
|
- Add new mime types
|
||||||
|
- Fix various invalid MIME type entries
|
||||||
|
- Remove example template MIME types
|
||||||
|
|
||||||
|
2.0.5 / 2014-12-29
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.3.1
|
||||||
|
- Fix missing extensions
|
||||||
|
|
||||||
|
2.0.4 / 2014-12-10
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.3.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.0.3 / 2014-11-09
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.2.0
|
||||||
|
- Add new mime types
|
||||||
|
|
||||||
|
2.0.2 / 2014-09-28
|
||||||
|
==================
|
||||||
|
|
||||||
|
* deps: mime-db@~1.1.0
|
||||||
|
- Add new mime types
|
||||||
|
- Update charsets
|
||||||
|
|
||||||
|
2.0.1 / 2014-09-07
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Support Node.js 0.6
|
||||||
|
|
||||||
|
2.0.0 / 2014-09-02
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Use `mime-db`
|
||||||
|
* Remove `.define()`
|
||||||
|
|
||||||
|
1.0.2 / 2014-08-04
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Set charset=utf-8 for `text/javascript`
|
||||||
|
|
||||||
|
1.0.1 / 2014-06-24
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Add `text/jsx` type
|
||||||
|
|
||||||
|
1.0.0 / 2014-05-12
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Return `false` for unknown types
|
||||||
|
* Set charset=utf-8 for `application/json`
|
||||||
|
|
||||||
|
0.1.0 / 2014-05-02
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Initial release
|
23
node_modules/.pnpm/accepts@2.0.0/node_modules/mime-types/LICENSE
generated
vendored
Normal file
23
node_modules/.pnpm/accepts@2.0.0/node_modules/mime-types/LICENSE
generated
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
(The MIT License)
|
||||||
|
|
||||||
|
Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>
|
||||||
|
Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of this software and associated documentation files (the
|
||||||
|
'Software'), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||||
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||||
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||||
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
126
node_modules/.pnpm/accepts@2.0.0/node_modules/mime-types/README.md
generated
vendored
Normal file
126
node_modules/.pnpm/accepts@2.0.0/node_modules/mime-types/README.md
generated
vendored
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
# mime-types
|
||||||
|
|
||||||
|
[![NPM Version][npm-version-image]][npm-url]
|
||||||
|
[![NPM Downloads][npm-downloads-image]][npm-url]
|
||||||
|
[![Node.js Version][node-version-image]][node-version-url]
|
||||||
|
[![Build Status][ci-image]][ci-url]
|
||||||
|
[![Test Coverage][coveralls-image]][coveralls-url]
|
||||||
|
|
||||||
|
The ultimate javascript content-type utility.
|
||||||
|
|
||||||
|
Similar to [the `mime@1.x` module](https://www.npmjs.com/package/mime), except:
|
||||||
|
|
||||||
|
- __No fallbacks.__ Instead of naively returning the first available type,
|
||||||
|
`mime-types` simply returns `false`, so do
|
||||||
|
`var type = mime.lookup('unrecognized') || 'application/octet-stream'`.
|
||||||
|
- No `new Mime()` business, so you could do `var lookup = require('mime-types').lookup`.
|
||||||
|
- No `.define()` functionality
|
||||||
|
- Bug fixes for `.lookup(path)`
|
||||||
|
|
||||||
|
Otherwise, the API is compatible with `mime` 1.x.
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
This is a [Node.js](https://nodejs.org/en/) module available through the
|
||||||
|
[npm registry](https://www.npmjs.com/). Installation is done using the
|
||||||
|
[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ npm install mime-types
|
||||||
|
```
|
||||||
|
|
||||||
|
## Note on MIME Type Data and Semver
|
||||||
|
|
||||||
|
This package considers the programmatic api as the semver compatibility. Additionally, the package which provides the MIME data
|
||||||
|
for this package (`mime-db`) *also* considers it's programmatic api as the semver contract. This means the MIME type resolution is *not* considered
|
||||||
|
in the semver bumps.
|
||||||
|
|
||||||
|
In the past the version of `mime-db` was pinned to give two decision points when adopting MIME data changes. This is no longer true. We still update the
|
||||||
|
`mime-db` package here as a `minor` release when necessary, but will use a `^` range going forward. This means that if you want to pin your `mime-db` data
|
||||||
|
you will need to do it in your application. While this expectation was not set in docs until now, it is how the pacakge operated, so we do not feel this is
|
||||||
|
a breaking change.
|
||||||
|
|
||||||
|
If you wish to pin your `mime-db` version you can do that with overrides via your package manager of choice. See their documentation for how to correctly configure that.
|
||||||
|
|
||||||
|
## Adding Types
|
||||||
|
|
||||||
|
All mime types are based on [mime-db](https://www.npmjs.com/package/mime-db),
|
||||||
|
so open a PR there if you'd like to add mime types.
|
||||||
|
|
||||||
|
## API
|
||||||
|
|
||||||
|
```js
|
||||||
|
var mime = require('mime-types')
|
||||||
|
```
|
||||||
|
|
||||||
|
All functions return `false` if input is invalid or not found.
|
||||||
|
|
||||||
|
### mime.lookup(path)
|
||||||
|
|
||||||
|
Lookup the content-type associated with a file.
|
||||||
|
|
||||||
|
```js
|
||||||
|
mime.lookup('json') // 'application/json'
|
||||||
|
mime.lookup('.md') // 'text/markdown'
|
||||||
|
mime.lookup('file.html') // 'text/html'
|
||||||
|
mime.lookup('folder/file.js') // 'application/javascript'
|
||||||
|
mime.lookup('folder/.htaccess') // false
|
||||||
|
|
||||||
|
mime.lookup('cats') // false
|
||||||
|
```
|
||||||
|
|
||||||
|
### mime.contentType(type)
|
||||||
|
|
||||||
|
Create a full content-type header given a content-type or extension.
|
||||||
|
When given an extension, `mime.lookup` is used to get the matching
|
||||||
|
content-type, otherwise the given content-type is used. Then if the
|
||||||
|
content-type does not already have a `charset` parameter, `mime.charset`
|
||||||
|
is used to get the default charset and add to the returned content-type.
|
||||||
|
|
||||||
|
```js
|
||||||
|
mime.contentType('markdown') // 'text/x-markdown; charset=utf-8'
|
||||||
|
mime.contentType('file.json') // 'application/json; charset=utf-8'
|
||||||
|
mime.contentType('text/html') // 'text/html; charset=utf-8'
|
||||||
|
mime.contentType('text/html; charset=iso-8859-1') // 'text/html; charset=iso-8859-1'
|
||||||
|
|
||||||
|
// from a full path
|
||||||
|
mime.contentType(path.extname('/path/to/file.json')) // 'application/json; charset=utf-8'
|
||||||
|
```
|
||||||
|
|
||||||
|
### mime.extension(type)
|
||||||
|
|
||||||
|
Get the default extension for a content-type.
|
||||||
|
|
||||||
|
```js
|
||||||
|
mime.extension('application/octet-stream') // 'bin'
|
||||||
|
```
|
||||||
|
|
||||||
|
### mime.charset(type)
|
||||||
|
|
||||||
|
Lookup the implied default charset of a content-type.
|
||||||
|
|
||||||
|
```js
|
||||||
|
mime.charset('text/markdown') // 'UTF-8'
|
||||||
|
```
|
||||||
|
|
||||||
|
### var type = mime.types[extension]
|
||||||
|
|
||||||
|
A map of content-types by extension.
|
||||||
|
|
||||||
|
### [extensions...] = mime.extensions[type]
|
||||||
|
|
||||||
|
A map of extensions by content-type.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
[MIT](LICENSE)
|
||||||
|
|
||||||
|
[ci-image]: https://badgen.net/github/checks/jshttp/mime-types/master?label=ci
|
||||||
|
[ci-url]: https://github.com/jshttp/mime-types/actions/workflows/ci.yml
|
||||||
|
[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/mime-types/master
|
||||||
|
[coveralls-url]: https://coveralls.io/r/jshttp/mime-types?branch=master
|
||||||
|
[node-version-image]: https://badgen.net/npm/node/mime-types
|
||||||
|
[node-version-url]: https://nodejs.org/en/download
|
||||||
|
[npm-downloads-image]: https://badgen.net/npm/dm/mime-types
|
||||||
|
[npm-url]: https://npmjs.org/package/mime-types
|
||||||
|
[npm-version-image]: https://badgen.net/npm/v/mime-types
|
211
node_modules/.pnpm/accepts@2.0.0/node_modules/mime-types/index.js
generated
vendored
Normal file
211
node_modules/.pnpm/accepts@2.0.0/node_modules/mime-types/index.js
generated
vendored
Normal file
@ -0,0 +1,211 @@
|
|||||||
|
/*!
|
||||||
|
* mime-types
|
||||||
|
* Copyright(c) 2014 Jonathan Ong
|
||||||
|
* Copyright(c) 2015 Douglas Christopher Wilson
|
||||||
|
* MIT Licensed
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module dependencies.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
var db = require('mime-db')
|
||||||
|
var extname = require('path').extname
|
||||||
|
var mimeScore = require('./mimeScore')
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module variables.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
var EXTRACT_TYPE_REGEXP = /^\s*([^;\s]*)(?:;|\s|$)/
|
||||||
|
var TEXT_TYPE_REGEXP = /^text\//i
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module exports.
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
exports.charset = charset
|
||||||
|
exports.charsets = { lookup: charset }
|
||||||
|
exports.contentType = contentType
|
||||||
|
exports.extension = extension
|
||||||
|
exports.extensions = Object.create(null)
|
||||||
|
exports.lookup = lookup
|
||||||
|
exports.types = Object.create(null)
|
||||||
|
exports._extensionConflicts = []
|
||||||
|
|
||||||
|
// Populate the extensions/types maps
|
||||||
|
populateMaps(exports.extensions, exports.types)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the default charset for a MIME type.
|
||||||
|
*
|
||||||
|
* @param {string} type
|
||||||
|
* @return {boolean|string}
|
||||||
|
*/
|
||||||
|
|
||||||
|
function charset (type) {
|
||||||
|
if (!type || typeof type !== 'string') {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: use media-typer
|
||||||
|
var match = EXTRACT_TYPE_REGEXP.exec(type)
|
||||||
|
var mime = match && db[match[1].toLowerCase()]
|
||||||
|
|
||||||
|
if (mime && mime.charset) {
|
||||||
|
return mime.charset
|
||||||
|
}
|
||||||
|
|
||||||
|
// default text/* to utf-8
|
||||||
|
if (match && TEXT_TYPE_REGEXP.test(match[1])) {
|
||||||
|
return 'UTF-8'
|
||||||
|
}
|
||||||
|
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a full Content-Type header given a MIME type or extension.
|
||||||
|
*
|
||||||
|
* @param {string} str
|
||||||
|
* @return {boolean|string}
|
||||||
|
*/
|
||||||
|
|
||||||
|
function contentType (str) {
|
||||||
|
// TODO: should this even be in this module?
|
||||||
|
if (!str || typeof str !== 'string') {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
var mime = str.indexOf('/') === -1 ? exports.lookup(str) : str
|
||||||
|
|
||||||
|
if (!mime) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: use content-type or other module
|
||||||
|
if (mime.indexOf('charset') === -1) {
|
||||||
|
var charset = exports.charset(mime)
|
||||||
|
if (charset) mime += '; charset=' + charset.toLowerCase()
|
||||||
|
}
|
||||||
|
|
||||||
|
return mime
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the default extension for a MIME type.
|
||||||
|
*
|
||||||
|
* @param {string} type
|
||||||
|
* @return {boolean|string}
|
||||||
|
*/
|
||||||
|
|
||||||
|
function extension (type) {
|
||||||
|
if (!type || typeof type !== 'string') {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: use media-typer
|
||||||
|
var match = EXTRACT_TYPE_REGEXP.exec(type)
|
||||||
|
|
||||||
|
// get extensions
|
||||||
|
var exts = match && exports.extensions[match[1].toLowerCase()]
|
||||||
|
|
||||||
|
if (!exts || !exts.length) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
return exts[0]
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lookup the MIME type for a file path/extension.
|
||||||
|
*
|
||||||
|
* @param {string} path
|
||||||
|
* @return {boolean|string}
|
||||||
|
*/
|
||||||
|
|
||||||
|
function lookup (path) {
|
||||||
|
if (!path || typeof path !== 'string') {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
// get the extension ("ext" or ".ext" or full path)
|
||||||
|
var extension = extname('x.' + path)
|
||||||
|
.toLowerCase()
|
||||||
|
.slice(1)
|
||||||
|
|
||||||
|
if (!extension) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
return exports.types[extension] || false
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Populate the extensions and types maps.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function populateMaps (extensions, types) {
|
||||||
|
Object.keys(db).forEach(function forEachMimeType (type) {
|
||||||
|
var mime = db[type]
|
||||||
|
var exts = mime.extensions
|
||||||
|
|
||||||
|
if (!exts || !exts.length) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// mime -> extensions
|
||||||
|
extensions[type] = exts
|
||||||
|
|
||||||
|
// extension -> mime
|
||||||
|
for (var i = 0; i < exts.length; i++) {
|
||||||
|
var extension = exts[i]
|
||||||
|
types[extension] = _preferredType(extension, types[extension], type)
|
||||||
|
|
||||||
|
// DELETE (eventually): Capture extension->type maps that change as a
|
||||||
|
// result of switching to mime-score. This is just to help make reviewing
|
||||||
|
// PR #119 easier, and can be removed once that PR is approved.
|
||||||
|
const legacyType = _preferredTypeLegacy(
|
||||||
|
extension,
|
||||||
|
types[extension],
|
||||||
|
type
|
||||||
|
)
|
||||||
|
if (legacyType !== types[extension]) {
|
||||||
|
exports._extensionConflicts.push([extension, legacyType, types[extension]])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// Resolve type conflict using mime-score
|
||||||
|
function _preferredType (ext, type0, type1) {
|
||||||
|
var score0 = type0 ? mimeScore(type0, db[type0].source) : 0
|
||||||
|
var score1 = type1 ? mimeScore(type1, db[type1].source) : 0
|
||||||
|
|
||||||
|
return score0 > score1 ? type0 : type1
|
||||||
|
}
|
||||||
|
|
||||||
|
// Resolve type conflict using pre-mime-score logic
|
||||||
|
function _preferredTypeLegacy (ext, type0, type1) {
|
||||||
|
var SOURCE_RANK = ['nginx', 'apache', undefined, 'iana']
|
||||||
|
|
||||||
|
var score0 = type0 ? SOURCE_RANK.indexOf(db[type0].source) : 0
|
||||||
|
var score1 = type1 ? SOURCE_RANK.indexOf(db[type1].source) : 0
|
||||||
|
|
||||||
|
if (
|
||||||
|
exports.types[extension] !== 'application/octet-stream' &&
|
||||||
|
(score0 > score1 ||
|
||||||
|
(score0 === score1 &&
|
||||||
|
exports.types[extension]?.slice(0, 12) === 'application/'))
|
||||||
|
) {
|
||||||
|
return type0
|
||||||
|
}
|
||||||
|
|
||||||
|
return score0 > score1 ? type0 : type1
|
||||||
|
}
|
52
node_modules/.pnpm/accepts@2.0.0/node_modules/mime-types/mimeScore.js
generated
vendored
Normal file
52
node_modules/.pnpm/accepts@2.0.0/node_modules/mime-types/mimeScore.js
generated
vendored
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
// 'mime-score' back-ported to CommonJS
|
||||||
|
|
||||||
|
// Score RFC facets (see https://tools.ietf.org/html/rfc6838#section-3)
|
||||||
|
var FACET_SCORES = {
|
||||||
|
'prs.': 100,
|
||||||
|
'x-': 200,
|
||||||
|
'x.': 300,
|
||||||
|
'vnd.': 400,
|
||||||
|
default: 900
|
||||||
|
}
|
||||||
|
|
||||||
|
// Score mime source (Logic originally from `jshttp/mime-types` module)
|
||||||
|
var SOURCE_SCORES = {
|
||||||
|
nginx: 10,
|
||||||
|
apache: 20,
|
||||||
|
iana: 40,
|
||||||
|
default: 30 // definitions added by `jshttp/mime-db` project?
|
||||||
|
}
|
||||||
|
|
||||||
|
var TYPE_SCORES = {
|
||||||
|
// prefer application/xml over text/xml
|
||||||
|
// prefer application/rtf over text/rtf
|
||||||
|
application: 1,
|
||||||
|
|
||||||
|
// prefer font/woff over application/font-woff
|
||||||
|
font: 2,
|
||||||
|
|
||||||
|
default: 0
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get each component of the score for a mime type. The sum of these is the
|
||||||
|
* total score. The higher the score, the more "official" the type.
|
||||||
|
*/
|
||||||
|
module.exports = function mimeScore (mimeType, source = 'default') {
|
||||||
|
if (mimeType === 'application/octet-stream') {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
const [type, subtype] = mimeType.split('/')
|
||||||
|
|
||||||
|
const facet = subtype.replace(/(\.|x-).*/, '$1')
|
||||||
|
|
||||||
|
const facetScore = FACET_SCORES[facet] || FACET_SCORES.default
|
||||||
|
const sourceScore = SOURCE_SCORES[source] || SOURCE_SCORES.default
|
||||||
|
const typeScore = TYPE_SCORES[type] || TYPE_SCORES.default
|
||||||
|
|
||||||
|
// All else being equal prefer shorter types
|
||||||
|
const lengthScore = 1 - mimeType.length / 100
|
||||||
|
|
||||||
|
return facetScore + sourceScore + typeScore + lengthScore
|
||||||
|
}
|
45
node_modules/.pnpm/accepts@2.0.0/node_modules/mime-types/package.json
generated
vendored
Normal file
45
node_modules/.pnpm/accepts@2.0.0/node_modules/mime-types/package.json
generated
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
{
|
||||||
|
"name": "mime-types",
|
||||||
|
"description": "The ultimate javascript content-type utility.",
|
||||||
|
"version": "3.0.1",
|
||||||
|
"contributors": [
|
||||||
|
"Douglas Christopher Wilson <doug@somethingdoug.com>",
|
||||||
|
"Jeremiah Senkpiel <fishrock123@rocketmail.com> (https://searchbeam.jit.su)",
|
||||||
|
"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"
|
||||||
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"keywords": [
|
||||||
|
"mime",
|
||||||
|
"types"
|
||||||
|
],
|
||||||
|
"repository": "jshttp/mime-types",
|
||||||
|
"dependencies": {
|
||||||
|
"mime-db": "^1.54.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"eslint": "8.33.0",
|
||||||
|
"eslint-config-standard": "14.1.1",
|
||||||
|
"eslint-plugin-import": "2.27.5",
|
||||||
|
"eslint-plugin-markdown": "3.0.0",
|
||||||
|
"eslint-plugin-node": "11.1.0",
|
||||||
|
"eslint-plugin-promise": "6.1.1",
|
||||||
|
"eslint-plugin-standard": "4.1.0",
|
||||||
|
"mocha": "10.2.0",
|
||||||
|
"nyc": "15.1.0"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"HISTORY.md",
|
||||||
|
"LICENSE",
|
||||||
|
"index.js",
|
||||||
|
"mimeScore.js"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 0.6"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"lint": "eslint .",
|
||||||
|
"test": "mocha --reporter spec test/test.js",
|
||||||
|
"test-ci": "nyc --reporter=lcov --reporter=text npm test",
|
||||||
|
"test-cov": "nyc --reporter=html --reporter=text npm test"
|
||||||
|
}
|
||||||
|
}
|
114
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/HISTORY.md
generated
vendored
Normal file
114
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/HISTORY.md
generated
vendored
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
1.0.0 / 2024-08-31
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Drop support for node <18
|
||||||
|
* Added an option preferred encodings array #59
|
||||||
|
|
||||||
|
0.6.3 / 2022-01-22
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Revert "Lazy-load modules from main entry point"
|
||||||
|
|
||||||
|
0.6.2 / 2019-04-29
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Fix sorting charset, encoding, and language with extra parameters
|
||||||
|
|
||||||
|
0.6.1 / 2016-05-02
|
||||||
|
==================
|
||||||
|
|
||||||
|
* perf: improve `Accept` parsing speed
|
||||||
|
* perf: improve `Accept-Charset` parsing speed
|
||||||
|
* perf: improve `Accept-Encoding` parsing speed
|
||||||
|
* perf: improve `Accept-Language` parsing speed
|
||||||
|
|
||||||
|
0.6.0 / 2015-09-29
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Fix including type extensions in parameters in `Accept` parsing
|
||||||
|
* Fix parsing `Accept` parameters with quoted equals
|
||||||
|
* Fix parsing `Accept` parameters with quoted semicolons
|
||||||
|
* Lazy-load modules from main entry point
|
||||||
|
* perf: delay type concatenation until needed
|
||||||
|
* perf: enable strict mode
|
||||||
|
* perf: hoist regular expressions
|
||||||
|
* perf: remove closures getting spec properties
|
||||||
|
* perf: remove a closure from media type parsing
|
||||||
|
* perf: remove property delete from media type parsing
|
||||||
|
|
||||||
|
0.5.3 / 2015-05-10
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Fix media type parameter matching to be case-insensitive
|
||||||
|
|
||||||
|
0.5.2 / 2015-05-06
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Fix comparing media types with quoted values
|
||||||
|
* Fix splitting media types with quoted commas
|
||||||
|
|
||||||
|
0.5.1 / 2015-02-14
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Fix preference sorting to be stable for long acceptable lists
|
||||||
|
|
||||||
|
0.5.0 / 2014-12-18
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Fix list return order when large accepted list
|
||||||
|
* Fix missing identity encoding when q=0 exists
|
||||||
|
* Remove dynamic building of Negotiator class
|
||||||
|
|
||||||
|
0.4.9 / 2014-10-14
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Fix error when media type has invalid parameter
|
||||||
|
|
||||||
|
0.4.8 / 2014-09-28
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Fix all negotiations to be case-insensitive
|
||||||
|
* Stable sort preferences of same quality according to client order
|
||||||
|
* Support Node.js 0.6
|
||||||
|
|
||||||
|
0.4.7 / 2014-06-24
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Handle invalid provided languages
|
||||||
|
* Handle invalid provided media types
|
||||||
|
|
||||||
|
0.4.6 / 2014-06-11
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Order by specificity when quality is the same
|
||||||
|
|
||||||
|
0.4.5 / 2014-05-29
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Fix regression in empty header handling
|
||||||
|
|
||||||
|
0.4.4 / 2014-05-29
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Fix behaviors when headers are not present
|
||||||
|
|
||||||
|
0.4.3 / 2014-04-16
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Handle slashes on media params correctly
|
||||||
|
|
||||||
|
0.4.2 / 2014-02-28
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Fix media type sorting
|
||||||
|
* Handle media types params strictly
|
||||||
|
|
||||||
|
0.4.1 / 2014-01-16
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Use most specific matches
|
||||||
|
|
||||||
|
0.4.0 / 2014-01-09
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Remove preferred prefix from methods
|
24
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/LICENSE
generated
vendored
Normal file
24
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/LICENSE
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
(The MIT License)
|
||||||
|
|
||||||
|
Copyright (c) 2012-2014 Federico Romero
|
||||||
|
Copyright (c) 2012-2014 Isaac Z. Schlueter
|
||||||
|
Copyright (c) 2014-2015 Douglas Christopher Wilson
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of this software and associated documentation files (the
|
||||||
|
'Software'), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||||
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||||
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||||
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
212
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/README.md
generated
vendored
Normal file
212
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/README.md
generated
vendored
Normal file
@ -0,0 +1,212 @@
|
|||||||
|
# negotiator
|
||||||
|
|
||||||
|
[![NPM Version][npm-image]][npm-url]
|
||||||
|
[![NPM Downloads][downloads-image]][downloads-url]
|
||||||
|
[![Node.js Version][node-version-image]][node-version-url]
|
||||||
|
[![Build Status][github-actions-ci-image]][github-actions-ci-url]
|
||||||
|
[![Test Coverage][coveralls-image]][coveralls-url]
|
||||||
|
|
||||||
|
An HTTP content negotiator for Node.js
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ npm install negotiator
|
||||||
|
```
|
||||||
|
|
||||||
|
## API
|
||||||
|
|
||||||
|
```js
|
||||||
|
var Negotiator = require('negotiator')
|
||||||
|
```
|
||||||
|
|
||||||
|
### Accept Negotiation
|
||||||
|
|
||||||
|
```js
|
||||||
|
availableMediaTypes = ['text/html', 'text/plain', 'application/json']
|
||||||
|
|
||||||
|
// The negotiator constructor receives a request object
|
||||||
|
negotiator = new Negotiator(request)
|
||||||
|
|
||||||
|
// Let's say Accept header is 'text/html, application/*;q=0.2, image/jpeg;q=0.8'
|
||||||
|
|
||||||
|
negotiator.mediaTypes()
|
||||||
|
// -> ['text/html', 'image/jpeg', 'application/*']
|
||||||
|
|
||||||
|
negotiator.mediaTypes(availableMediaTypes)
|
||||||
|
// -> ['text/html', 'application/json']
|
||||||
|
|
||||||
|
negotiator.mediaType(availableMediaTypes)
|
||||||
|
// -> 'text/html'
|
||||||
|
```
|
||||||
|
|
||||||
|
You can check a working example at `examples/accept.js`.
|
||||||
|
|
||||||
|
#### Methods
|
||||||
|
|
||||||
|
##### mediaType()
|
||||||
|
|
||||||
|
Returns the most preferred media type from the client.
|
||||||
|
|
||||||
|
##### mediaType(availableMediaType)
|
||||||
|
|
||||||
|
Returns the most preferred media type from a list of available media types.
|
||||||
|
|
||||||
|
##### mediaTypes()
|
||||||
|
|
||||||
|
Returns an array of preferred media types ordered by the client preference.
|
||||||
|
|
||||||
|
##### mediaTypes(availableMediaTypes)
|
||||||
|
|
||||||
|
Returns an array of preferred media types ordered by priority from a list of
|
||||||
|
available media types.
|
||||||
|
|
||||||
|
### Accept-Language Negotiation
|
||||||
|
|
||||||
|
```js
|
||||||
|
negotiator = new Negotiator(request)
|
||||||
|
|
||||||
|
availableLanguages = ['en', 'es', 'fr']
|
||||||
|
|
||||||
|
// Let's say Accept-Language header is 'en;q=0.8, es, pt'
|
||||||
|
|
||||||
|
negotiator.languages()
|
||||||
|
// -> ['es', 'pt', 'en']
|
||||||
|
|
||||||
|
negotiator.languages(availableLanguages)
|
||||||
|
// -> ['es', 'en']
|
||||||
|
|
||||||
|
language = negotiator.language(availableLanguages)
|
||||||
|
// -> 'es'
|
||||||
|
```
|
||||||
|
|
||||||
|
You can check a working example at `examples/language.js`.
|
||||||
|
|
||||||
|
#### Methods
|
||||||
|
|
||||||
|
##### language()
|
||||||
|
|
||||||
|
Returns the most preferred language from the client.
|
||||||
|
|
||||||
|
##### language(availableLanguages)
|
||||||
|
|
||||||
|
Returns the most preferred language from a list of available languages.
|
||||||
|
|
||||||
|
##### languages()
|
||||||
|
|
||||||
|
Returns an array of preferred languages ordered by the client preference.
|
||||||
|
|
||||||
|
##### languages(availableLanguages)
|
||||||
|
|
||||||
|
Returns an array of preferred languages ordered by priority from a list of
|
||||||
|
available languages.
|
||||||
|
|
||||||
|
### Accept-Charset Negotiation
|
||||||
|
|
||||||
|
```js
|
||||||
|
availableCharsets = ['utf-8', 'iso-8859-1', 'iso-8859-5']
|
||||||
|
|
||||||
|
negotiator = new Negotiator(request)
|
||||||
|
|
||||||
|
// Let's say Accept-Charset header is 'utf-8, iso-8859-1;q=0.8, utf-7;q=0.2'
|
||||||
|
|
||||||
|
negotiator.charsets()
|
||||||
|
// -> ['utf-8', 'iso-8859-1', 'utf-7']
|
||||||
|
|
||||||
|
negotiator.charsets(availableCharsets)
|
||||||
|
// -> ['utf-8', 'iso-8859-1']
|
||||||
|
|
||||||
|
negotiator.charset(availableCharsets)
|
||||||
|
// -> 'utf-8'
|
||||||
|
```
|
||||||
|
|
||||||
|
You can check a working example at `examples/charset.js`.
|
||||||
|
|
||||||
|
#### Methods
|
||||||
|
|
||||||
|
##### charset()
|
||||||
|
|
||||||
|
Returns the most preferred charset from the client.
|
||||||
|
|
||||||
|
##### charset(availableCharsets)
|
||||||
|
|
||||||
|
Returns the most preferred charset from a list of available charsets.
|
||||||
|
|
||||||
|
##### charsets()
|
||||||
|
|
||||||
|
Returns an array of preferred charsets ordered by the client preference.
|
||||||
|
|
||||||
|
##### charsets(availableCharsets)
|
||||||
|
|
||||||
|
Returns an array of preferred charsets ordered by priority from a list of
|
||||||
|
available charsets.
|
||||||
|
|
||||||
|
### Accept-Encoding Negotiation
|
||||||
|
|
||||||
|
```js
|
||||||
|
availableEncodings = ['identity', 'gzip']
|
||||||
|
|
||||||
|
negotiator = new Negotiator(request)
|
||||||
|
|
||||||
|
// Let's say Accept-Encoding header is 'gzip, compress;q=0.2, identity;q=0.5'
|
||||||
|
|
||||||
|
negotiator.encodings()
|
||||||
|
// -> ['gzip', 'identity', 'compress']
|
||||||
|
|
||||||
|
negotiator.encodings(availableEncodings)
|
||||||
|
// -> ['gzip', 'identity']
|
||||||
|
|
||||||
|
negotiator.encoding(availableEncodings)
|
||||||
|
// -> 'gzip'
|
||||||
|
```
|
||||||
|
|
||||||
|
You can check a working example at `examples/encoding.js`.
|
||||||
|
|
||||||
|
#### Methods
|
||||||
|
|
||||||
|
##### encoding()
|
||||||
|
|
||||||
|
Returns the most preferred encoding from the client.
|
||||||
|
|
||||||
|
##### encoding(availableEncodings)
|
||||||
|
|
||||||
|
Returns the most preferred encoding from a list of available encodings.
|
||||||
|
|
||||||
|
##### encoding(availableEncodings, { preferred })
|
||||||
|
|
||||||
|
Returns the most preferred encoding from a list of available encodings, while prioritizing based on `preferred` array between same-quality encodings.
|
||||||
|
|
||||||
|
##### encodings()
|
||||||
|
|
||||||
|
Returns an array of preferred encodings ordered by the client preference.
|
||||||
|
|
||||||
|
##### encodings(availableEncodings)
|
||||||
|
|
||||||
|
Returns an array of preferred encodings ordered by priority from a list of
|
||||||
|
available encodings.
|
||||||
|
|
||||||
|
##### encodings(availableEncodings, { preferred })
|
||||||
|
|
||||||
|
Returns an array of preferred encodings ordered by priority from a list of
|
||||||
|
available encodings, while prioritizing based on `preferred` array between same-quality encodings.
|
||||||
|
|
||||||
|
## See Also
|
||||||
|
|
||||||
|
The [accepts](https://npmjs.org/package/accepts#readme) module builds on
|
||||||
|
this module and provides an alternative interface, mime type validation,
|
||||||
|
and more.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
[MIT](LICENSE)
|
||||||
|
|
||||||
|
[npm-image]: https://img.shields.io/npm/v/negotiator.svg
|
||||||
|
[npm-url]: https://npmjs.org/package/negotiator
|
||||||
|
[node-version-image]: https://img.shields.io/node/v/negotiator.svg
|
||||||
|
[node-version-url]: https://nodejs.org/en/download/
|
||||||
|
[coveralls-image]: https://img.shields.io/coveralls/jshttp/negotiator/master.svg
|
||||||
|
[coveralls-url]: https://coveralls.io/r/jshttp/negotiator?branch=master
|
||||||
|
[downloads-image]: https://img.shields.io/npm/dm/negotiator.svg
|
||||||
|
[downloads-url]: https://npmjs.org/package/negotiator
|
||||||
|
[github-actions-ci-image]: https://img.shields.io/github/workflow/status/jshttp/negotiator/ci/master?label=ci
|
||||||
|
[github-actions-ci-url]: https://github.com/jshttp/negotiator/actions/workflows/ci.yml
|
83
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/index.js
generated
vendored
Normal file
83
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/index.js
generated
vendored
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
/*!
|
||||||
|
* negotiator
|
||||||
|
* Copyright(c) 2012 Federico Romero
|
||||||
|
* Copyright(c) 2012-2014 Isaac Z. Schlueter
|
||||||
|
* Copyright(c) 2015 Douglas Christopher Wilson
|
||||||
|
* MIT Licensed
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var preferredCharsets = require('./lib/charset')
|
||||||
|
var preferredEncodings = require('./lib/encoding')
|
||||||
|
var preferredLanguages = require('./lib/language')
|
||||||
|
var preferredMediaTypes = require('./lib/mediaType')
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module exports.
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
module.exports = Negotiator;
|
||||||
|
module.exports.Negotiator = Negotiator;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a Negotiator instance from a request.
|
||||||
|
* @param {object} request
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
function Negotiator(request) {
|
||||||
|
if (!(this instanceof Negotiator)) {
|
||||||
|
return new Negotiator(request);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.request = request;
|
||||||
|
}
|
||||||
|
|
||||||
|
Negotiator.prototype.charset = function charset(available) {
|
||||||
|
var set = this.charsets(available);
|
||||||
|
return set && set[0];
|
||||||
|
};
|
||||||
|
|
||||||
|
Negotiator.prototype.charsets = function charsets(available) {
|
||||||
|
return preferredCharsets(this.request.headers['accept-charset'], available);
|
||||||
|
};
|
||||||
|
|
||||||
|
Negotiator.prototype.encoding = function encoding(available, opts) {
|
||||||
|
var set = this.encodings(available, opts);
|
||||||
|
return set && set[0];
|
||||||
|
};
|
||||||
|
|
||||||
|
Negotiator.prototype.encodings = function encodings(available, options) {
|
||||||
|
var opts = options || {};
|
||||||
|
return preferredEncodings(this.request.headers['accept-encoding'], available, opts.preferred);
|
||||||
|
};
|
||||||
|
|
||||||
|
Negotiator.prototype.language = function language(available) {
|
||||||
|
var set = this.languages(available);
|
||||||
|
return set && set[0];
|
||||||
|
};
|
||||||
|
|
||||||
|
Negotiator.prototype.languages = function languages(available) {
|
||||||
|
return preferredLanguages(this.request.headers['accept-language'], available);
|
||||||
|
};
|
||||||
|
|
||||||
|
Negotiator.prototype.mediaType = function mediaType(available) {
|
||||||
|
var set = this.mediaTypes(available);
|
||||||
|
return set && set[0];
|
||||||
|
};
|
||||||
|
|
||||||
|
Negotiator.prototype.mediaTypes = function mediaTypes(available) {
|
||||||
|
return preferredMediaTypes(this.request.headers.accept, available);
|
||||||
|
};
|
||||||
|
|
||||||
|
// Backwards compatibility
|
||||||
|
Negotiator.prototype.preferredCharset = Negotiator.prototype.charset;
|
||||||
|
Negotiator.prototype.preferredCharsets = Negotiator.prototype.charsets;
|
||||||
|
Negotiator.prototype.preferredEncoding = Negotiator.prototype.encoding;
|
||||||
|
Negotiator.prototype.preferredEncodings = Negotiator.prototype.encodings;
|
||||||
|
Negotiator.prototype.preferredLanguage = Negotiator.prototype.language;
|
||||||
|
Negotiator.prototype.preferredLanguages = Negotiator.prototype.languages;
|
||||||
|
Negotiator.prototype.preferredMediaType = Negotiator.prototype.mediaType;
|
||||||
|
Negotiator.prototype.preferredMediaTypes = Negotiator.prototype.mediaTypes;
|
169
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/lib/charset.js
generated
vendored
Normal file
169
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/lib/charset.js
generated
vendored
Normal file
@ -0,0 +1,169 @@
|
|||||||
|
/**
|
||||||
|
* negotiator
|
||||||
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
||||||
|
* Copyright(c) 2014 Federico Romero
|
||||||
|
* Copyright(c) 2014-2015 Douglas Christopher Wilson
|
||||||
|
* MIT Licensed
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module exports.
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
module.exports = preferredCharsets;
|
||||||
|
module.exports.preferredCharsets = preferredCharsets;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module variables.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
var simpleCharsetRegExp = /^\s*([^\s;]+)\s*(?:;(.*))?$/;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse the Accept-Charset header.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function parseAcceptCharset(accept) {
|
||||||
|
var accepts = accept.split(',');
|
||||||
|
|
||||||
|
for (var i = 0, j = 0; i < accepts.length; i++) {
|
||||||
|
var charset = parseCharset(accepts[i].trim(), i);
|
||||||
|
|
||||||
|
if (charset) {
|
||||||
|
accepts[j++] = charset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// trim accepts
|
||||||
|
accepts.length = j;
|
||||||
|
|
||||||
|
return accepts;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse a charset from the Accept-Charset header.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function parseCharset(str, i) {
|
||||||
|
var match = simpleCharsetRegExp.exec(str);
|
||||||
|
if (!match) return null;
|
||||||
|
|
||||||
|
var charset = match[1];
|
||||||
|
var q = 1;
|
||||||
|
if (match[2]) {
|
||||||
|
var params = match[2].split(';')
|
||||||
|
for (var j = 0; j < params.length; j++) {
|
||||||
|
var p = params[j].trim().split('=');
|
||||||
|
if (p[0] === 'q') {
|
||||||
|
q = parseFloat(p[1]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
charset: charset,
|
||||||
|
q: q,
|
||||||
|
i: i
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the priority of a charset.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function getCharsetPriority(charset, accepted, index) {
|
||||||
|
var priority = {o: -1, q: 0, s: 0};
|
||||||
|
|
||||||
|
for (var i = 0; i < accepted.length; i++) {
|
||||||
|
var spec = specify(charset, accepted[i], index);
|
||||||
|
|
||||||
|
if (spec && (priority.s - spec.s || priority.q - spec.q || priority.o - spec.o) < 0) {
|
||||||
|
priority = spec;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return priority;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the specificity of the charset.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function specify(charset, spec, index) {
|
||||||
|
var s = 0;
|
||||||
|
if(spec.charset.toLowerCase() === charset.toLowerCase()){
|
||||||
|
s |= 1;
|
||||||
|
} else if (spec.charset !== '*' ) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
i: index,
|
||||||
|
o: spec.i,
|
||||||
|
q: spec.q,
|
||||||
|
s: s
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the preferred charsets from an Accept-Charset header.
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
function preferredCharsets(accept, provided) {
|
||||||
|
// RFC 2616 sec 14.2: no header = *
|
||||||
|
var accepts = parseAcceptCharset(accept === undefined ? '*' : accept || '');
|
||||||
|
|
||||||
|
if (!provided) {
|
||||||
|
// sorted list of all charsets
|
||||||
|
return accepts
|
||||||
|
.filter(isQuality)
|
||||||
|
.sort(compareSpecs)
|
||||||
|
.map(getFullCharset);
|
||||||
|
}
|
||||||
|
|
||||||
|
var priorities = provided.map(function getPriority(type, index) {
|
||||||
|
return getCharsetPriority(type, accepts, index);
|
||||||
|
});
|
||||||
|
|
||||||
|
// sorted list of accepted charsets
|
||||||
|
return priorities.filter(isQuality).sort(compareSpecs).map(function getCharset(priority) {
|
||||||
|
return provided[priorities.indexOf(priority)];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compare two specs.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function compareSpecs(a, b) {
|
||||||
|
return (b.q - a.q) || (b.s - a.s) || (a.o - b.o) || (a.i - b.i) || 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get full charset string.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function getFullCharset(spec) {
|
||||||
|
return spec.charset;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if a spec has any quality.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function isQuality(spec) {
|
||||||
|
return spec.q > 0;
|
||||||
|
}
|
205
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/lib/encoding.js
generated
vendored
Normal file
205
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/lib/encoding.js
generated
vendored
Normal file
@ -0,0 +1,205 @@
|
|||||||
|
/**
|
||||||
|
* negotiator
|
||||||
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
||||||
|
* Copyright(c) 2014 Federico Romero
|
||||||
|
* Copyright(c) 2014-2015 Douglas Christopher Wilson
|
||||||
|
* MIT Licensed
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module exports.
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
module.exports = preferredEncodings;
|
||||||
|
module.exports.preferredEncodings = preferredEncodings;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module variables.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
var simpleEncodingRegExp = /^\s*([^\s;]+)\s*(?:;(.*))?$/;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse the Accept-Encoding header.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function parseAcceptEncoding(accept) {
|
||||||
|
var accepts = accept.split(',');
|
||||||
|
var hasIdentity = false;
|
||||||
|
var minQuality = 1;
|
||||||
|
|
||||||
|
for (var i = 0, j = 0; i < accepts.length; i++) {
|
||||||
|
var encoding = parseEncoding(accepts[i].trim(), i);
|
||||||
|
|
||||||
|
if (encoding) {
|
||||||
|
accepts[j++] = encoding;
|
||||||
|
hasIdentity = hasIdentity || specify('identity', encoding);
|
||||||
|
minQuality = Math.min(minQuality, encoding.q || 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!hasIdentity) {
|
||||||
|
/*
|
||||||
|
* If identity doesn't explicitly appear in the accept-encoding header,
|
||||||
|
* it's added to the list of acceptable encoding with the lowest q
|
||||||
|
*/
|
||||||
|
accepts[j++] = {
|
||||||
|
encoding: 'identity',
|
||||||
|
q: minQuality,
|
||||||
|
i: i
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// trim accepts
|
||||||
|
accepts.length = j;
|
||||||
|
|
||||||
|
return accepts;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse an encoding from the Accept-Encoding header.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function parseEncoding(str, i) {
|
||||||
|
var match = simpleEncodingRegExp.exec(str);
|
||||||
|
if (!match) return null;
|
||||||
|
|
||||||
|
var encoding = match[1];
|
||||||
|
var q = 1;
|
||||||
|
if (match[2]) {
|
||||||
|
var params = match[2].split(';');
|
||||||
|
for (var j = 0; j < params.length; j++) {
|
||||||
|
var p = params[j].trim().split('=');
|
||||||
|
if (p[0] === 'q') {
|
||||||
|
q = parseFloat(p[1]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
encoding: encoding,
|
||||||
|
q: q,
|
||||||
|
i: i
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the priority of an encoding.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function getEncodingPriority(encoding, accepted, index) {
|
||||||
|
var priority = {encoding: encoding, o: -1, q: 0, s: 0};
|
||||||
|
|
||||||
|
for (var i = 0; i < accepted.length; i++) {
|
||||||
|
var spec = specify(encoding, accepted[i], index);
|
||||||
|
|
||||||
|
if (spec && (priority.s - spec.s || priority.q - spec.q || priority.o - spec.o) < 0) {
|
||||||
|
priority = spec;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return priority;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the specificity of the encoding.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function specify(encoding, spec, index) {
|
||||||
|
var s = 0;
|
||||||
|
if(spec.encoding.toLowerCase() === encoding.toLowerCase()){
|
||||||
|
s |= 1;
|
||||||
|
} else if (spec.encoding !== '*' ) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
encoding: encoding,
|
||||||
|
i: index,
|
||||||
|
o: spec.i,
|
||||||
|
q: spec.q,
|
||||||
|
s: s
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the preferred encodings from an Accept-Encoding header.
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
function preferredEncodings(accept, provided, preferred) {
|
||||||
|
var accepts = parseAcceptEncoding(accept || '');
|
||||||
|
|
||||||
|
var comparator = preferred ? function comparator (a, b) {
|
||||||
|
if (a.q !== b.q) {
|
||||||
|
return b.q - a.q // higher quality first
|
||||||
|
}
|
||||||
|
|
||||||
|
var aPreferred = preferred.indexOf(a.encoding)
|
||||||
|
var bPreferred = preferred.indexOf(b.encoding)
|
||||||
|
|
||||||
|
if (aPreferred === -1 && bPreferred === -1) {
|
||||||
|
// consider the original specifity/order
|
||||||
|
return (b.s - a.s) || (a.o - b.o) || (a.i - b.i)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (aPreferred !== -1 && bPreferred !== -1) {
|
||||||
|
return aPreferred - bPreferred // consider the preferred order
|
||||||
|
}
|
||||||
|
|
||||||
|
return aPreferred === -1 ? 1 : -1 // preferred first
|
||||||
|
} : compareSpecs;
|
||||||
|
|
||||||
|
if (!provided) {
|
||||||
|
// sorted list of all encodings
|
||||||
|
return accepts
|
||||||
|
.filter(isQuality)
|
||||||
|
.sort(comparator)
|
||||||
|
.map(getFullEncoding);
|
||||||
|
}
|
||||||
|
|
||||||
|
var priorities = provided.map(function getPriority(type, index) {
|
||||||
|
return getEncodingPriority(type, accepts, index);
|
||||||
|
});
|
||||||
|
|
||||||
|
// sorted list of accepted encodings
|
||||||
|
return priorities.filter(isQuality).sort(comparator).map(function getEncoding(priority) {
|
||||||
|
return provided[priorities.indexOf(priority)];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compare two specs.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function compareSpecs(a, b) {
|
||||||
|
return (b.q - a.q) || (b.s - a.s) || (a.o - b.o) || (a.i - b.i);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get full encoding string.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function getFullEncoding(spec) {
|
||||||
|
return spec.encoding;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if a spec has any quality.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function isQuality(spec) {
|
||||||
|
return spec.q > 0;
|
||||||
|
}
|
179
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/lib/language.js
generated
vendored
Normal file
179
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/lib/language.js
generated
vendored
Normal file
@ -0,0 +1,179 @@
|
|||||||
|
/**
|
||||||
|
* negotiator
|
||||||
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
||||||
|
* Copyright(c) 2014 Federico Romero
|
||||||
|
* Copyright(c) 2014-2015 Douglas Christopher Wilson
|
||||||
|
* MIT Licensed
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module exports.
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
module.exports = preferredLanguages;
|
||||||
|
module.exports.preferredLanguages = preferredLanguages;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module variables.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
var simpleLanguageRegExp = /^\s*([^\s\-;]+)(?:-([^\s;]+))?\s*(?:;(.*))?$/;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse the Accept-Language header.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function parseAcceptLanguage(accept) {
|
||||||
|
var accepts = accept.split(',');
|
||||||
|
|
||||||
|
for (var i = 0, j = 0; i < accepts.length; i++) {
|
||||||
|
var language = parseLanguage(accepts[i].trim(), i);
|
||||||
|
|
||||||
|
if (language) {
|
||||||
|
accepts[j++] = language;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// trim accepts
|
||||||
|
accepts.length = j;
|
||||||
|
|
||||||
|
return accepts;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse a language from the Accept-Language header.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function parseLanguage(str, i) {
|
||||||
|
var match = simpleLanguageRegExp.exec(str);
|
||||||
|
if (!match) return null;
|
||||||
|
|
||||||
|
var prefix = match[1]
|
||||||
|
var suffix = match[2]
|
||||||
|
var full = prefix
|
||||||
|
|
||||||
|
if (suffix) full += "-" + suffix;
|
||||||
|
|
||||||
|
var q = 1;
|
||||||
|
if (match[3]) {
|
||||||
|
var params = match[3].split(';')
|
||||||
|
for (var j = 0; j < params.length; j++) {
|
||||||
|
var p = params[j].split('=');
|
||||||
|
if (p[0] === 'q') q = parseFloat(p[1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
prefix: prefix,
|
||||||
|
suffix: suffix,
|
||||||
|
q: q,
|
||||||
|
i: i,
|
||||||
|
full: full
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the priority of a language.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function getLanguagePriority(language, accepted, index) {
|
||||||
|
var priority = {o: -1, q: 0, s: 0};
|
||||||
|
|
||||||
|
for (var i = 0; i < accepted.length; i++) {
|
||||||
|
var spec = specify(language, accepted[i], index);
|
||||||
|
|
||||||
|
if (spec && (priority.s - spec.s || priority.q - spec.q || priority.o - spec.o) < 0) {
|
||||||
|
priority = spec;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return priority;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the specificity of the language.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function specify(language, spec, index) {
|
||||||
|
var p = parseLanguage(language)
|
||||||
|
if (!p) return null;
|
||||||
|
var s = 0;
|
||||||
|
if(spec.full.toLowerCase() === p.full.toLowerCase()){
|
||||||
|
s |= 4;
|
||||||
|
} else if (spec.prefix.toLowerCase() === p.full.toLowerCase()) {
|
||||||
|
s |= 2;
|
||||||
|
} else if (spec.full.toLowerCase() === p.prefix.toLowerCase()) {
|
||||||
|
s |= 1;
|
||||||
|
} else if (spec.full !== '*' ) {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
i: index,
|
||||||
|
o: spec.i,
|
||||||
|
q: spec.q,
|
||||||
|
s: s
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the preferred languages from an Accept-Language header.
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
function preferredLanguages(accept, provided) {
|
||||||
|
// RFC 2616 sec 14.4: no header = *
|
||||||
|
var accepts = parseAcceptLanguage(accept === undefined ? '*' : accept || '');
|
||||||
|
|
||||||
|
if (!provided) {
|
||||||
|
// sorted list of all languages
|
||||||
|
return accepts
|
||||||
|
.filter(isQuality)
|
||||||
|
.sort(compareSpecs)
|
||||||
|
.map(getFullLanguage);
|
||||||
|
}
|
||||||
|
|
||||||
|
var priorities = provided.map(function getPriority(type, index) {
|
||||||
|
return getLanguagePriority(type, accepts, index);
|
||||||
|
});
|
||||||
|
|
||||||
|
// sorted list of accepted languages
|
||||||
|
return priorities.filter(isQuality).sort(compareSpecs).map(function getLanguage(priority) {
|
||||||
|
return provided[priorities.indexOf(priority)];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compare two specs.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function compareSpecs(a, b) {
|
||||||
|
return (b.q - a.q) || (b.s - a.s) || (a.o - b.o) || (a.i - b.i) || 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get full language string.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function getFullLanguage(spec) {
|
||||||
|
return spec.full;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if a spec has any quality.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function isQuality(spec) {
|
||||||
|
return spec.q > 0;
|
||||||
|
}
|
294
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/lib/mediaType.js
generated
vendored
Normal file
294
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/lib/mediaType.js
generated
vendored
Normal file
@ -0,0 +1,294 @@
|
|||||||
|
/**
|
||||||
|
* negotiator
|
||||||
|
* Copyright(c) 2012 Isaac Z. Schlueter
|
||||||
|
* Copyright(c) 2014 Federico Romero
|
||||||
|
* Copyright(c) 2014-2015 Douglas Christopher Wilson
|
||||||
|
* MIT Licensed
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module exports.
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
module.exports = preferredMediaTypes;
|
||||||
|
module.exports.preferredMediaTypes = preferredMediaTypes;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module variables.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
var simpleMediaTypeRegExp = /^\s*([^\s\/;]+)\/([^;\s]+)\s*(?:;(.*))?$/;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse the Accept header.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function parseAccept(accept) {
|
||||||
|
var accepts = splitMediaTypes(accept);
|
||||||
|
|
||||||
|
for (var i = 0, j = 0; i < accepts.length; i++) {
|
||||||
|
var mediaType = parseMediaType(accepts[i].trim(), i);
|
||||||
|
|
||||||
|
if (mediaType) {
|
||||||
|
accepts[j++] = mediaType;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// trim accepts
|
||||||
|
accepts.length = j;
|
||||||
|
|
||||||
|
return accepts;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse a media type from the Accept header.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function parseMediaType(str, i) {
|
||||||
|
var match = simpleMediaTypeRegExp.exec(str);
|
||||||
|
if (!match) return null;
|
||||||
|
|
||||||
|
var params = Object.create(null);
|
||||||
|
var q = 1;
|
||||||
|
var subtype = match[2];
|
||||||
|
var type = match[1];
|
||||||
|
|
||||||
|
if (match[3]) {
|
||||||
|
var kvps = splitParameters(match[3]).map(splitKeyValuePair);
|
||||||
|
|
||||||
|
for (var j = 0; j < kvps.length; j++) {
|
||||||
|
var pair = kvps[j];
|
||||||
|
var key = pair[0].toLowerCase();
|
||||||
|
var val = pair[1];
|
||||||
|
|
||||||
|
// get the value, unwrapping quotes
|
||||||
|
var value = val && val[0] === '"' && val[val.length - 1] === '"'
|
||||||
|
? val.slice(1, -1)
|
||||||
|
: val;
|
||||||
|
|
||||||
|
if (key === 'q') {
|
||||||
|
q = parseFloat(value);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// store parameter
|
||||||
|
params[key] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
type: type,
|
||||||
|
subtype: subtype,
|
||||||
|
params: params,
|
||||||
|
q: q,
|
||||||
|
i: i
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the priority of a media type.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function getMediaTypePriority(type, accepted, index) {
|
||||||
|
var priority = {o: -1, q: 0, s: 0};
|
||||||
|
|
||||||
|
for (var i = 0; i < accepted.length; i++) {
|
||||||
|
var spec = specify(type, accepted[i], index);
|
||||||
|
|
||||||
|
if (spec && (priority.s - spec.s || priority.q - spec.q || priority.o - spec.o) < 0) {
|
||||||
|
priority = spec;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return priority;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the specificity of the media type.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function specify(type, spec, index) {
|
||||||
|
var p = parseMediaType(type);
|
||||||
|
var s = 0;
|
||||||
|
|
||||||
|
if (!p) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(spec.type.toLowerCase() == p.type.toLowerCase()) {
|
||||||
|
s |= 4
|
||||||
|
} else if(spec.type != '*') {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(spec.subtype.toLowerCase() == p.subtype.toLowerCase()) {
|
||||||
|
s |= 2
|
||||||
|
} else if(spec.subtype != '*') {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
var keys = Object.keys(spec.params);
|
||||||
|
if (keys.length > 0) {
|
||||||
|
if (keys.every(function (k) {
|
||||||
|
return spec.params[k] == '*' || (spec.params[k] || '').toLowerCase() == (p.params[k] || '').toLowerCase();
|
||||||
|
})) {
|
||||||
|
s |= 1
|
||||||
|
} else {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
i: index,
|
||||||
|
o: spec.i,
|
||||||
|
q: spec.q,
|
||||||
|
s: s,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the preferred media types from an Accept header.
|
||||||
|
* @public
|
||||||
|
*/
|
||||||
|
|
||||||
|
function preferredMediaTypes(accept, provided) {
|
||||||
|
// RFC 2616 sec 14.2: no header = */*
|
||||||
|
var accepts = parseAccept(accept === undefined ? '*/*' : accept || '');
|
||||||
|
|
||||||
|
if (!provided) {
|
||||||
|
// sorted list of all types
|
||||||
|
return accepts
|
||||||
|
.filter(isQuality)
|
||||||
|
.sort(compareSpecs)
|
||||||
|
.map(getFullType);
|
||||||
|
}
|
||||||
|
|
||||||
|
var priorities = provided.map(function getPriority(type, index) {
|
||||||
|
return getMediaTypePriority(type, accepts, index);
|
||||||
|
});
|
||||||
|
|
||||||
|
// sorted list of accepted types
|
||||||
|
return priorities.filter(isQuality).sort(compareSpecs).map(function getType(priority) {
|
||||||
|
return provided[priorities.indexOf(priority)];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compare two specs.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function compareSpecs(a, b) {
|
||||||
|
return (b.q - a.q) || (b.s - a.s) || (a.o - b.o) || (a.i - b.i) || 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get full type string.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function getFullType(spec) {
|
||||||
|
return spec.type + '/' + spec.subtype;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if a spec has any quality.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function isQuality(spec) {
|
||||||
|
return spec.q > 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Count the number of quotes in a string.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function quoteCount(string) {
|
||||||
|
var count = 0;
|
||||||
|
var index = 0;
|
||||||
|
|
||||||
|
while ((index = string.indexOf('"', index)) !== -1) {
|
||||||
|
count++;
|
||||||
|
index++;
|
||||||
|
}
|
||||||
|
|
||||||
|
return count;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Split a key value pair.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function splitKeyValuePair(str) {
|
||||||
|
var index = str.indexOf('=');
|
||||||
|
var key;
|
||||||
|
var val;
|
||||||
|
|
||||||
|
if (index === -1) {
|
||||||
|
key = str;
|
||||||
|
} else {
|
||||||
|
key = str.slice(0, index);
|
||||||
|
val = str.slice(index + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
return [key, val];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Split an Accept header into media types.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function splitMediaTypes(accept) {
|
||||||
|
var accepts = accept.split(',');
|
||||||
|
|
||||||
|
for (var i = 1, j = 0; i < accepts.length; i++) {
|
||||||
|
if (quoteCount(accepts[j]) % 2 == 0) {
|
||||||
|
accepts[++j] = accepts[i];
|
||||||
|
} else {
|
||||||
|
accepts[j] += ',' + accepts[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// trim accepts
|
||||||
|
accepts.length = j + 1;
|
||||||
|
|
||||||
|
return accepts;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Split a string of parameters.
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
|
||||||
|
function splitParameters(str) {
|
||||||
|
var parameters = str.split(';');
|
||||||
|
|
||||||
|
for (var i = 1, j = 0; i < parameters.length; i++) {
|
||||||
|
if (quoteCount(parameters[j]) % 2 == 0) {
|
||||||
|
parameters[++j] = parameters[i];
|
||||||
|
} else {
|
||||||
|
parameters[j] += ';' + parameters[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// trim parameters
|
||||||
|
parameters.length = j + 1;
|
||||||
|
|
||||||
|
for (var i = 0; i < parameters.length; i++) {
|
||||||
|
parameters[i] = parameters[i].trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
return parameters;
|
||||||
|
}
|
43
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/package.json
generated
vendored
Normal file
43
node_modules/.pnpm/accepts@2.0.0/node_modules/negotiator/package.json
generated
vendored
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
{
|
||||||
|
"name": "negotiator",
|
||||||
|
"description": "HTTP content negotiation",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"contributors": [
|
||||||
|
"Douglas Christopher Wilson <doug@somethingdoug.com>",
|
||||||
|
"Federico Romero <federico.romero@outboxlabs.com>",
|
||||||
|
"Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)"
|
||||||
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"keywords": [
|
||||||
|
"http",
|
||||||
|
"content negotiation",
|
||||||
|
"accept",
|
||||||
|
"accept-language",
|
||||||
|
"accept-encoding",
|
||||||
|
"accept-charset"
|
||||||
|
],
|
||||||
|
"repository": "jshttp/negotiator",
|
||||||
|
"devDependencies": {
|
||||||
|
"eslint": "7.32.0",
|
||||||
|
"eslint-plugin-markdown": "2.2.1",
|
||||||
|
"mocha": "9.1.3",
|
||||||
|
"nyc": "15.1.0"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"lib/",
|
||||||
|
"HISTORY.md",
|
||||||
|
"LICENSE",
|
||||||
|
"index.js",
|
||||||
|
"README.md"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 0.6"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"lint": "eslint .",
|
||||||
|
"test": "mocha --reporter spec --check-leaks --bail test/",
|
||||||
|
"test:debug": "mocha --reporter spec --check-leaks --inspect --inspect-brk test/",
|
||||||
|
"test-ci": "nyc --reporter=lcov --reporter=text npm test",
|
||||||
|
"test-cov": "nyc --reporter=html --reporter=text npm test"
|
||||||
|
}
|
||||||
|
}
|
15
node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch/LICENSE
generated
vendored
Normal file
15
node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch/LICENSE
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
The ISC License
|
||||||
|
|
||||||
|
Copyright (c) 2019 Elan Shanker, Paul Miller (https://paulmillr.com)
|
||||||
|
|
||||||
|
Permission to use, copy, modify, and/or distribute this software for any
|
||||||
|
purpose with or without fee is hereby granted, provided that the above
|
||||||
|
copyright notice and this permission notice appear in all copies.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||||
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||||
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||||
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||||
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||||
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
||||||
|
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
87
node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch/README.md
generated
vendored
Normal file
87
node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch/README.md
generated
vendored
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
anymatch [](https://travis-ci.org/micromatch/anymatch) [](https://coveralls.io/r/micromatch/anymatch?branch=master)
|
||||||
|
======
|
||||||
|
Javascript module to match a string against a regular expression, glob, string,
|
||||||
|
or function that takes the string as an argument and returns a truthy or falsy
|
||||||
|
value. The matcher can also be an array of any or all of these. Useful for
|
||||||
|
allowing a very flexible user-defined config to define things like file paths.
|
||||||
|
|
||||||
|
__Note: This module has Bash-parity, please be aware that Windows-style backslashes are not supported as separators. See https://github.com/micromatch/micromatch#backslashes for more information.__
|
||||||
|
|
||||||
|
|
||||||
|
Usage
|
||||||
|
-----
|
||||||
|
```sh
|
||||||
|
npm install anymatch
|
||||||
|
```
|
||||||
|
|
||||||
|
#### anymatch(matchers, testString, [returnIndex], [options])
|
||||||
|
* __matchers__: (_Array|String|RegExp|Function_)
|
||||||
|
String to be directly matched, string with glob patterns, regular expression
|
||||||
|
test, function that takes the testString as an argument and returns a truthy
|
||||||
|
value if it should be matched, or an array of any number and mix of these types.
|
||||||
|
* __testString__: (_String|Array_) The string to test against the matchers. If
|
||||||
|
passed as an array, the first element of the array will be used as the
|
||||||
|
`testString` for non-function matchers, while the entire array will be applied
|
||||||
|
as the arguments for function matchers.
|
||||||
|
* __options__: (_Object_ [optional]_) Any of the [picomatch](https://github.com/micromatch/picomatch#options) options.
|
||||||
|
* __returnIndex__: (_Boolean [optional]_) If true, return the array index of
|
||||||
|
the first matcher that that testString matched, or -1 if no match, instead of a
|
||||||
|
boolean result.
|
||||||
|
|
||||||
|
```js
|
||||||
|
const anymatch = require('anymatch');
|
||||||
|
|
||||||
|
const matchers = [ 'path/to/file.js', 'path/anyjs/**/*.js', /foo.js$/, string => string.includes('bar') && string.length > 10 ] ;
|
||||||
|
|
||||||
|
anymatch(matchers, 'path/to/file.js'); // true
|
||||||
|
anymatch(matchers, 'path/anyjs/baz.js'); // true
|
||||||
|
anymatch(matchers, 'path/to/foo.js'); // true
|
||||||
|
anymatch(matchers, 'path/to/bar.js'); // true
|
||||||
|
anymatch(matchers, 'bar.js'); // false
|
||||||
|
|
||||||
|
// returnIndex = true
|
||||||
|
anymatch(matchers, 'foo.js', {returnIndex: true}); // 2
|
||||||
|
anymatch(matchers, 'path/anyjs/foo.js', {returnIndex: true}); // 1
|
||||||
|
|
||||||
|
// any picomatc
|
||||||
|
|
||||||
|
// using globs to match directories and their children
|
||||||
|
anymatch('node_modules', 'node_modules'); // true
|
||||||
|
anymatch('node_modules', 'node_modules/somelib/index.js'); // false
|
||||||
|
anymatch('node_modules/**', 'node_modules/somelib/index.js'); // true
|
||||||
|
anymatch('node_modules/**', '/absolute/path/to/node_modules/somelib/index.js'); // false
|
||||||
|
anymatch('**/node_modules/**', '/absolute/path/to/node_modules/somelib/index.js'); // true
|
||||||
|
|
||||||
|
const matcher = anymatch(matchers);
|
||||||
|
['foo.js', 'bar.js'].filter(matcher); // [ 'foo.js' ]
|
||||||
|
anymatch master* ❯
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
#### anymatch(matchers)
|
||||||
|
You can also pass in only your matcher(s) to get a curried function that has
|
||||||
|
already been bound to the provided matching criteria. This can be used as an
|
||||||
|
`Array#filter` callback.
|
||||||
|
|
||||||
|
```js
|
||||||
|
var matcher = anymatch(matchers);
|
||||||
|
|
||||||
|
matcher('path/to/file.js'); // true
|
||||||
|
matcher('path/anyjs/baz.js', true); // 1
|
||||||
|
|
||||||
|
['foo.js', 'bar.js'].filter(matcher); // ['foo.js']
|
||||||
|
```
|
||||||
|
|
||||||
|
Changelog
|
||||||
|
----------
|
||||||
|
[See release notes page on GitHub](https://github.com/micromatch/anymatch/releases)
|
||||||
|
|
||||||
|
- **v3.0:** Removed `startIndex` and `endIndex` arguments. Node 8.x-only.
|
||||||
|
- **v2.0:** [micromatch](https://github.com/jonschlinkert/micromatch) moves away from minimatch-parity and inline with Bash. This includes handling backslashes differently (see https://github.com/micromatch/micromatch#backslashes for more information).
|
||||||
|
- **v1.2:** anymatch uses [micromatch](https://github.com/jonschlinkert/micromatch)
|
||||||
|
for glob pattern matching. Issues with glob pattern matching should be
|
||||||
|
reported directly to the [micromatch issue tracker](https://github.com/jonschlinkert/micromatch/issues).
|
||||||
|
|
||||||
|
License
|
||||||
|
-------
|
||||||
|
[ISC](https://raw.github.com/micromatch/anymatch/master/LICENSE)
|
20
node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch/index.d.ts
generated
vendored
Normal file
20
node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
type AnymatchFn = (testString: string) => boolean;
|
||||||
|
type AnymatchPattern = string|RegExp|AnymatchFn;
|
||||||
|
type AnymatchMatcher = AnymatchPattern|AnymatchPattern[]
|
||||||
|
type AnymatchTester = {
|
||||||
|
(testString: string|any[], returnIndex: true): number;
|
||||||
|
(testString: string|any[]): boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
type PicomatchOptions = {dot: boolean};
|
||||||
|
|
||||||
|
declare const anymatch: {
|
||||||
|
(matchers: AnymatchMatcher): AnymatchTester;
|
||||||
|
(matchers: AnymatchMatcher, testString: null, returnIndex: true | PicomatchOptions): AnymatchTester;
|
||||||
|
(matchers: AnymatchMatcher, testString: string|any[], returnIndex: true | PicomatchOptions): number;
|
||||||
|
(matchers: AnymatchMatcher, testString: string|any[]): boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export {AnymatchMatcher as Matcher}
|
||||||
|
export {AnymatchTester as Tester}
|
||||||
|
export default anymatch
|
104
node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch/index.js
generated
vendored
Normal file
104
node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch/index.js
generated
vendored
Normal file
@ -0,0 +1,104 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
|
|
||||||
|
const picomatch = require('picomatch');
|
||||||
|
const normalizePath = require('normalize-path');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {(testString: string) => boolean} AnymatchFn
|
||||||
|
* @typedef {string|RegExp|AnymatchFn} AnymatchPattern
|
||||||
|
* @typedef {AnymatchPattern|AnymatchPattern[]} AnymatchMatcher
|
||||||
|
*/
|
||||||
|
const BANG = '!';
|
||||||
|
const DEFAULT_OPTIONS = {returnIndex: false};
|
||||||
|
const arrify = (item) => Array.isArray(item) ? item : [item];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {AnymatchPattern} matcher
|
||||||
|
* @param {object} options
|
||||||
|
* @returns {AnymatchFn}
|
||||||
|
*/
|
||||||
|
const createPattern = (matcher, options) => {
|
||||||
|
if (typeof matcher === 'function') {
|
||||||
|
return matcher;
|
||||||
|
}
|
||||||
|
if (typeof matcher === 'string') {
|
||||||
|
const glob = picomatch(matcher, options);
|
||||||
|
return (string) => matcher === string || glob(string);
|
||||||
|
}
|
||||||
|
if (matcher instanceof RegExp) {
|
||||||
|
return (string) => matcher.test(string);
|
||||||
|
}
|
||||||
|
return (string) => false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {Array<Function>} patterns
|
||||||
|
* @param {Array<Function>} negPatterns
|
||||||
|
* @param {String|Array} args
|
||||||
|
* @param {Boolean} returnIndex
|
||||||
|
* @returns {boolean|number}
|
||||||
|
*/
|
||||||
|
const matchPatterns = (patterns, negPatterns, args, returnIndex) => {
|
||||||
|
const isList = Array.isArray(args);
|
||||||
|
const _path = isList ? args[0] : args;
|
||||||
|
if (!isList && typeof _path !== 'string') {
|
||||||
|
throw new TypeError('anymatch: second argument must be a string: got ' +
|
||||||
|
Object.prototype.toString.call(_path))
|
||||||
|
}
|
||||||
|
const path = normalizePath(_path, false);
|
||||||
|
|
||||||
|
for (let index = 0; index < negPatterns.length; index++) {
|
||||||
|
const nglob = negPatterns[index];
|
||||||
|
if (nglob(path)) {
|
||||||
|
return returnIndex ? -1 : false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const applied = isList && [path].concat(args.slice(1));
|
||||||
|
for (let index = 0; index < patterns.length; index++) {
|
||||||
|
const pattern = patterns[index];
|
||||||
|
if (isList ? pattern(...applied) : pattern(path)) {
|
||||||
|
return returnIndex ? index : true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return returnIndex ? -1 : false;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {AnymatchMatcher} matchers
|
||||||
|
* @param {Array|string} testString
|
||||||
|
* @param {object} options
|
||||||
|
* @returns {boolean|number|Function}
|
||||||
|
*/
|
||||||
|
const anymatch = (matchers, testString, options = DEFAULT_OPTIONS) => {
|
||||||
|
if (matchers == null) {
|
||||||
|
throw new TypeError('anymatch: specify first argument');
|
||||||
|
}
|
||||||
|
const opts = typeof options === 'boolean' ? {returnIndex: options} : options;
|
||||||
|
const returnIndex = opts.returnIndex || false;
|
||||||
|
|
||||||
|
// Early cache for matchers.
|
||||||
|
const mtchers = arrify(matchers);
|
||||||
|
const negatedGlobs = mtchers
|
||||||
|
.filter(item => typeof item === 'string' && item.charAt(0) === BANG)
|
||||||
|
.map(item => item.slice(1))
|
||||||
|
.map(item => picomatch(item, opts));
|
||||||
|
const patterns = mtchers
|
||||||
|
.filter(item => typeof item !== 'string' || (typeof item === 'string' && item.charAt(0) !== BANG))
|
||||||
|
.map(matcher => createPattern(matcher, opts));
|
||||||
|
|
||||||
|
if (testString == null) {
|
||||||
|
return (testString, ri = false) => {
|
||||||
|
const returnIndex = typeof ri === 'boolean' ? ri : false;
|
||||||
|
return matchPatterns(patterns, negatedGlobs, testString, returnIndex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return matchPatterns(patterns, negatedGlobs, testString, returnIndex);
|
||||||
|
};
|
||||||
|
|
||||||
|
anymatch.default = anymatch;
|
||||||
|
module.exports = anymatch;
|
48
node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch/package.json
generated
vendored
Normal file
48
node_modules/.pnpm/anymatch@3.1.3/node_modules/anymatch/package.json
generated
vendored
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
{
|
||||||
|
"name": "anymatch",
|
||||||
|
"version": "3.1.3",
|
||||||
|
"description": "Matches strings against configurable strings, globs, regular expressions, and/or functions",
|
||||||
|
"files": [
|
||||||
|
"index.js",
|
||||||
|
"index.d.ts"
|
||||||
|
],
|
||||||
|
"dependencies": {
|
||||||
|
"normalize-path": "^3.0.0",
|
||||||
|
"picomatch": "^2.0.4"
|
||||||
|
},
|
||||||
|
"author": {
|
||||||
|
"name": "Elan Shanker",
|
||||||
|
"url": "https://github.com/es128"
|
||||||
|
},
|
||||||
|
"license": "ISC",
|
||||||
|
"homepage": "https://github.com/micromatch/anymatch",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/micromatch/anymatch"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"match",
|
||||||
|
"any",
|
||||||
|
"string",
|
||||||
|
"file",
|
||||||
|
"fs",
|
||||||
|
"list",
|
||||||
|
"glob",
|
||||||
|
"regex",
|
||||||
|
"regexp",
|
||||||
|
"regular",
|
||||||
|
"expression",
|
||||||
|
"function"
|
||||||
|
],
|
||||||
|
"scripts": {
|
||||||
|
"test": "nyc mocha",
|
||||||
|
"mocha": "mocha"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"mocha": "^6.1.3",
|
||||||
|
"nyc": "^14.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 8"
|
||||||
|
}
|
||||||
|
}
|
21
node_modules/.pnpm/anymatch@3.1.3/node_modules/normalize-path/LICENSE
generated
vendored
Normal file
21
node_modules/.pnpm/anymatch@3.1.3/node_modules/normalize-path/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2014-2018, Jon Schlinkert.
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
127
node_modules/.pnpm/anymatch@3.1.3/node_modules/normalize-path/README.md
generated
vendored
Normal file
127
node_modules/.pnpm/anymatch@3.1.3/node_modules/normalize-path/README.md
generated
vendored
Normal file
@ -0,0 +1,127 @@
|
|||||||
|
# normalize-path [](https://www.npmjs.com/package/normalize-path) [](https://npmjs.org/package/normalize-path) [](https://npmjs.org/package/normalize-path) [](https://travis-ci.org/jonschlinkert/normalize-path)
|
||||||
|
|
||||||
|
> Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.
|
||||||
|
|
||||||
|
Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
Install with [npm](https://www.npmjs.com/):
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ npm install --save normalize-path
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
```js
|
||||||
|
const normalize = require('normalize-path');
|
||||||
|
|
||||||
|
console.log(normalize('\\foo\\bar\\baz\\'));
|
||||||
|
//=> '/foo/bar/baz'
|
||||||
|
```
|
||||||
|
|
||||||
|
**win32 namespaces**
|
||||||
|
|
||||||
|
```js
|
||||||
|
console.log(normalize('\\\\?\\UNC\\Server01\\user\\docs\\Letter.txt'));
|
||||||
|
//=> '//?/UNC/Server01/user/docs/Letter.txt'
|
||||||
|
|
||||||
|
console.log(normalize('\\\\.\\CdRomX'));
|
||||||
|
//=> '//./CdRomX'
|
||||||
|
```
|
||||||
|
|
||||||
|
**Consecutive slashes**
|
||||||
|
|
||||||
|
Condenses multiple consecutive forward slashes (except for leading slashes in win32 namespaces) to a single slash.
|
||||||
|
|
||||||
|
```js
|
||||||
|
console.log(normalize('.//foo//bar///////baz/'));
|
||||||
|
//=> './foo/bar/baz'
|
||||||
|
```
|
||||||
|
|
||||||
|
### Trailing slashes
|
||||||
|
|
||||||
|
By default trailing slashes are removed. Pass `false` as the last argument to disable this behavior and _**keep** trailing slashes_:
|
||||||
|
|
||||||
|
```js
|
||||||
|
console.log(normalize('foo\\bar\\baz\\', false)); //=> 'foo/bar/baz/'
|
||||||
|
console.log(normalize('./foo/bar/baz/', false)); //=> './foo/bar/baz/'
|
||||||
|
```
|
||||||
|
|
||||||
|
## Release history
|
||||||
|
|
||||||
|
### v3.0
|
||||||
|
|
||||||
|
No breaking changes in this release.
|
||||||
|
|
||||||
|
* a check was added to ensure that [win32 namespaces](https://msdn.microsoft.com/library/windows/desktop/aa365247(v=vs.85).aspx#namespaces) are handled properly by win32 `path.parse()` after a path has been normalized by this library.
|
||||||
|
* a minor optimization was made to simplify how the trailing separator was handled
|
||||||
|
|
||||||
|
## About
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Contributing</strong></summary>
|
||||||
|
|
||||||
|
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Running Tests</strong></summary>
|
||||||
|
|
||||||
|
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ npm install && npm test
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Building docs</strong></summary>
|
||||||
|
|
||||||
|
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
|
||||||
|
|
||||||
|
To generate the readme, run the following command:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ npm install -g verbose/verb#dev verb-generate-readme && verb
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
### Related projects
|
||||||
|
|
||||||
|
Other useful path-related libraries:
|
||||||
|
|
||||||
|
* [contains-path](https://www.npmjs.com/package/contains-path): Return true if a file path contains the given path. | [homepage](https://github.com/jonschlinkert/contains-path "Return true if a file path contains the given path.")
|
||||||
|
* [is-absolute](https://www.npmjs.com/package/is-absolute): Returns true if a file path is absolute. Does not rely on the path module… [more](https://github.com/jonschlinkert/is-absolute) | [homepage](https://github.com/jonschlinkert/is-absolute "Returns true if a file path is absolute. Does not rely on the path module and can be used as a polyfill for node.js native `path.isAbolute`.")
|
||||||
|
* [is-relative](https://www.npmjs.com/package/is-relative): Returns `true` if the path appears to be relative. | [homepage](https://github.com/jonschlinkert/is-relative "Returns `true` if the path appears to be relative.")
|
||||||
|
* [parse-filepath](https://www.npmjs.com/package/parse-filepath): Pollyfill for node.js `path.parse`, parses a filepath into an object. | [homepage](https://github.com/jonschlinkert/parse-filepath "Pollyfill for node.js `path.parse`, parses a filepath into an object.")
|
||||||
|
* [path-ends-with](https://www.npmjs.com/package/path-ends-with): Return `true` if a file path ends with the given string/suffix. | [homepage](https://github.com/jonschlinkert/path-ends-with "Return `true` if a file path ends with the given string/suffix.")
|
||||||
|
* [unixify](https://www.npmjs.com/package/unixify): Convert Windows file paths to unix paths. | [homepage](https://github.com/jonschlinkert/unixify "Convert Windows file paths to unix paths.")
|
||||||
|
|
||||||
|
### Contributors
|
||||||
|
|
||||||
|
| **Commits** | **Contributor** |
|
||||||
|
| --- | --- |
|
||||||
|
| 35 | [jonschlinkert](https://github.com/jonschlinkert) |
|
||||||
|
| 1 | [phated](https://github.com/phated) |
|
||||||
|
|
||||||
|
### Author
|
||||||
|
|
||||||
|
**Jon Schlinkert**
|
||||||
|
|
||||||
|
* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
|
||||||
|
* [GitHub Profile](https://github.com/jonschlinkert)
|
||||||
|
* [Twitter Profile](https://twitter.com/jonschlinkert)
|
||||||
|
|
||||||
|
### License
|
||||||
|
|
||||||
|
Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert).
|
||||||
|
Released under the [MIT License](LICENSE).
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
|
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on April 19, 2018._
|
35
node_modules/.pnpm/anymatch@3.1.3/node_modules/normalize-path/index.js
generated
vendored
Normal file
35
node_modules/.pnpm/anymatch@3.1.3/node_modules/normalize-path/index.js
generated
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
/*!
|
||||||
|
* normalize-path <https://github.com/jonschlinkert/normalize-path>
|
||||||
|
*
|
||||||
|
* Copyright (c) 2014-2018, Jon Schlinkert.
|
||||||
|
* Released under the MIT License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
module.exports = function(path, stripTrailing) {
|
||||||
|
if (typeof path !== 'string') {
|
||||||
|
throw new TypeError('expected path to be a string');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (path === '\\' || path === '/') return '/';
|
||||||
|
|
||||||
|
var len = path.length;
|
||||||
|
if (len <= 1) return path;
|
||||||
|
|
||||||
|
// ensure that win32 namespaces has two leading slashes, so that the path is
|
||||||
|
// handled properly by the win32 version of path.parse() after being normalized
|
||||||
|
// https://msdn.microsoft.com/library/windows/desktop/aa365247(v=vs.85).aspx#namespaces
|
||||||
|
var prefix = '';
|
||||||
|
if (len > 4 && path[3] === '\\') {
|
||||||
|
var ch = path[2];
|
||||||
|
if ((ch === '?' || ch === '.') && path.slice(0, 2) === '\\\\') {
|
||||||
|
path = path.slice(2);
|
||||||
|
prefix = '//';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var segs = path.split(/[/\\]+/);
|
||||||
|
if (stripTrailing !== false && segs[segs.length - 1] === '') {
|
||||||
|
segs.pop();
|
||||||
|
}
|
||||||
|
return prefix + segs.join('/');
|
||||||
|
};
|
77
node_modules/.pnpm/anymatch@3.1.3/node_modules/normalize-path/package.json
generated
vendored
Normal file
77
node_modules/.pnpm/anymatch@3.1.3/node_modules/normalize-path/package.json
generated
vendored
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
{
|
||||||
|
"name": "normalize-path",
|
||||||
|
"description": "Normalize slashes in a file path to be posix/unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes, unless disabled.",
|
||||||
|
"version": "3.0.0",
|
||||||
|
"homepage": "https://github.com/jonschlinkert/normalize-path",
|
||||||
|
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
||||||
|
"contributors": [
|
||||||
|
"Blaine Bublitz (https://twitter.com/BlaineBublitz)",
|
||||||
|
"Jon Schlinkert (http://twitter.com/jonschlinkert)"
|
||||||
|
],
|
||||||
|
"repository": "jonschlinkert/normalize-path",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/jonschlinkert/normalize-path/issues"
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"files": [
|
||||||
|
"index.js"
|
||||||
|
],
|
||||||
|
"main": "index.js",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=0.10.0"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "mocha"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"gulp-format-md": "^1.0.0",
|
||||||
|
"minimist": "^1.2.0",
|
||||||
|
"mocha": "^3.5.3"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"absolute",
|
||||||
|
"backslash",
|
||||||
|
"delimiter",
|
||||||
|
"file",
|
||||||
|
"file-path",
|
||||||
|
"filepath",
|
||||||
|
"fix",
|
||||||
|
"forward",
|
||||||
|
"fp",
|
||||||
|
"fs",
|
||||||
|
"normalize",
|
||||||
|
"path",
|
||||||
|
"relative",
|
||||||
|
"separator",
|
||||||
|
"slash",
|
||||||
|
"slashes",
|
||||||
|
"trailing",
|
||||||
|
"unix",
|
||||||
|
"urix"
|
||||||
|
],
|
||||||
|
"verb": {
|
||||||
|
"toc": false,
|
||||||
|
"layout": "default",
|
||||||
|
"tasks": [
|
||||||
|
"readme"
|
||||||
|
],
|
||||||
|
"plugins": [
|
||||||
|
"gulp-format-md"
|
||||||
|
],
|
||||||
|
"related": {
|
||||||
|
"description": "Other useful path-related libraries:",
|
||||||
|
"list": [
|
||||||
|
"contains-path",
|
||||||
|
"is-absolute",
|
||||||
|
"is-relative",
|
||||||
|
"parse-filepath",
|
||||||
|
"path-ends-with",
|
||||||
|
"path-ends-with",
|
||||||
|
"unixify"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"lint": {
|
||||||
|
"reflinks": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
136
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/CHANGELOG.md
generated
vendored
Normal file
136
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/CHANGELOG.md
generated
vendored
Normal file
@ -0,0 +1,136 @@
|
|||||||
|
# Release history
|
||||||
|
|
||||||
|
**All notable changes to this project will be documented in this file.**
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
||||||
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Guiding Principles</strong></summary>
|
||||||
|
|
||||||
|
- Changelogs are for humans, not machines.
|
||||||
|
- There should be an entry for every single version.
|
||||||
|
- The same types of changes should be grouped.
|
||||||
|
- Versions and sections should be linkable.
|
||||||
|
- The latest version comes first.
|
||||||
|
- The release date of each versions is displayed.
|
||||||
|
- Mention whether you follow Semantic Versioning.
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Types of changes</strong></summary>
|
||||||
|
|
||||||
|
Changelog entries are classified using the following labels _(from [keep-a-changelog](http://keepachangelog.com/)_):
|
||||||
|
|
||||||
|
- `Added` for new features.
|
||||||
|
- `Changed` for changes in existing functionality.
|
||||||
|
- `Deprecated` for soon-to-be removed features.
|
||||||
|
- `Removed` for now removed features.
|
||||||
|
- `Fixed` for any bug fixes.
|
||||||
|
- `Security` in case of vulnerabilities.
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
## 2.3.1 (2022-01-02)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
* Fixes bug when a pattern containing an expression after the closing parenthesis (`/!(*.d).{ts,tsx}`) was incorrectly converted to regexp ([9f241ef](https://github.com/micromatch/picomatch/commit/9f241ef)).
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Some documentation improvements ([f81d236](https://github.com/micromatch/picomatch/commit/f81d236), [421e0e7](https://github.com/micromatch/picomatch/commit/421e0e7)).
|
||||||
|
|
||||||
|
## 2.3.0 (2021-05-21)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
* Fixes bug where file names with two dots were not being matched consistently with negation extglobs containing a star ([56083ef](https://github.com/micromatch/picomatch/commit/56083ef))
|
||||||
|
|
||||||
|
## 2.2.3 (2021-04-10)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
* Do not skip pattern seperator for square brackets ([fb08a30](https://github.com/micromatch/picomatch/commit/fb08a30)).
|
||||||
|
* Set negatedExtGlob also if it does not span the whole pattern ([032e3f5](https://github.com/micromatch/picomatch/commit/032e3f5)).
|
||||||
|
|
||||||
|
## 2.2.2 (2020-03-21)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
* Correctly handle parts of the pattern after parentheses in the `scan` method ([e15b920](https://github.com/micromatch/picomatch/commit/e15b920)).
|
||||||
|
|
||||||
|
## 2.2.1 (2020-01-04)
|
||||||
|
|
||||||
|
* Fixes [#49](https://github.com/micromatch/picomatch/issues/49), so that braces with no sets or ranges are now propertly treated as literals.
|
||||||
|
|
||||||
|
## 2.2.0 (2020-01-04)
|
||||||
|
|
||||||
|
* Disable fastpaths mode for the parse method ([5b8d33f](https://github.com/micromatch/picomatch/commit/5b8d33f))
|
||||||
|
* Add `tokens`, `slashes`, and `parts` to the object returned by `picomatch.scan()`.
|
||||||
|
|
||||||
|
## 2.1.0 (2019-10-31)
|
||||||
|
|
||||||
|
* add benchmarks for scan ([4793b92](https://github.com/micromatch/picomatch/commit/4793b92))
|
||||||
|
* Add eslint object-curly-spacing rule ([707c650](https://github.com/micromatch/picomatch/commit/707c650))
|
||||||
|
* Add prefer-const eslint rule ([5c7501c](https://github.com/micromatch/picomatch/commit/5c7501c))
|
||||||
|
* Add support for nonegate in scan API ([275c9b9](https://github.com/micromatch/picomatch/commit/275c9b9))
|
||||||
|
* Change lets to consts. Move root import up. ([4840625](https://github.com/micromatch/picomatch/commit/4840625))
|
||||||
|
* closes https://github.com/micromatch/picomatch/issues/21 ([766bcb0](https://github.com/micromatch/picomatch/commit/766bcb0))
|
||||||
|
* Fix "Extglobs" table in readme ([eb19da8](https://github.com/micromatch/picomatch/commit/eb19da8))
|
||||||
|
* fixes https://github.com/micromatch/picomatch/issues/20 ([9caca07](https://github.com/micromatch/picomatch/commit/9caca07))
|
||||||
|
* fixes https://github.com/micromatch/picomatch/issues/26 ([fa58f45](https://github.com/micromatch/picomatch/commit/fa58f45))
|
||||||
|
* Lint test ([d433a34](https://github.com/micromatch/picomatch/commit/d433a34))
|
||||||
|
* lint unit tests ([0159b55](https://github.com/micromatch/picomatch/commit/0159b55))
|
||||||
|
* Make scan work with noext ([6c02e03](https://github.com/micromatch/picomatch/commit/6c02e03))
|
||||||
|
* minor linting ([c2a2b87](https://github.com/micromatch/picomatch/commit/c2a2b87))
|
||||||
|
* minor parser improvements ([197671d](https://github.com/micromatch/picomatch/commit/197671d))
|
||||||
|
* remove eslint since it... ([07876fa](https://github.com/micromatch/picomatch/commit/07876fa))
|
||||||
|
* remove funding file ([8ebe96d](https://github.com/micromatch/picomatch/commit/8ebe96d))
|
||||||
|
* Remove unused funks ([cbc6d54](https://github.com/micromatch/picomatch/commit/cbc6d54))
|
||||||
|
* Run eslint during pretest, fix existing eslint findings ([0682367](https://github.com/micromatch/picomatch/commit/0682367))
|
||||||
|
* support `noparen` in scan ([3d37569](https://github.com/micromatch/picomatch/commit/3d37569))
|
||||||
|
* update changelog ([7b34e77](https://github.com/micromatch/picomatch/commit/7b34e77))
|
||||||
|
* update travis ([777f038](https://github.com/micromatch/picomatch/commit/777f038))
|
||||||
|
* Use eslint-disable-next-line instead of eslint-disable ([4e7c1fd](https://github.com/micromatch/picomatch/commit/4e7c1fd))
|
||||||
|
|
||||||
|
## 2.0.7 (2019-05-14)
|
||||||
|
|
||||||
|
* 2.0.7 ([9eb9a71](https://github.com/micromatch/picomatch/commit/9eb9a71))
|
||||||
|
* supports lookbehinds ([1f63f7e](https://github.com/micromatch/picomatch/commit/1f63f7e))
|
||||||
|
* update .verb.md file with typo change ([2741279](https://github.com/micromatch/picomatch/commit/2741279))
|
||||||
|
* fix: typo in README ([0753e44](https://github.com/micromatch/picomatch/commit/0753e44))
|
||||||
|
|
||||||
|
## 2.0.4 (2019-04-10)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Readme link [fixed](https://github.com/micromatch/picomatch/pull/13/commits/a96ab3aa2b11b6861c23289964613d85563b05df) by @danez.
|
||||||
|
- `options.capture` now works as expected when fastpaths are enabled. See https://github.com/micromatch/picomatch/pull/12/commits/26aefd71f1cfaf95c37f1c1fcab68a693b037304. Thanks to @DrPizza.
|
||||||
|
|
||||||
|
## 2.0.0 (2019-04-10)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Adds support for `options.onIgnore`. See the readme for details
|
||||||
|
- Adds support for `options.onResult`. See the readme for details
|
||||||
|
|
||||||
|
### Breaking changes
|
||||||
|
|
||||||
|
- The unixify option was renamed to `windows`
|
||||||
|
- caching and all related options and methods have been removed
|
||||||
|
|
||||||
|
## 1.0.0 (2018-11-05)
|
||||||
|
|
||||||
|
- adds `.onMatch` option
|
||||||
|
- improvements to `.scan` method
|
||||||
|
- numerous improvements and optimizations for matching and parsing
|
||||||
|
- better windows path handling
|
||||||
|
|
||||||
|
## 0.1.0 - 2017-04-13
|
||||||
|
|
||||||
|
First release.
|
||||||
|
|
||||||
|
|
||||||
|
[keep-a-changelog]: https://github.com/olivierlacan/keep-a-changelog
|
21
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/LICENSE
generated
vendored
Normal file
21
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2017-present, Jon Schlinkert.
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
708
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/README.md
generated
vendored
Normal file
708
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/README.md
generated
vendored
Normal file
@ -0,0 +1,708 @@
|
|||||||
|
<h1 align="center">Picomatch</h1>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<a href="https://npmjs.org/package/picomatch">
|
||||||
|
<img src="https://img.shields.io/npm/v/picomatch.svg" alt="version">
|
||||||
|
</a>
|
||||||
|
<a href="https://github.com/micromatch/picomatch/actions?workflow=Tests">
|
||||||
|
<img src="https://github.com/micromatch/picomatch/workflows/Tests/badge.svg" alt="test status">
|
||||||
|
</a>
|
||||||
|
<a href="https://coveralls.io/github/micromatch/picomatch">
|
||||||
|
<img src="https://img.shields.io/coveralls/github/micromatch/picomatch/master.svg" alt="coverage status">
|
||||||
|
</a>
|
||||||
|
<a href="https://npmjs.org/package/picomatch">
|
||||||
|
<img src="https://img.shields.io/npm/dm/picomatch.svg" alt="downloads">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<p align="center">
|
||||||
|
<strong>Blazing fast and accurate glob matcher written in JavaScript.</strong></br>
|
||||||
|
<em>No dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.</em>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
## Why picomatch?
|
||||||
|
|
||||||
|
* **Lightweight** - No dependencies
|
||||||
|
* **Minimal** - Tiny API surface. Main export is a function that takes a glob pattern and returns a matcher function.
|
||||||
|
* **Fast** - Loads in about 2ms (that's several times faster than a [single frame of a HD movie](http://www.endmemo.com/sconvert/framespersecondframespermillisecond.php) at 60fps)
|
||||||
|
* **Performant** - Use the returned matcher function to speed up repeat matching (like when watching files)
|
||||||
|
* **Accurate matching** - Using wildcards (`*` and `?`), globstars (`**`) for nested directories, [advanced globbing](#advanced-globbing) with extglobs, braces, and POSIX brackets, and support for escaping special characters with `\` or quotes.
|
||||||
|
* **Well tested** - Thousands of unit tests
|
||||||
|
|
||||||
|
See the [library comparison](#library-comparisons) to other libraries.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
## Table of Contents
|
||||||
|
|
||||||
|
<details><summary> Click to expand </summary>
|
||||||
|
|
||||||
|
- [Install](#install)
|
||||||
|
- [Usage](#usage)
|
||||||
|
- [API](#api)
|
||||||
|
* [picomatch](#picomatch)
|
||||||
|
* [.test](#test)
|
||||||
|
* [.matchBase](#matchbase)
|
||||||
|
* [.isMatch](#ismatch)
|
||||||
|
* [.parse](#parse)
|
||||||
|
* [.scan](#scan)
|
||||||
|
* [.compileRe](#compilere)
|
||||||
|
* [.makeRe](#makere)
|
||||||
|
* [.toRegex](#toregex)
|
||||||
|
- [Options](#options)
|
||||||
|
* [Picomatch options](#picomatch-options)
|
||||||
|
* [Scan Options](#scan-options)
|
||||||
|
* [Options Examples](#options-examples)
|
||||||
|
- [Globbing features](#globbing-features)
|
||||||
|
* [Basic globbing](#basic-globbing)
|
||||||
|
* [Advanced globbing](#advanced-globbing)
|
||||||
|
* [Braces](#braces)
|
||||||
|
* [Matching special characters as literals](#matching-special-characters-as-literals)
|
||||||
|
- [Library Comparisons](#library-comparisons)
|
||||||
|
- [Benchmarks](#benchmarks)
|
||||||
|
- [Philosophies](#philosophies)
|
||||||
|
- [About](#about)
|
||||||
|
* [Author](#author)
|
||||||
|
* [License](#license)
|
||||||
|
|
||||||
|
_(TOC generated by [verb](https://github.com/verbose/verb) using [markdown-toc](https://github.com/jonschlinkert/markdown-toc))_
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
Install with [npm](https://www.npmjs.com/):
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install --save picomatch
|
||||||
|
```
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
The main export is a function that takes a glob pattern and an options object and returns a function for matching strings.
|
||||||
|
|
||||||
|
```js
|
||||||
|
const pm = require('picomatch');
|
||||||
|
const isMatch = pm('*.js');
|
||||||
|
|
||||||
|
console.log(isMatch('abcd')); //=> false
|
||||||
|
console.log(isMatch('a.js')); //=> true
|
||||||
|
console.log(isMatch('a.md')); //=> false
|
||||||
|
console.log(isMatch('a/b.js')); //=> false
|
||||||
|
```
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
## API
|
||||||
|
|
||||||
|
### [picomatch](lib/picomatch.js#L32)
|
||||||
|
|
||||||
|
Creates a matcher function from one or more glob patterns. The returned function takes a string to match as its first argument, and returns true if the string is a match. The returned matcher function also takes a boolean as the second argument that, when true, returns an object with additional information.
|
||||||
|
|
||||||
|
**Params**
|
||||||
|
|
||||||
|
* `globs` **{String|Array}**: One or more glob patterns.
|
||||||
|
* `options` **{Object=}**
|
||||||
|
* `returns` **{Function=}**: Returns a matcher function.
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
```js
|
||||||
|
const picomatch = require('picomatch');
|
||||||
|
// picomatch(glob[, options]);
|
||||||
|
|
||||||
|
const isMatch = picomatch('*.!(*a)');
|
||||||
|
console.log(isMatch('a.a')); //=> false
|
||||||
|
console.log(isMatch('a.b')); //=> true
|
||||||
|
```
|
||||||
|
|
||||||
|
### [.test](lib/picomatch.js#L117)
|
||||||
|
|
||||||
|
Test `input` with the given `regex`. This is used by the main `picomatch()` function to test the input string.
|
||||||
|
|
||||||
|
**Params**
|
||||||
|
|
||||||
|
* `input` **{String}**: String to test.
|
||||||
|
* `regex` **{RegExp}**
|
||||||
|
* `returns` **{Object}**: Returns an object with matching info.
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
```js
|
||||||
|
const picomatch = require('picomatch');
|
||||||
|
// picomatch.test(input, regex[, options]);
|
||||||
|
|
||||||
|
console.log(picomatch.test('foo/bar', /^(?:([^/]*?)\/([^/]*?))$/));
|
||||||
|
// { isMatch: true, match: [ 'foo/', 'foo', 'bar' ], output: 'foo/bar' }
|
||||||
|
```
|
||||||
|
|
||||||
|
### [.matchBase](lib/picomatch.js#L161)
|
||||||
|
|
||||||
|
Match the basename of a filepath.
|
||||||
|
|
||||||
|
**Params**
|
||||||
|
|
||||||
|
* `input` **{String}**: String to test.
|
||||||
|
* `glob` **{RegExp|String}**: Glob pattern or regex created by [.makeRe](#makeRe).
|
||||||
|
* `returns` **{Boolean}**
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
```js
|
||||||
|
const picomatch = require('picomatch');
|
||||||
|
// picomatch.matchBase(input, glob[, options]);
|
||||||
|
console.log(picomatch.matchBase('foo/bar.js', '*.js'); // true
|
||||||
|
```
|
||||||
|
|
||||||
|
### [.isMatch](lib/picomatch.js#L183)
|
||||||
|
|
||||||
|
Returns true if **any** of the given glob `patterns` match the specified `string`.
|
||||||
|
|
||||||
|
**Params**
|
||||||
|
|
||||||
|
* **{String|Array}**: str The string to test.
|
||||||
|
* **{String|Array}**: patterns One or more glob patterns to use for matching.
|
||||||
|
* **{Object}**: See available [options](#options).
|
||||||
|
* `returns` **{Boolean}**: Returns true if any patterns match `str`
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
```js
|
||||||
|
const picomatch = require('picomatch');
|
||||||
|
// picomatch.isMatch(string, patterns[, options]);
|
||||||
|
|
||||||
|
console.log(picomatch.isMatch('a.a', ['b.*', '*.a'])); //=> true
|
||||||
|
console.log(picomatch.isMatch('a.a', 'b.*')); //=> false
|
||||||
|
```
|
||||||
|
|
||||||
|
### [.parse](lib/picomatch.js#L199)
|
||||||
|
|
||||||
|
Parse a glob pattern to create the source string for a regular expression.
|
||||||
|
|
||||||
|
**Params**
|
||||||
|
|
||||||
|
* `pattern` **{String}**
|
||||||
|
* `options` **{Object}**
|
||||||
|
* `returns` **{Object}**: Returns an object with useful properties and output to be used as a regex source string.
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
```js
|
||||||
|
const picomatch = require('picomatch');
|
||||||
|
const result = picomatch.parse(pattern[, options]);
|
||||||
|
```
|
||||||
|
|
||||||
|
### [.scan](lib/picomatch.js#L231)
|
||||||
|
|
||||||
|
Scan a glob pattern to separate the pattern into segments.
|
||||||
|
|
||||||
|
**Params**
|
||||||
|
|
||||||
|
* `input` **{String}**: Glob pattern to scan.
|
||||||
|
* `options` **{Object}**
|
||||||
|
* `returns` **{Object}**: Returns an object with
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
```js
|
||||||
|
const picomatch = require('picomatch');
|
||||||
|
// picomatch.scan(input[, options]);
|
||||||
|
|
||||||
|
const result = picomatch.scan('!./foo/*.js');
|
||||||
|
console.log(result);
|
||||||
|
{ prefix: '!./',
|
||||||
|
input: '!./foo/*.js',
|
||||||
|
start: 3,
|
||||||
|
base: 'foo',
|
||||||
|
glob: '*.js',
|
||||||
|
isBrace: false,
|
||||||
|
isBracket: false,
|
||||||
|
isGlob: true,
|
||||||
|
isExtglob: false,
|
||||||
|
isGlobstar: false,
|
||||||
|
negated: true }
|
||||||
|
```
|
||||||
|
|
||||||
|
### [.compileRe](lib/picomatch.js#L245)
|
||||||
|
|
||||||
|
Compile a regular expression from the `state` object returned by the
|
||||||
|
[parse()](#parse) method.
|
||||||
|
|
||||||
|
**Params**
|
||||||
|
|
||||||
|
* `state` **{Object}**
|
||||||
|
* `options` **{Object}**
|
||||||
|
* `returnOutput` **{Boolean}**: Intended for implementors, this argument allows you to return the raw output from the parser.
|
||||||
|
* `returnState` **{Boolean}**: Adds the state to a `state` property on the returned regex. Useful for implementors and debugging.
|
||||||
|
* `returns` **{RegExp}**
|
||||||
|
|
||||||
|
### [.makeRe](lib/picomatch.js#L286)
|
||||||
|
|
||||||
|
Create a regular expression from a parsed glob pattern.
|
||||||
|
|
||||||
|
**Params**
|
||||||
|
|
||||||
|
* `state` **{String}**: The object returned from the `.parse` method.
|
||||||
|
* `options` **{Object}**
|
||||||
|
* `returnOutput` **{Boolean}**: Implementors may use this argument to return the compiled output, instead of a regular expression. This is not exposed on the options to prevent end-users from mutating the result.
|
||||||
|
* `returnState` **{Boolean}**: Implementors may use this argument to return the state from the parsed glob with the returned regular expression.
|
||||||
|
* `returns` **{RegExp}**: Returns a regex created from the given pattern.
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
```js
|
||||||
|
const picomatch = require('picomatch');
|
||||||
|
const state = picomatch.parse('*.js');
|
||||||
|
// picomatch.compileRe(state[, options]);
|
||||||
|
|
||||||
|
console.log(picomatch.compileRe(state));
|
||||||
|
//=> /^(?:(?!\.)(?=.)[^/]*?\.js)$/
|
||||||
|
```
|
||||||
|
|
||||||
|
### [.toRegex](lib/picomatch.js#L321)
|
||||||
|
|
||||||
|
Create a regular expression from the given regex source string.
|
||||||
|
|
||||||
|
**Params**
|
||||||
|
|
||||||
|
* `source` **{String}**: Regular expression source string.
|
||||||
|
* `options` **{Object}**
|
||||||
|
* `returns` **{RegExp}**
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
```js
|
||||||
|
const picomatch = require('picomatch');
|
||||||
|
// picomatch.toRegex(source[, options]);
|
||||||
|
|
||||||
|
const { output } = picomatch.parse('*.js');
|
||||||
|
console.log(picomatch.toRegex(output));
|
||||||
|
//=> /^(?:(?!\.)(?=.)[^/]*?\.js)$/
|
||||||
|
```
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
## Options
|
||||||
|
|
||||||
|
### Picomatch options
|
||||||
|
|
||||||
|
The following options may be used with the main `picomatch()` function or any of the methods on the picomatch API.
|
||||||
|
|
||||||
|
| **Option** | **Type** | **Default value** | **Description** |
|
||||||
|
| --- | --- | --- | --- |
|
||||||
|
| `basename` | `boolean` | `false` | If set, then patterns without slashes will be matched against the basename of the path if it contains slashes. For example, `a?b` would match the path `/xyz/123/acb`, but not `/xyz/acb/123`. |
|
||||||
|
| `bash` | `boolean` | `false` | Follow bash matching rules more strictly - disallows backslashes as escape characters, and treats single stars as globstars (`**`). |
|
||||||
|
| `capture` | `boolean` | `undefined` | Return regex matches in supporting methods. |
|
||||||
|
| `contains` | `boolean` | `undefined` | Allows glob to match any part of the given string(s). |
|
||||||
|
| `cwd` | `string` | `process.cwd()` | Current working directory. Used by `picomatch.split()` |
|
||||||
|
| `debug` | `boolean` | `undefined` | Debug regular expressions when an error is thrown. |
|
||||||
|
| `dot` | `boolean` | `false` | Enable dotfile matching. By default, dotfiles are ignored unless a `.` is explicitly defined in the pattern, or `options.dot` is true |
|
||||||
|
| `expandRange` | `function` | `undefined` | Custom function for expanding ranges in brace patterns, such as `{a..z}`. The function receives the range values as two arguments, and it must return a string to be used in the generated regex. It's recommended that returned strings be wrapped in parentheses. |
|
||||||
|
| `failglob` | `boolean` | `false` | Throws an error if no matches are found. Based on the bash option of the same name. |
|
||||||
|
| `fastpaths` | `boolean` | `true` | To speed up processing, full parsing is skipped for a handful common glob patterns. Disable this behavior by setting this option to `false`. |
|
||||||
|
| `flags` | `string` | `undefined` | Regex flags to use in the generated regex. If defined, the `nocase` option will be overridden. |
|
||||||
|
| [format](#optionsformat) | `function` | `undefined` | Custom function for formatting the returned string. This is useful for removing leading slashes, converting Windows paths to Posix paths, etc. |
|
||||||
|
| `ignore` | `array\|string` | `undefined` | One or more glob patterns for excluding strings that should not be matched from the result. |
|
||||||
|
| `keepQuotes` | `boolean` | `false` | Retain quotes in the generated regex, since quotes may also be used as an alternative to backslashes. |
|
||||||
|
| `literalBrackets` | `boolean` | `undefined` | When `true`, brackets in the glob pattern will be escaped so that only literal brackets will be matched. |
|
||||||
|
| `matchBase` | `boolean` | `false` | Alias for `basename` |
|
||||||
|
| `maxLength` | `boolean` | `65536` | Limit the max length of the input string. An error is thrown if the input string is longer than this value. |
|
||||||
|
| `nobrace` | `boolean` | `false` | Disable brace matching, so that `{a,b}` and `{1..3}` would be treated as literal characters. |
|
||||||
|
| `nobracket` | `boolean` | `undefined` | Disable matching with regex brackets. |
|
||||||
|
| `nocase` | `boolean` | `false` | Make matching case-insensitive. Equivalent to the regex `i` flag. Note that this option is overridden by the `flags` option. |
|
||||||
|
| `nodupes` | `boolean` | `true` | Deprecated, use `nounique` instead. This option will be removed in a future major release. By default duplicates are removed. Disable uniquification by setting this option to false. |
|
||||||
|
| `noext` | `boolean` | `false` | Alias for `noextglob` |
|
||||||
|
| `noextglob` | `boolean` | `false` | Disable support for matching with extglobs (like `+(a\|b)`) |
|
||||||
|
| `noglobstar` | `boolean` | `false` | Disable support for matching nested directories with globstars (`**`) |
|
||||||
|
| `nonegate` | `boolean` | `false` | Disable support for negating with leading `!` |
|
||||||
|
| `noquantifiers` | `boolean` | `false` | Disable support for regex quantifiers (like `a{1,2}`) and treat them as brace patterns to be expanded. |
|
||||||
|
| [onIgnore](#optionsonIgnore) | `function` | `undefined` | Function to be called on ignored items. |
|
||||||
|
| [onMatch](#optionsonMatch) | `function` | `undefined` | Function to be called on matched items. |
|
||||||
|
| [onResult](#optionsonResult) | `function` | `undefined` | Function to be called on all items, regardless of whether or not they are matched or ignored. |
|
||||||
|
| `posix` | `boolean` | `false` | Support POSIX character classes ("posix brackets"). |
|
||||||
|
| `posixSlashes` | `boolean` | `undefined` | Convert all slashes in file paths to forward slashes. This does not convert slashes in the glob pattern itself |
|
||||||
|
| `prepend` | `boolean` | `undefined` | String to prepend to the generated regex used for matching. |
|
||||||
|
| `regex` | `boolean` | `false` | Use regular expression rules for `+` (instead of matching literal `+`), and for stars that follow closing parentheses or brackets (as in `)*` and `]*`). |
|
||||||
|
| `strictBrackets` | `boolean` | `undefined` | Throw an error if brackets, braces, or parens are imbalanced. |
|
||||||
|
| `strictSlashes` | `boolean` | `undefined` | When true, picomatch won't match trailing slashes with single stars. |
|
||||||
|
| `unescape` | `boolean` | `undefined` | Remove backslashes preceding escaped characters in the glob pattern. By default, backslashes are retained. |
|
||||||
|
| `unixify` | `boolean` | `undefined` | Alias for `posixSlashes`, for backwards compatibility. |
|
||||||
|
|
||||||
|
picomatch has automatic detection for regex positive and negative lookbehinds. If the pattern contains a negative lookbehind, you must be using Node.js >= 8.10 or else picomatch will throw an error.
|
||||||
|
|
||||||
|
### Scan Options
|
||||||
|
|
||||||
|
In addition to the main [picomatch options](#picomatch-options), the following options may also be used with the [.scan](#scan) method.
|
||||||
|
|
||||||
|
| **Option** | **Type** | **Default value** | **Description** |
|
||||||
|
| --- | --- | --- | --- |
|
||||||
|
| `tokens` | `boolean` | `false` | When `true`, the returned object will include an array of tokens (objects), representing each path "segment" in the scanned glob pattern |
|
||||||
|
| `parts` | `boolean` | `false` | When `true`, the returned object will include an array of strings representing each path "segment" in the scanned glob pattern. This is automatically enabled when `options.tokens` is true |
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
```js
|
||||||
|
const picomatch = require('picomatch');
|
||||||
|
const result = picomatch.scan('!./foo/*.js', { tokens: true });
|
||||||
|
console.log(result);
|
||||||
|
// {
|
||||||
|
// prefix: '!./',
|
||||||
|
// input: '!./foo/*.js',
|
||||||
|
// start: 3,
|
||||||
|
// base: 'foo',
|
||||||
|
// glob: '*.js',
|
||||||
|
// isBrace: false,
|
||||||
|
// isBracket: false,
|
||||||
|
// isGlob: true,
|
||||||
|
// isExtglob: false,
|
||||||
|
// isGlobstar: false,
|
||||||
|
// negated: true,
|
||||||
|
// maxDepth: 2,
|
||||||
|
// tokens: [
|
||||||
|
// { value: '!./', depth: 0, isGlob: false, negated: true, isPrefix: true },
|
||||||
|
// { value: 'foo', depth: 1, isGlob: false },
|
||||||
|
// { value: '*.js', depth: 1, isGlob: true }
|
||||||
|
// ],
|
||||||
|
// slashes: [ 2, 6 ],
|
||||||
|
// parts: [ 'foo', '*.js' ]
|
||||||
|
// }
|
||||||
|
```
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
### Options Examples
|
||||||
|
|
||||||
|
#### options.expandRange
|
||||||
|
|
||||||
|
**Type**: `function`
|
||||||
|
|
||||||
|
**Default**: `undefined`
|
||||||
|
|
||||||
|
Custom function for expanding ranges in brace patterns. The [fill-range](https://github.com/jonschlinkert/fill-range) library is ideal for this purpose, or you can use custom code to do whatever you need.
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
The following example shows how to create a glob that matches a folder
|
||||||
|
|
||||||
|
```js
|
||||||
|
const fill = require('fill-range');
|
||||||
|
const regex = pm.makeRe('foo/{01..25}/bar', {
|
||||||
|
expandRange(a, b) {
|
||||||
|
return `(${fill(a, b, { toRegex: true })})`;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log(regex);
|
||||||
|
//=> /^(?:foo\/((?:0[1-9]|1[0-9]|2[0-5]))\/bar)$/
|
||||||
|
|
||||||
|
console.log(regex.test('foo/00/bar')) // false
|
||||||
|
console.log(regex.test('foo/01/bar')) // true
|
||||||
|
console.log(regex.test('foo/10/bar')) // true
|
||||||
|
console.log(regex.test('foo/22/bar')) // true
|
||||||
|
console.log(regex.test('foo/25/bar')) // true
|
||||||
|
console.log(regex.test('foo/26/bar')) // false
|
||||||
|
```
|
||||||
|
|
||||||
|
#### options.format
|
||||||
|
|
||||||
|
**Type**: `function`
|
||||||
|
|
||||||
|
**Default**: `undefined`
|
||||||
|
|
||||||
|
Custom function for formatting strings before they're matched.
|
||||||
|
|
||||||
|
**Example**
|
||||||
|
|
||||||
|
```js
|
||||||
|
// strip leading './' from strings
|
||||||
|
const format = str => str.replace(/^\.\//, '');
|
||||||
|
const isMatch = picomatch('foo/*.js', { format });
|
||||||
|
console.log(isMatch('./foo/bar.js')); //=> true
|
||||||
|
```
|
||||||
|
|
||||||
|
#### options.onMatch
|
||||||
|
|
||||||
|
```js
|
||||||
|
const onMatch = ({ glob, regex, input, output }) => {
|
||||||
|
console.log({ glob, regex, input, output });
|
||||||
|
};
|
||||||
|
|
||||||
|
const isMatch = picomatch('*', { onMatch });
|
||||||
|
isMatch('foo');
|
||||||
|
isMatch('bar');
|
||||||
|
isMatch('baz');
|
||||||
|
```
|
||||||
|
|
||||||
|
#### options.onIgnore
|
||||||
|
|
||||||
|
```js
|
||||||
|
const onIgnore = ({ glob, regex, input, output }) => {
|
||||||
|
console.log({ glob, regex, input, output });
|
||||||
|
};
|
||||||
|
|
||||||
|
const isMatch = picomatch('*', { onIgnore, ignore: 'f*' });
|
||||||
|
isMatch('foo');
|
||||||
|
isMatch('bar');
|
||||||
|
isMatch('baz');
|
||||||
|
```
|
||||||
|
|
||||||
|
#### options.onResult
|
||||||
|
|
||||||
|
```js
|
||||||
|
const onResult = ({ glob, regex, input, output }) => {
|
||||||
|
console.log({ glob, regex, input, output });
|
||||||
|
};
|
||||||
|
|
||||||
|
const isMatch = picomatch('*', { onResult, ignore: 'f*' });
|
||||||
|
isMatch('foo');
|
||||||
|
isMatch('bar');
|
||||||
|
isMatch('baz');
|
||||||
|
```
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
## Globbing features
|
||||||
|
|
||||||
|
* [Basic globbing](#basic-globbing) (Wildcard matching)
|
||||||
|
* [Advanced globbing](#advanced-globbing) (extglobs, posix brackets, brace matching)
|
||||||
|
|
||||||
|
### Basic globbing
|
||||||
|
|
||||||
|
| **Character** | **Description** |
|
||||||
|
| --- | --- |
|
||||||
|
| `*` | Matches any character zero or more times, excluding path separators. Does _not match_ path separators or hidden files or directories ("dotfiles"), unless explicitly enabled by setting the `dot` option to `true`. |
|
||||||
|
| `**` | Matches any character zero or more times, including path separators. Note that `**` will only match path separators (`/`, and `\\` on Windows) when they are the only characters in a path segment. Thus, `foo**/bar` is equivalent to `foo*/bar`, and `foo/a**b/bar` is equivalent to `foo/a*b/bar`, and _more than two_ consecutive stars in a glob path segment are regarded as _a single star_. Thus, `foo/***/bar` is equivalent to `foo/*/bar`. |
|
||||||
|
| `?` | Matches any character excluding path separators one time. Does _not match_ path separators or leading dots. |
|
||||||
|
| `[abc]` | Matches any characters inside the brackets. For example, `[abc]` would match the characters `a`, `b` or `c`, and nothing else. |
|
||||||
|
|
||||||
|
#### Matching behavior vs. Bash
|
||||||
|
|
||||||
|
Picomatch's matching features and expected results in unit tests are based on Bash's unit tests and the Bash 4.3 specification, with the following exceptions:
|
||||||
|
|
||||||
|
* Bash will match `foo/bar/baz` with `*`. Picomatch only matches nested directories with `**`.
|
||||||
|
* Bash greedily matches with negated extglobs. For example, Bash 4.3 says that `!(foo)*` should match `foo` and `foobar`, since the trailing `*` bracktracks to match the preceding pattern. This is very memory-inefficient, and IMHO, also incorrect. Picomatch would return `false` for both `foo` and `foobar`.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
|
||||||
|
### Advanced globbing
|
||||||
|
|
||||||
|
* [extglobs](#extglobs)
|
||||||
|
* [POSIX brackets](#posix-brackets)
|
||||||
|
* [Braces](#brace-expansion)
|
||||||
|
|
||||||
|
#### Extglobs
|
||||||
|
|
||||||
|
| **Pattern** | **Description** |
|
||||||
|
| --- | --- |
|
||||||
|
| `@(pattern)` | Match _only one_ consecutive occurrence of `pattern` |
|
||||||
|
| `*(pattern)` | Match _zero or more_ consecutive occurrences of `pattern` |
|
||||||
|
| `+(pattern)` | Match _one or more_ consecutive occurrences of `pattern` |
|
||||||
|
| `?(pattern)` | Match _zero or **one**_ consecutive occurrences of `pattern` |
|
||||||
|
| `!(pattern)` | Match _anything but_ `pattern` |
|
||||||
|
|
||||||
|
**Examples**
|
||||||
|
|
||||||
|
```js
|
||||||
|
const pm = require('picomatch');
|
||||||
|
|
||||||
|
// *(pattern) matches ZERO or more of "pattern"
|
||||||
|
console.log(pm.isMatch('a', 'a*(z)')); // true
|
||||||
|
console.log(pm.isMatch('az', 'a*(z)')); // true
|
||||||
|
console.log(pm.isMatch('azzz', 'a*(z)')); // true
|
||||||
|
|
||||||
|
// +(pattern) matches ONE or more of "pattern"
|
||||||
|
console.log(pm.isMatch('a', 'a*(z)')); // true
|
||||||
|
console.log(pm.isMatch('az', 'a*(z)')); // true
|
||||||
|
console.log(pm.isMatch('azzz', 'a*(z)')); // true
|
||||||
|
|
||||||
|
// supports multiple extglobs
|
||||||
|
console.log(pm.isMatch('foo.bar', '!(foo).!(bar)')); // false
|
||||||
|
|
||||||
|
// supports nested extglobs
|
||||||
|
console.log(pm.isMatch('foo.bar', '!(!(foo)).!(!(bar))')); // true
|
||||||
|
```
|
||||||
|
|
||||||
|
#### POSIX brackets
|
||||||
|
|
||||||
|
POSIX classes are disabled by default. Enable this feature by setting the `posix` option to true.
|
||||||
|
|
||||||
|
**Enable POSIX bracket support**
|
||||||
|
|
||||||
|
```js
|
||||||
|
console.log(pm.makeRe('[[:word:]]+', { posix: true }));
|
||||||
|
//=> /^(?:(?=.)[A-Za-z0-9_]+\/?)$/
|
||||||
|
```
|
||||||
|
|
||||||
|
**Supported POSIX classes**
|
||||||
|
|
||||||
|
The following named POSIX bracket expressions are supported:
|
||||||
|
|
||||||
|
* `[:alnum:]` - Alphanumeric characters, equ `[a-zA-Z0-9]`
|
||||||
|
* `[:alpha:]` - Alphabetical characters, equivalent to `[a-zA-Z]`.
|
||||||
|
* `[:ascii:]` - ASCII characters, equivalent to `[\\x00-\\x7F]`.
|
||||||
|
* `[:blank:]` - Space and tab characters, equivalent to `[ \\t]`.
|
||||||
|
* `[:cntrl:]` - Control characters, equivalent to `[\\x00-\\x1F\\x7F]`.
|
||||||
|
* `[:digit:]` - Numerical digits, equivalent to `[0-9]`.
|
||||||
|
* `[:graph:]` - Graph characters, equivalent to `[\\x21-\\x7E]`.
|
||||||
|
* `[:lower:]` - Lowercase letters, equivalent to `[a-z]`.
|
||||||
|
* `[:print:]` - Print characters, equivalent to `[\\x20-\\x7E ]`.
|
||||||
|
* `[:punct:]` - Punctuation and symbols, equivalent to `[\\-!"#$%&\'()\\*+,./:;<=>?@[\\]^_`{|}~]`.
|
||||||
|
* `[:space:]` - Extended space characters, equivalent to `[ \\t\\r\\n\\v\\f]`.
|
||||||
|
* `[:upper:]` - Uppercase letters, equivalent to `[A-Z]`.
|
||||||
|
* `[:word:]` - Word characters (letters, numbers and underscores), equivalent to `[A-Za-z0-9_]`.
|
||||||
|
* `[:xdigit:]` - Hexadecimal digits, equivalent to `[A-Fa-f0-9]`.
|
||||||
|
|
||||||
|
See the [Bash Reference Manual](https://www.gnu.org/software/bash/manual/html_node/Pattern-Matching.html) for more information.
|
||||||
|
|
||||||
|
### Braces
|
||||||
|
|
||||||
|
Picomatch does not do brace expansion. For [brace expansion](https://www.gnu.org/software/bash/manual/html_node/Brace-Expansion.html) and advanced matching with braces, use [micromatch](https://github.com/micromatch/micromatch) instead. Picomatch has very basic support for braces.
|
||||||
|
|
||||||
|
### Matching special characters as literals
|
||||||
|
|
||||||
|
If you wish to match the following special characters in a filepath, and you want to use these characters in your glob pattern, they must be escaped with backslashes or quotes:
|
||||||
|
|
||||||
|
**Special Characters**
|
||||||
|
|
||||||
|
Some characters that are used for matching in regular expressions are also regarded as valid file path characters on some platforms.
|
||||||
|
|
||||||
|
To match any of the following characters as literals: `$^*+?()[]
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
```js
|
||||||
|
console.log(pm.makeRe('foo/bar \\(1\\)'));
|
||||||
|
console.log(pm.makeRe('foo/bar \\(1\\)'));
|
||||||
|
```
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
## Library Comparisons
|
||||||
|
|
||||||
|
The following table shows which features are supported by [minimatch](https://github.com/isaacs/minimatch), [micromatch](https://github.com/micromatch/micromatch), [picomatch](https://github.com/micromatch/picomatch), [nanomatch](https://github.com/micromatch/nanomatch), [extglob](https://github.com/micromatch/extglob), [braces](https://github.com/micromatch/braces), and [expand-brackets](https://github.com/micromatch/expand-brackets).
|
||||||
|
|
||||||
|
| **Feature** | `minimatch` | `micromatch` | `picomatch` | `nanomatch` | `extglob` | `braces` | `expand-brackets` |
|
||||||
|
| --- | --- | --- | --- | --- | --- | --- | --- |
|
||||||
|
| Wildcard matching (`*?+`) | ✔ | ✔ | ✔ | ✔ | - | - | - |
|
||||||
|
| Advancing globbing | ✔ | ✔ | ✔ | - | - | - | - |
|
||||||
|
| Brace _matching_ | ✔ | ✔ | ✔ | - | - | ✔ | - |
|
||||||
|
| Brace _expansion_ | ✔ | ✔ | - | - | - | ✔ | - |
|
||||||
|
| Extglobs | partial | ✔ | ✔ | - | ✔ | - | - |
|
||||||
|
| Posix brackets | - | ✔ | ✔ | - | - | - | ✔ |
|
||||||
|
| Regular expression syntax | - | ✔ | ✔ | ✔ | ✔ | - | ✔ |
|
||||||
|
| File system operations | - | - | - | - | - | - | - |
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
## Benchmarks
|
||||||
|
|
||||||
|
Performance comparison of picomatch and minimatch.
|
||||||
|
|
||||||
|
```
|
||||||
|
# .makeRe star
|
||||||
|
picomatch x 1,993,050 ops/sec ±0.51% (91 runs sampled)
|
||||||
|
minimatch x 627,206 ops/sec ±1.96% (87 runs sampled))
|
||||||
|
|
||||||
|
# .makeRe star; dot=true
|
||||||
|
picomatch x 1,436,640 ops/sec ±0.62% (91 runs sampled)
|
||||||
|
minimatch x 525,876 ops/sec ±0.60% (88 runs sampled)
|
||||||
|
|
||||||
|
# .makeRe globstar
|
||||||
|
picomatch x 1,592,742 ops/sec ±0.42% (90 runs sampled)
|
||||||
|
minimatch x 962,043 ops/sec ±1.76% (91 runs sampled)d)
|
||||||
|
|
||||||
|
# .makeRe globstars
|
||||||
|
picomatch x 1,615,199 ops/sec ±0.35% (94 runs sampled)
|
||||||
|
minimatch x 477,179 ops/sec ±1.33% (91 runs sampled)
|
||||||
|
|
||||||
|
# .makeRe with leading star
|
||||||
|
picomatch x 1,220,856 ops/sec ±0.40% (92 runs sampled)
|
||||||
|
minimatch x 453,564 ops/sec ±1.43% (94 runs sampled)
|
||||||
|
|
||||||
|
# .makeRe - basic braces
|
||||||
|
picomatch x 392,067 ops/sec ±0.70% (90 runs sampled)
|
||||||
|
minimatch x 99,532 ops/sec ±2.03% (87 runs sampled))
|
||||||
|
```
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
## Philosophies
|
||||||
|
|
||||||
|
The goal of this library is to be blazing fast, without compromising on accuracy.
|
||||||
|
|
||||||
|
**Accuracy**
|
||||||
|
|
||||||
|
The number one of goal of this library is accuracy. However, it's not unusual for different glob implementations to have different rules for matching behavior, even with simple wildcard matching. It gets increasingly more complicated when combinations of different features are combined, like when extglobs are combined with globstars, braces, slashes, and so on: `!(**/{a,b,*/c})`.
|
||||||
|
|
||||||
|
Thus, given that there is no canonical glob specification to use as a single source of truth when differences of opinion arise regarding behavior, sometimes we have to implement our best judgement and rely on feedback from users to make improvements.
|
||||||
|
|
||||||
|
**Performance**
|
||||||
|
|
||||||
|
Although this library performs well in benchmarks, and in most cases it's faster than other popular libraries we benchmarked against, we will always choose accuracy over performance. It's not helpful to anyone if our library is faster at returning the wrong answer.
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
## About
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Contributing</strong></summary>
|
||||||
|
|
||||||
|
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
|
||||||
|
|
||||||
|
Please read the [contributing guide](.github/contributing.md) for advice on opening issues, pull requests, and coding standards.
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Running Tests</strong></summary>
|
||||||
|
|
||||||
|
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install && npm test
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Building docs</strong></summary>
|
||||||
|
|
||||||
|
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
|
||||||
|
|
||||||
|
To generate the readme, run the following command:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install -g verbose/verb#dev verb-generate-readme && verb
|
||||||
|
```
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
|
### Author
|
||||||
|
|
||||||
|
**Jon Schlinkert**
|
||||||
|
|
||||||
|
* [GitHub Profile](https://github.com/jonschlinkert)
|
||||||
|
* [Twitter Profile](https://twitter.com/jonschlinkert)
|
||||||
|
* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)
|
||||||
|
|
||||||
|
### License
|
||||||
|
|
||||||
|
Copyright © 2017-present, [Jon Schlinkert](https://github.com/jonschlinkert).
|
||||||
|
Released under the [MIT License](LICENSE).
|
3
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/index.js
generated
vendored
Normal file
3
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/index.js
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
module.exports = require('./lib/picomatch');
|
179
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/lib/constants.js
generated
vendored
Normal file
179
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/lib/constants.js
generated
vendored
Normal file
@ -0,0 +1,179 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const path = require('path');
|
||||||
|
const WIN_SLASH = '\\\\/';
|
||||||
|
const WIN_NO_SLASH = `[^${WIN_SLASH}]`;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Posix glob regex
|
||||||
|
*/
|
||||||
|
|
||||||
|
const DOT_LITERAL = '\\.';
|
||||||
|
const PLUS_LITERAL = '\\+';
|
||||||
|
const QMARK_LITERAL = '\\?';
|
||||||
|
const SLASH_LITERAL = '\\/';
|
||||||
|
const ONE_CHAR = '(?=.)';
|
||||||
|
const QMARK = '[^/]';
|
||||||
|
const END_ANCHOR = `(?:${SLASH_LITERAL}|$)`;
|
||||||
|
const START_ANCHOR = `(?:^|${SLASH_LITERAL})`;
|
||||||
|
const DOTS_SLASH = `${DOT_LITERAL}{1,2}${END_ANCHOR}`;
|
||||||
|
const NO_DOT = `(?!${DOT_LITERAL})`;
|
||||||
|
const NO_DOTS = `(?!${START_ANCHOR}${DOTS_SLASH})`;
|
||||||
|
const NO_DOT_SLASH = `(?!${DOT_LITERAL}{0,1}${END_ANCHOR})`;
|
||||||
|
const NO_DOTS_SLASH = `(?!${DOTS_SLASH})`;
|
||||||
|
const QMARK_NO_DOT = `[^.${SLASH_LITERAL}]`;
|
||||||
|
const STAR = `${QMARK}*?`;
|
||||||
|
|
||||||
|
const POSIX_CHARS = {
|
||||||
|
DOT_LITERAL,
|
||||||
|
PLUS_LITERAL,
|
||||||
|
QMARK_LITERAL,
|
||||||
|
SLASH_LITERAL,
|
||||||
|
ONE_CHAR,
|
||||||
|
QMARK,
|
||||||
|
END_ANCHOR,
|
||||||
|
DOTS_SLASH,
|
||||||
|
NO_DOT,
|
||||||
|
NO_DOTS,
|
||||||
|
NO_DOT_SLASH,
|
||||||
|
NO_DOTS_SLASH,
|
||||||
|
QMARK_NO_DOT,
|
||||||
|
STAR,
|
||||||
|
START_ANCHOR
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Windows glob regex
|
||||||
|
*/
|
||||||
|
|
||||||
|
const WINDOWS_CHARS = {
|
||||||
|
...POSIX_CHARS,
|
||||||
|
|
||||||
|
SLASH_LITERAL: `[${WIN_SLASH}]`,
|
||||||
|
QMARK: WIN_NO_SLASH,
|
||||||
|
STAR: `${WIN_NO_SLASH}*?`,
|
||||||
|
DOTS_SLASH: `${DOT_LITERAL}{1,2}(?:[${WIN_SLASH}]|$)`,
|
||||||
|
NO_DOT: `(?!${DOT_LITERAL})`,
|
||||||
|
NO_DOTS: `(?!(?:^|[${WIN_SLASH}])${DOT_LITERAL}{1,2}(?:[${WIN_SLASH}]|$))`,
|
||||||
|
NO_DOT_SLASH: `(?!${DOT_LITERAL}{0,1}(?:[${WIN_SLASH}]|$))`,
|
||||||
|
NO_DOTS_SLASH: `(?!${DOT_LITERAL}{1,2}(?:[${WIN_SLASH}]|$))`,
|
||||||
|
QMARK_NO_DOT: `[^.${WIN_SLASH}]`,
|
||||||
|
START_ANCHOR: `(?:^|[${WIN_SLASH}])`,
|
||||||
|
END_ANCHOR: `(?:[${WIN_SLASH}]|$)`
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* POSIX Bracket Regex
|
||||||
|
*/
|
||||||
|
|
||||||
|
const POSIX_REGEX_SOURCE = {
|
||||||
|
alnum: 'a-zA-Z0-9',
|
||||||
|
alpha: 'a-zA-Z',
|
||||||
|
ascii: '\\x00-\\x7F',
|
||||||
|
blank: ' \\t',
|
||||||
|
cntrl: '\\x00-\\x1F\\x7F',
|
||||||
|
digit: '0-9',
|
||||||
|
graph: '\\x21-\\x7E',
|
||||||
|
lower: 'a-z',
|
||||||
|
print: '\\x20-\\x7E ',
|
||||||
|
punct: '\\-!"#$%&\'()\\*+,./:;<=>?@[\\]^_`{|}~',
|
||||||
|
space: ' \\t\\r\\n\\v\\f',
|
||||||
|
upper: 'A-Z',
|
||||||
|
word: 'A-Za-z0-9_',
|
||||||
|
xdigit: 'A-Fa-f0-9'
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
MAX_LENGTH: 1024 * 64,
|
||||||
|
POSIX_REGEX_SOURCE,
|
||||||
|
|
||||||
|
// regular expressions
|
||||||
|
REGEX_BACKSLASH: /\\(?![*+?^${}(|)[\]])/g,
|
||||||
|
REGEX_NON_SPECIAL_CHARS: /^[^@![\].,$*+?^{}()|\\/]+/,
|
||||||
|
REGEX_SPECIAL_CHARS: /[-*+?.^${}(|)[\]]/,
|
||||||
|
REGEX_SPECIAL_CHARS_BACKREF: /(\\?)((\W)(\3*))/g,
|
||||||
|
REGEX_SPECIAL_CHARS_GLOBAL: /([-*+?.^${}(|)[\]])/g,
|
||||||
|
REGEX_REMOVE_BACKSLASH: /(?:\[.*?[^\\]\]|\\(?=.))/g,
|
||||||
|
|
||||||
|
// Replace globs with equivalent patterns to reduce parsing time.
|
||||||
|
REPLACEMENTS: {
|
||||||
|
'***': '*',
|
||||||
|
'**/**': '**',
|
||||||
|
'**/**/**': '**'
|
||||||
|
},
|
||||||
|
|
||||||
|
// Digits
|
||||||
|
CHAR_0: 48, /* 0 */
|
||||||
|
CHAR_9: 57, /* 9 */
|
||||||
|
|
||||||
|
// Alphabet chars.
|
||||||
|
CHAR_UPPERCASE_A: 65, /* A */
|
||||||
|
CHAR_LOWERCASE_A: 97, /* a */
|
||||||
|
CHAR_UPPERCASE_Z: 90, /* Z */
|
||||||
|
CHAR_LOWERCASE_Z: 122, /* z */
|
||||||
|
|
||||||
|
CHAR_LEFT_PARENTHESES: 40, /* ( */
|
||||||
|
CHAR_RIGHT_PARENTHESES: 41, /* ) */
|
||||||
|
|
||||||
|
CHAR_ASTERISK: 42, /* * */
|
||||||
|
|
||||||
|
// Non-alphabetic chars.
|
||||||
|
CHAR_AMPERSAND: 38, /* & */
|
||||||
|
CHAR_AT: 64, /* @ */
|
||||||
|
CHAR_BACKWARD_SLASH: 92, /* \ */
|
||||||
|
CHAR_CARRIAGE_RETURN: 13, /* \r */
|
||||||
|
CHAR_CIRCUMFLEX_ACCENT: 94, /* ^ */
|
||||||
|
CHAR_COLON: 58, /* : */
|
||||||
|
CHAR_COMMA: 44, /* , */
|
||||||
|
CHAR_DOT: 46, /* . */
|
||||||
|
CHAR_DOUBLE_QUOTE: 34, /* " */
|
||||||
|
CHAR_EQUAL: 61, /* = */
|
||||||
|
CHAR_EXCLAMATION_MARK: 33, /* ! */
|
||||||
|
CHAR_FORM_FEED: 12, /* \f */
|
||||||
|
CHAR_FORWARD_SLASH: 47, /* / */
|
||||||
|
CHAR_GRAVE_ACCENT: 96, /* ` */
|
||||||
|
CHAR_HASH: 35, /* # */
|
||||||
|
CHAR_HYPHEN_MINUS: 45, /* - */
|
||||||
|
CHAR_LEFT_ANGLE_BRACKET: 60, /* < */
|
||||||
|
CHAR_LEFT_CURLY_BRACE: 123, /* { */
|
||||||
|
CHAR_LEFT_SQUARE_BRACKET: 91, /* [ */
|
||||||
|
CHAR_LINE_FEED: 10, /* \n */
|
||||||
|
CHAR_NO_BREAK_SPACE: 160, /* \u00A0 */
|
||||||
|
CHAR_PERCENT: 37, /* % */
|
||||||
|
CHAR_PLUS: 43, /* + */
|
||||||
|
CHAR_QUESTION_MARK: 63, /* ? */
|
||||||
|
CHAR_RIGHT_ANGLE_BRACKET: 62, /* > */
|
||||||
|
CHAR_RIGHT_CURLY_BRACE: 125, /* } */
|
||||||
|
CHAR_RIGHT_SQUARE_BRACKET: 93, /* ] */
|
||||||
|
CHAR_SEMICOLON: 59, /* ; */
|
||||||
|
CHAR_SINGLE_QUOTE: 39, /* ' */
|
||||||
|
CHAR_SPACE: 32, /* */
|
||||||
|
CHAR_TAB: 9, /* \t */
|
||||||
|
CHAR_UNDERSCORE: 95, /* _ */
|
||||||
|
CHAR_VERTICAL_LINE: 124, /* | */
|
||||||
|
CHAR_ZERO_WIDTH_NOBREAK_SPACE: 65279, /* \uFEFF */
|
||||||
|
|
||||||
|
SEP: path.sep,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create EXTGLOB_CHARS
|
||||||
|
*/
|
||||||
|
|
||||||
|
extglobChars(chars) {
|
||||||
|
return {
|
||||||
|
'!': { type: 'negate', open: '(?:(?!(?:', close: `))${chars.STAR})` },
|
||||||
|
'?': { type: 'qmark', open: '(?:', close: ')?' },
|
||||||
|
'+': { type: 'plus', open: '(?:', close: ')+' },
|
||||||
|
'*': { type: 'star', open: '(?:', close: ')*' },
|
||||||
|
'@': { type: 'at', open: '(?:', close: ')' }
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create GLOB_CHARS
|
||||||
|
*/
|
||||||
|
|
||||||
|
globChars(win32) {
|
||||||
|
return win32 === true ? WINDOWS_CHARS : POSIX_CHARS;
|
||||||
|
}
|
||||||
|
};
|
1091
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/lib/parse.js
generated
vendored
Normal file
1091
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/lib/parse.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
342
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/lib/picomatch.js
generated
vendored
Normal file
342
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/lib/picomatch.js
generated
vendored
Normal file
@ -0,0 +1,342 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const path = require('path');
|
||||||
|
const scan = require('./scan');
|
||||||
|
const parse = require('./parse');
|
||||||
|
const utils = require('./utils');
|
||||||
|
const constants = require('./constants');
|
||||||
|
const isObject = val => val && typeof val === 'object' && !Array.isArray(val);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a matcher function from one or more glob patterns. The
|
||||||
|
* returned function takes a string to match as its first argument,
|
||||||
|
* and returns true if the string is a match. The returned matcher
|
||||||
|
* function also takes a boolean as the second argument that, when true,
|
||||||
|
* returns an object with additional information.
|
||||||
|
*
|
||||||
|
* ```js
|
||||||
|
* const picomatch = require('picomatch');
|
||||||
|
* // picomatch(glob[, options]);
|
||||||
|
*
|
||||||
|
* const isMatch = picomatch('*.!(*a)');
|
||||||
|
* console.log(isMatch('a.a')); //=> false
|
||||||
|
* console.log(isMatch('a.b')); //=> true
|
||||||
|
* ```
|
||||||
|
* @name picomatch
|
||||||
|
* @param {String|Array} `globs` One or more glob patterns.
|
||||||
|
* @param {Object=} `options`
|
||||||
|
* @return {Function=} Returns a matcher function.
|
||||||
|
* @api public
|
||||||
|
*/
|
||||||
|
|
||||||
|
const picomatch = (glob, options, returnState = false) => {
|
||||||
|
if (Array.isArray(glob)) {
|
||||||
|
const fns = glob.map(input => picomatch(input, options, returnState));
|
||||||
|
const arrayMatcher = str => {
|
||||||
|
for (const isMatch of fns) {
|
||||||
|
const state = isMatch(str);
|
||||||
|
if (state) return state;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
return arrayMatcher;
|
||||||
|
}
|
||||||
|
|
||||||
|
const isState = isObject(glob) && glob.tokens && glob.input;
|
||||||
|
|
||||||
|
if (glob === '' || (typeof glob !== 'string' && !isState)) {
|
||||||
|
throw new TypeError('Expected pattern to be a non-empty string');
|
||||||
|
}
|
||||||
|
|
||||||
|
const opts = options || {};
|
||||||
|
const posix = utils.isWindows(options);
|
||||||
|
const regex = isState
|
||||||
|
? picomatch.compileRe(glob, options)
|
||||||
|
: picomatch.makeRe(glob, options, false, true);
|
||||||
|
|
||||||
|
const state = regex.state;
|
||||||
|
delete regex.state;
|
||||||
|
|
||||||
|
let isIgnored = () => false;
|
||||||
|
if (opts.ignore) {
|
||||||
|
const ignoreOpts = { ...options, ignore: null, onMatch: null, onResult: null };
|
||||||
|
isIgnored = picomatch(opts.ignore, ignoreOpts, returnState);
|
||||||
|
}
|
||||||
|
|
||||||
|
const matcher = (input, returnObject = false) => {
|
||||||
|
const { isMatch, match, output } = picomatch.test(input, regex, options, { glob, posix });
|
||||||
|
const result = { glob, state, regex, posix, input, output, match, isMatch };
|
||||||
|
|
||||||
|
if (typeof opts.onResult === 'function') {
|
||||||
|
opts.onResult(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isMatch === false) {
|
||||||
|
result.isMatch = false;
|
||||||
|
return returnObject ? result : false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isIgnored(input)) {
|
||||||
|
if (typeof opts.onIgnore === 'function') {
|
||||||
|
opts.onIgnore(result);
|
||||||
|
}
|
||||||
|
result.isMatch = false;
|
||||||
|
return returnObject ? result : false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof opts.onMatch === 'function') {
|
||||||
|
opts.onMatch(result);
|
||||||
|
}
|
||||||
|
return returnObject ? result : true;
|
||||||
|
};
|
||||||
|
|
||||||
|
if (returnState) {
|
||||||
|
matcher.state = state;
|
||||||
|
}
|
||||||
|
|
||||||
|
return matcher;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test `input` with the given `regex`. This is used by the main
|
||||||
|
* `picomatch()` function to test the input string.
|
||||||
|
*
|
||||||
|
* ```js
|
||||||
|
* const picomatch = require('picomatch');
|
||||||
|
* // picomatch.test(input, regex[, options]);
|
||||||
|
*
|
||||||
|
* console.log(picomatch.test('foo/bar', /^(?:([^/]*?)\/([^/]*?))$/));
|
||||||
|
* // { isMatch: true, match: [ 'foo/', 'foo', 'bar' ], output: 'foo/bar' }
|
||||||
|
* ```
|
||||||
|
* @param {String} `input` String to test.
|
||||||
|
* @param {RegExp} `regex`
|
||||||
|
* @return {Object} Returns an object with matching info.
|
||||||
|
* @api public
|
||||||
|
*/
|
||||||
|
|
||||||
|
picomatch.test = (input, regex, options, { glob, posix } = {}) => {
|
||||||
|
if (typeof input !== 'string') {
|
||||||
|
throw new TypeError('Expected input to be a string');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (input === '') {
|
||||||
|
return { isMatch: false, output: '' };
|
||||||
|
}
|
||||||
|
|
||||||
|
const opts = options || {};
|
||||||
|
const format = opts.format || (posix ? utils.toPosixSlashes : null);
|
||||||
|
let match = input === glob;
|
||||||
|
let output = (match && format) ? format(input) : input;
|
||||||
|
|
||||||
|
if (match === false) {
|
||||||
|
output = format ? format(input) : input;
|
||||||
|
match = output === glob;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (match === false || opts.capture === true) {
|
||||||
|
if (opts.matchBase === true || opts.basename === true) {
|
||||||
|
match = picomatch.matchBase(input, regex, options, posix);
|
||||||
|
} else {
|
||||||
|
match = regex.exec(output);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return { isMatch: Boolean(match), match, output };
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Match the basename of a filepath.
|
||||||
|
*
|
||||||
|
* ```js
|
||||||
|
* const picomatch = require('picomatch');
|
||||||
|
* // picomatch.matchBase(input, glob[, options]);
|
||||||
|
* console.log(picomatch.matchBase('foo/bar.js', '*.js'); // true
|
||||||
|
* ```
|
||||||
|
* @param {String} `input` String to test.
|
||||||
|
* @param {RegExp|String} `glob` Glob pattern or regex created by [.makeRe](#makeRe).
|
||||||
|
* @return {Boolean}
|
||||||
|
* @api public
|
||||||
|
*/
|
||||||
|
|
||||||
|
picomatch.matchBase = (input, glob, options, posix = utils.isWindows(options)) => {
|
||||||
|
const regex = glob instanceof RegExp ? glob : picomatch.makeRe(glob, options);
|
||||||
|
return regex.test(path.basename(input));
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns true if **any** of the given glob `patterns` match the specified `string`.
|
||||||
|
*
|
||||||
|
* ```js
|
||||||
|
* const picomatch = require('picomatch');
|
||||||
|
* // picomatch.isMatch(string, patterns[, options]);
|
||||||
|
*
|
||||||
|
* console.log(picomatch.isMatch('a.a', ['b.*', '*.a'])); //=> true
|
||||||
|
* console.log(picomatch.isMatch('a.a', 'b.*')); //=> false
|
||||||
|
* ```
|
||||||
|
* @param {String|Array} str The string to test.
|
||||||
|
* @param {String|Array} patterns One or more glob patterns to use for matching.
|
||||||
|
* @param {Object} [options] See available [options](#options).
|
||||||
|
* @return {Boolean} Returns true if any patterns match `str`
|
||||||
|
* @api public
|
||||||
|
*/
|
||||||
|
|
||||||
|
picomatch.isMatch = (str, patterns, options) => picomatch(patterns, options)(str);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse a glob pattern to create the source string for a regular
|
||||||
|
* expression.
|
||||||
|
*
|
||||||
|
* ```js
|
||||||
|
* const picomatch = require('picomatch');
|
||||||
|
* const result = picomatch.parse(pattern[, options]);
|
||||||
|
* ```
|
||||||
|
* @param {String} `pattern`
|
||||||
|
* @param {Object} `options`
|
||||||
|
* @return {Object} Returns an object with useful properties and output to be used as a regex source string.
|
||||||
|
* @api public
|
||||||
|
*/
|
||||||
|
|
||||||
|
picomatch.parse = (pattern, options) => {
|
||||||
|
if (Array.isArray(pattern)) return pattern.map(p => picomatch.parse(p, options));
|
||||||
|
return parse(pattern, { ...options, fastpaths: false });
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Scan a glob pattern to separate the pattern into segments.
|
||||||
|
*
|
||||||
|
* ```js
|
||||||
|
* const picomatch = require('picomatch');
|
||||||
|
* // picomatch.scan(input[, options]);
|
||||||
|
*
|
||||||
|
* const result = picomatch.scan('!./foo/*.js');
|
||||||
|
* console.log(result);
|
||||||
|
* { prefix: '!./',
|
||||||
|
* input: '!./foo/*.js',
|
||||||
|
* start: 3,
|
||||||
|
* base: 'foo',
|
||||||
|
* glob: '*.js',
|
||||||
|
* isBrace: false,
|
||||||
|
* isBracket: false,
|
||||||
|
* isGlob: true,
|
||||||
|
* isExtglob: false,
|
||||||
|
* isGlobstar: false,
|
||||||
|
* negated: true }
|
||||||
|
* ```
|
||||||
|
* @param {String} `input` Glob pattern to scan.
|
||||||
|
* @param {Object} `options`
|
||||||
|
* @return {Object} Returns an object with
|
||||||
|
* @api public
|
||||||
|
*/
|
||||||
|
|
||||||
|
picomatch.scan = (input, options) => scan(input, options);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compile a regular expression from the `state` object returned by the
|
||||||
|
* [parse()](#parse) method.
|
||||||
|
*
|
||||||
|
* @param {Object} `state`
|
||||||
|
* @param {Object} `options`
|
||||||
|
* @param {Boolean} `returnOutput` Intended for implementors, this argument allows you to return the raw output from the parser.
|
||||||
|
* @param {Boolean} `returnState` Adds the state to a `state` property on the returned regex. Useful for implementors and debugging.
|
||||||
|
* @return {RegExp}
|
||||||
|
* @api public
|
||||||
|
*/
|
||||||
|
|
||||||
|
picomatch.compileRe = (state, options, returnOutput = false, returnState = false) => {
|
||||||
|
if (returnOutput === true) {
|
||||||
|
return state.output;
|
||||||
|
}
|
||||||
|
|
||||||
|
const opts = options || {};
|
||||||
|
const prepend = opts.contains ? '' : '^';
|
||||||
|
const append = opts.contains ? '' : '$';
|
||||||
|
|
||||||
|
let source = `${prepend}(?:${state.output})${append}`;
|
||||||
|
if (state && state.negated === true) {
|
||||||
|
source = `^(?!${source}).*$`;
|
||||||
|
}
|
||||||
|
|
||||||
|
const regex = picomatch.toRegex(source, options);
|
||||||
|
if (returnState === true) {
|
||||||
|
regex.state = state;
|
||||||
|
}
|
||||||
|
|
||||||
|
return regex;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a regular expression from a parsed glob pattern.
|
||||||
|
*
|
||||||
|
* ```js
|
||||||
|
* const picomatch = require('picomatch');
|
||||||
|
* const state = picomatch.parse('*.js');
|
||||||
|
* // picomatch.compileRe(state[, options]);
|
||||||
|
*
|
||||||
|
* console.log(picomatch.compileRe(state));
|
||||||
|
* //=> /^(?:(?!\.)(?=.)[^/]*?\.js)$/
|
||||||
|
* ```
|
||||||
|
* @param {String} `state` The object returned from the `.parse` method.
|
||||||
|
* @param {Object} `options`
|
||||||
|
* @param {Boolean} `returnOutput` Implementors may use this argument to return the compiled output, instead of a regular expression. This is not exposed on the options to prevent end-users from mutating the result.
|
||||||
|
* @param {Boolean} `returnState` Implementors may use this argument to return the state from the parsed glob with the returned regular expression.
|
||||||
|
* @return {RegExp} Returns a regex created from the given pattern.
|
||||||
|
* @api public
|
||||||
|
*/
|
||||||
|
|
||||||
|
picomatch.makeRe = (input, options = {}, returnOutput = false, returnState = false) => {
|
||||||
|
if (!input || typeof input !== 'string') {
|
||||||
|
throw new TypeError('Expected a non-empty string');
|
||||||
|
}
|
||||||
|
|
||||||
|
let parsed = { negated: false, fastpaths: true };
|
||||||
|
|
||||||
|
if (options.fastpaths !== false && (input[0] === '.' || input[0] === '*')) {
|
||||||
|
parsed.output = parse.fastpaths(input, options);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!parsed.output) {
|
||||||
|
parsed = parse(input, options);
|
||||||
|
}
|
||||||
|
|
||||||
|
return picomatch.compileRe(parsed, options, returnOutput, returnState);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a regular expression from the given regex source string.
|
||||||
|
*
|
||||||
|
* ```js
|
||||||
|
* const picomatch = require('picomatch');
|
||||||
|
* // picomatch.toRegex(source[, options]);
|
||||||
|
*
|
||||||
|
* const { output } = picomatch.parse('*.js');
|
||||||
|
* console.log(picomatch.toRegex(output));
|
||||||
|
* //=> /^(?:(?!\.)(?=.)[^/]*?\.js)$/
|
||||||
|
* ```
|
||||||
|
* @param {String} `source` Regular expression source string.
|
||||||
|
* @param {Object} `options`
|
||||||
|
* @return {RegExp}
|
||||||
|
* @api public
|
||||||
|
*/
|
||||||
|
|
||||||
|
picomatch.toRegex = (source, options) => {
|
||||||
|
try {
|
||||||
|
const opts = options || {};
|
||||||
|
return new RegExp(source, opts.flags || (opts.nocase ? 'i' : ''));
|
||||||
|
} catch (err) {
|
||||||
|
if (options && options.debug === true) throw err;
|
||||||
|
return /$^/;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Picomatch constants.
|
||||||
|
* @return {Object}
|
||||||
|
*/
|
||||||
|
|
||||||
|
picomatch.constants = constants;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Expose "picomatch"
|
||||||
|
*/
|
||||||
|
|
||||||
|
module.exports = picomatch;
|
391
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/lib/scan.js
generated
vendored
Normal file
391
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/lib/scan.js
generated
vendored
Normal file
@ -0,0 +1,391 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const utils = require('./utils');
|
||||||
|
const {
|
||||||
|
CHAR_ASTERISK, /* * */
|
||||||
|
CHAR_AT, /* @ */
|
||||||
|
CHAR_BACKWARD_SLASH, /* \ */
|
||||||
|
CHAR_COMMA, /* , */
|
||||||
|
CHAR_DOT, /* . */
|
||||||
|
CHAR_EXCLAMATION_MARK, /* ! */
|
||||||
|
CHAR_FORWARD_SLASH, /* / */
|
||||||
|
CHAR_LEFT_CURLY_BRACE, /* { */
|
||||||
|
CHAR_LEFT_PARENTHESES, /* ( */
|
||||||
|
CHAR_LEFT_SQUARE_BRACKET, /* [ */
|
||||||
|
CHAR_PLUS, /* + */
|
||||||
|
CHAR_QUESTION_MARK, /* ? */
|
||||||
|
CHAR_RIGHT_CURLY_BRACE, /* } */
|
||||||
|
CHAR_RIGHT_PARENTHESES, /* ) */
|
||||||
|
CHAR_RIGHT_SQUARE_BRACKET /* ] */
|
||||||
|
} = require('./constants');
|
||||||
|
|
||||||
|
const isPathSeparator = code => {
|
||||||
|
return code === CHAR_FORWARD_SLASH || code === CHAR_BACKWARD_SLASH;
|
||||||
|
};
|
||||||
|
|
||||||
|
const depth = token => {
|
||||||
|
if (token.isPrefix !== true) {
|
||||||
|
token.depth = token.isGlobstar ? Infinity : 1;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Quickly scans a glob pattern and returns an object with a handful of
|
||||||
|
* useful properties, like `isGlob`, `path` (the leading non-glob, if it exists),
|
||||||
|
* `glob` (the actual pattern), `negated` (true if the path starts with `!` but not
|
||||||
|
* with `!(`) and `negatedExtglob` (true if the path starts with `!(`).
|
||||||
|
*
|
||||||
|
* ```js
|
||||||
|
* const pm = require('picomatch');
|
||||||
|
* console.log(pm.scan('foo/bar/*.js'));
|
||||||
|
* { isGlob: true, input: 'foo/bar/*.js', base: 'foo/bar', glob: '*.js' }
|
||||||
|
* ```
|
||||||
|
* @param {String} `str`
|
||||||
|
* @param {Object} `options`
|
||||||
|
* @return {Object} Returns an object with tokens and regex source string.
|
||||||
|
* @api public
|
||||||
|
*/
|
||||||
|
|
||||||
|
const scan = (input, options) => {
|
||||||
|
const opts = options || {};
|
||||||
|
|
||||||
|
const length = input.length - 1;
|
||||||
|
const scanToEnd = opts.parts === true || opts.scanToEnd === true;
|
||||||
|
const slashes = [];
|
||||||
|
const tokens = [];
|
||||||
|
const parts = [];
|
||||||
|
|
||||||
|
let str = input;
|
||||||
|
let index = -1;
|
||||||
|
let start = 0;
|
||||||
|
let lastIndex = 0;
|
||||||
|
let isBrace = false;
|
||||||
|
let isBracket = false;
|
||||||
|
let isGlob = false;
|
||||||
|
let isExtglob = false;
|
||||||
|
let isGlobstar = false;
|
||||||
|
let braceEscaped = false;
|
||||||
|
let backslashes = false;
|
||||||
|
let negated = false;
|
||||||
|
let negatedExtglob = false;
|
||||||
|
let finished = false;
|
||||||
|
let braces = 0;
|
||||||
|
let prev;
|
||||||
|
let code;
|
||||||
|
let token = { value: '', depth: 0, isGlob: false };
|
||||||
|
|
||||||
|
const eos = () => index >= length;
|
||||||
|
const peek = () => str.charCodeAt(index + 1);
|
||||||
|
const advance = () => {
|
||||||
|
prev = code;
|
||||||
|
return str.charCodeAt(++index);
|
||||||
|
};
|
||||||
|
|
||||||
|
while (index < length) {
|
||||||
|
code = advance();
|
||||||
|
let next;
|
||||||
|
|
||||||
|
if (code === CHAR_BACKWARD_SLASH) {
|
||||||
|
backslashes = token.backslashes = true;
|
||||||
|
code = advance();
|
||||||
|
|
||||||
|
if (code === CHAR_LEFT_CURLY_BRACE) {
|
||||||
|
braceEscaped = true;
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (braceEscaped === true || code === CHAR_LEFT_CURLY_BRACE) {
|
||||||
|
braces++;
|
||||||
|
|
||||||
|
while (eos() !== true && (code = advance())) {
|
||||||
|
if (code === CHAR_BACKWARD_SLASH) {
|
||||||
|
backslashes = token.backslashes = true;
|
||||||
|
advance();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code === CHAR_LEFT_CURLY_BRACE) {
|
||||||
|
braces++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (braceEscaped !== true && code === CHAR_DOT && (code = advance()) === CHAR_DOT) {
|
||||||
|
isBrace = token.isBrace = true;
|
||||||
|
isGlob = token.isGlob = true;
|
||||||
|
finished = true;
|
||||||
|
|
||||||
|
if (scanToEnd === true) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (braceEscaped !== true && code === CHAR_COMMA) {
|
||||||
|
isBrace = token.isBrace = true;
|
||||||
|
isGlob = token.isGlob = true;
|
||||||
|
finished = true;
|
||||||
|
|
||||||
|
if (scanToEnd === true) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code === CHAR_RIGHT_CURLY_BRACE) {
|
||||||
|
braces--;
|
||||||
|
|
||||||
|
if (braces === 0) {
|
||||||
|
braceEscaped = false;
|
||||||
|
isBrace = token.isBrace = true;
|
||||||
|
finished = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (scanToEnd === true) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code === CHAR_FORWARD_SLASH) {
|
||||||
|
slashes.push(index);
|
||||||
|
tokens.push(token);
|
||||||
|
token = { value: '', depth: 0, isGlob: false };
|
||||||
|
|
||||||
|
if (finished === true) continue;
|
||||||
|
if (prev === CHAR_DOT && index === (start + 1)) {
|
||||||
|
start += 2;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
lastIndex = index + 1;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opts.noext !== true) {
|
||||||
|
const isExtglobChar = code === CHAR_PLUS
|
||||||
|
|| code === CHAR_AT
|
||||||
|
|| code === CHAR_ASTERISK
|
||||||
|
|| code === CHAR_QUESTION_MARK
|
||||||
|
|| code === CHAR_EXCLAMATION_MARK;
|
||||||
|
|
||||||
|
if (isExtglobChar === true && peek() === CHAR_LEFT_PARENTHESES) {
|
||||||
|
isGlob = token.isGlob = true;
|
||||||
|
isExtglob = token.isExtglob = true;
|
||||||
|
finished = true;
|
||||||
|
if (code === CHAR_EXCLAMATION_MARK && index === start) {
|
||||||
|
negatedExtglob = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (scanToEnd === true) {
|
||||||
|
while (eos() !== true && (code = advance())) {
|
||||||
|
if (code === CHAR_BACKWARD_SLASH) {
|
||||||
|
backslashes = token.backslashes = true;
|
||||||
|
code = advance();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code === CHAR_RIGHT_PARENTHESES) {
|
||||||
|
isGlob = token.isGlob = true;
|
||||||
|
finished = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code === CHAR_ASTERISK) {
|
||||||
|
if (prev === CHAR_ASTERISK) isGlobstar = token.isGlobstar = true;
|
||||||
|
isGlob = token.isGlob = true;
|
||||||
|
finished = true;
|
||||||
|
|
||||||
|
if (scanToEnd === true) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code === CHAR_QUESTION_MARK) {
|
||||||
|
isGlob = token.isGlob = true;
|
||||||
|
finished = true;
|
||||||
|
|
||||||
|
if (scanToEnd === true) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code === CHAR_LEFT_SQUARE_BRACKET) {
|
||||||
|
while (eos() !== true && (next = advance())) {
|
||||||
|
if (next === CHAR_BACKWARD_SLASH) {
|
||||||
|
backslashes = token.backslashes = true;
|
||||||
|
advance();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (next === CHAR_RIGHT_SQUARE_BRACKET) {
|
||||||
|
isBracket = token.isBracket = true;
|
||||||
|
isGlob = token.isGlob = true;
|
||||||
|
finished = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (scanToEnd === true) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opts.nonegate !== true && code === CHAR_EXCLAMATION_MARK && index === start) {
|
||||||
|
negated = token.negated = true;
|
||||||
|
start++;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opts.noparen !== true && code === CHAR_LEFT_PARENTHESES) {
|
||||||
|
isGlob = token.isGlob = true;
|
||||||
|
|
||||||
|
if (scanToEnd === true) {
|
||||||
|
while (eos() !== true && (code = advance())) {
|
||||||
|
if (code === CHAR_LEFT_PARENTHESES) {
|
||||||
|
backslashes = token.backslashes = true;
|
||||||
|
code = advance();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code === CHAR_RIGHT_PARENTHESES) {
|
||||||
|
finished = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isGlob === true) {
|
||||||
|
finished = true;
|
||||||
|
|
||||||
|
if (scanToEnd === true) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opts.noext === true) {
|
||||||
|
isExtglob = false;
|
||||||
|
isGlob = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
let base = str;
|
||||||
|
let prefix = '';
|
||||||
|
let glob = '';
|
||||||
|
|
||||||
|
if (start > 0) {
|
||||||
|
prefix = str.slice(0, start);
|
||||||
|
str = str.slice(start);
|
||||||
|
lastIndex -= start;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (base && isGlob === true && lastIndex > 0) {
|
||||||
|
base = str.slice(0, lastIndex);
|
||||||
|
glob = str.slice(lastIndex);
|
||||||
|
} else if (isGlob === true) {
|
||||||
|
base = '';
|
||||||
|
glob = str;
|
||||||
|
} else {
|
||||||
|
base = str;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (base && base !== '' && base !== '/' && base !== str) {
|
||||||
|
if (isPathSeparator(base.charCodeAt(base.length - 1))) {
|
||||||
|
base = base.slice(0, -1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opts.unescape === true) {
|
||||||
|
if (glob) glob = utils.removeBackslashes(glob);
|
||||||
|
|
||||||
|
if (base && backslashes === true) {
|
||||||
|
base = utils.removeBackslashes(base);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const state = {
|
||||||
|
prefix,
|
||||||
|
input,
|
||||||
|
start,
|
||||||
|
base,
|
||||||
|
glob,
|
||||||
|
isBrace,
|
||||||
|
isBracket,
|
||||||
|
isGlob,
|
||||||
|
isExtglob,
|
||||||
|
isGlobstar,
|
||||||
|
negated,
|
||||||
|
negatedExtglob
|
||||||
|
};
|
||||||
|
|
||||||
|
if (opts.tokens === true) {
|
||||||
|
state.maxDepth = 0;
|
||||||
|
if (!isPathSeparator(code)) {
|
||||||
|
tokens.push(token);
|
||||||
|
}
|
||||||
|
state.tokens = tokens;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opts.parts === true || opts.tokens === true) {
|
||||||
|
let prevIndex;
|
||||||
|
|
||||||
|
for (let idx = 0; idx < slashes.length; idx++) {
|
||||||
|
const n = prevIndex ? prevIndex + 1 : start;
|
||||||
|
const i = slashes[idx];
|
||||||
|
const value = input.slice(n, i);
|
||||||
|
if (opts.tokens) {
|
||||||
|
if (idx === 0 && start !== 0) {
|
||||||
|
tokens[idx].isPrefix = true;
|
||||||
|
tokens[idx].value = prefix;
|
||||||
|
} else {
|
||||||
|
tokens[idx].value = value;
|
||||||
|
}
|
||||||
|
depth(tokens[idx]);
|
||||||
|
state.maxDepth += tokens[idx].depth;
|
||||||
|
}
|
||||||
|
if (idx !== 0 || value !== '') {
|
||||||
|
parts.push(value);
|
||||||
|
}
|
||||||
|
prevIndex = i;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (prevIndex && prevIndex + 1 < input.length) {
|
||||||
|
const value = input.slice(prevIndex + 1);
|
||||||
|
parts.push(value);
|
||||||
|
|
||||||
|
if (opts.tokens) {
|
||||||
|
tokens[tokens.length - 1].value = value;
|
||||||
|
depth(tokens[tokens.length - 1]);
|
||||||
|
state.maxDepth += tokens[tokens.length - 1].depth;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
state.slashes = slashes;
|
||||||
|
state.parts = parts;
|
||||||
|
}
|
||||||
|
|
||||||
|
return state;
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = scan;
|
64
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/lib/utils.js
generated
vendored
Normal file
64
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/lib/utils.js
generated
vendored
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
const path = require('path');
|
||||||
|
const win32 = process.platform === 'win32';
|
||||||
|
const {
|
||||||
|
REGEX_BACKSLASH,
|
||||||
|
REGEX_REMOVE_BACKSLASH,
|
||||||
|
REGEX_SPECIAL_CHARS,
|
||||||
|
REGEX_SPECIAL_CHARS_GLOBAL
|
||||||
|
} = require('./constants');
|
||||||
|
|
||||||
|
exports.isObject = val => val !== null && typeof val === 'object' && !Array.isArray(val);
|
||||||
|
exports.hasRegexChars = str => REGEX_SPECIAL_CHARS.test(str);
|
||||||
|
exports.isRegexChar = str => str.length === 1 && exports.hasRegexChars(str);
|
||||||
|
exports.escapeRegex = str => str.replace(REGEX_SPECIAL_CHARS_GLOBAL, '\\$1');
|
||||||
|
exports.toPosixSlashes = str => str.replace(REGEX_BACKSLASH, '/');
|
||||||
|
|
||||||
|
exports.removeBackslashes = str => {
|
||||||
|
return str.replace(REGEX_REMOVE_BACKSLASH, match => {
|
||||||
|
return match === '\\' ? '' : match;
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.supportsLookbehinds = () => {
|
||||||
|
const segs = process.version.slice(1).split('.').map(Number);
|
||||||
|
if (segs.length === 3 && segs[0] >= 9 || (segs[0] === 8 && segs[1] >= 10)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.isWindows = options => {
|
||||||
|
if (options && typeof options.windows === 'boolean') {
|
||||||
|
return options.windows;
|
||||||
|
}
|
||||||
|
return win32 === true || path.sep === '\\';
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.escapeLast = (input, char, lastIdx) => {
|
||||||
|
const idx = input.lastIndexOf(char, lastIdx);
|
||||||
|
if (idx === -1) return input;
|
||||||
|
if (input[idx - 1] === '\\') return exports.escapeLast(input, char, idx - 1);
|
||||||
|
return `${input.slice(0, idx)}\\${input.slice(idx)}`;
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.removePrefix = (input, state = {}) => {
|
||||||
|
let output = input;
|
||||||
|
if (output.startsWith('./')) {
|
||||||
|
output = output.slice(2);
|
||||||
|
state.prefix = './';
|
||||||
|
}
|
||||||
|
return output;
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.wrapOutput = (input, state = {}, options = {}) => {
|
||||||
|
const prepend = options.contains ? '' : '^';
|
||||||
|
const append = options.contains ? '' : '$';
|
||||||
|
|
||||||
|
let output = `${prepend}(?:${input})${append}`;
|
||||||
|
if (state.negated === true) {
|
||||||
|
output = `(?:^(?!${output}).*$)`;
|
||||||
|
}
|
||||||
|
return output;
|
||||||
|
};
|
81
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/package.json
generated
vendored
Normal file
81
node_modules/.pnpm/anymatch@3.1.3/node_modules/picomatch/package.json
generated
vendored
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
{
|
||||||
|
"name": "picomatch",
|
||||||
|
"description": "Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.",
|
||||||
|
"version": "2.3.1",
|
||||||
|
"homepage": "https://github.com/micromatch/picomatch",
|
||||||
|
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
||||||
|
"funding": "https://github.com/sponsors/jonschlinkert",
|
||||||
|
"repository": "micromatch/picomatch",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/micromatch/picomatch/issues"
|
||||||
|
},
|
||||||
|
"license": "MIT",
|
||||||
|
"files": [
|
||||||
|
"index.js",
|
||||||
|
"lib"
|
||||||
|
],
|
||||||
|
"main": "index.js",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=8.6"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives --ignore-path .gitignore .",
|
||||||
|
"mocha": "mocha --reporter dot",
|
||||||
|
"test": "npm run lint && npm run mocha",
|
||||||
|
"test:ci": "npm run test:cover",
|
||||||
|
"test:cover": "nyc npm run mocha"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"eslint": "^6.8.0",
|
||||||
|
"fill-range": "^7.0.1",
|
||||||
|
"gulp-format-md": "^2.0.0",
|
||||||
|
"mocha": "^6.2.2",
|
||||||
|
"nyc": "^15.0.0",
|
||||||
|
"time-require": "github:jonschlinkert/time-require"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"glob",
|
||||||
|
"match",
|
||||||
|
"picomatch"
|
||||||
|
],
|
||||||
|
"nyc": {
|
||||||
|
"reporter": [
|
||||||
|
"html",
|
||||||
|
"lcov",
|
||||||
|
"text-summary"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"verb": {
|
||||||
|
"toc": {
|
||||||
|
"render": true,
|
||||||
|
"method": "preWrite",
|
||||||
|
"maxdepth": 3
|
||||||
|
},
|
||||||
|
"layout": "empty",
|
||||||
|
"tasks": [
|
||||||
|
"readme"
|
||||||
|
],
|
||||||
|
"plugins": [
|
||||||
|
"gulp-format-md"
|
||||||
|
],
|
||||||
|
"lint": {
|
||||||
|
"reflinks": true
|
||||||
|
},
|
||||||
|
"related": {
|
||||||
|
"list": [
|
||||||
|
"braces",
|
||||||
|
"micromatch"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"reflinks": [
|
||||||
|
"braces",
|
||||||
|
"expand-brackets",
|
||||||
|
"extglob",
|
||||||
|
"fill-range",
|
||||||
|
"micromatch",
|
||||||
|
"minimatch",
|
||||||
|
"nanomatch",
|
||||||
|
"picomatch"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
21
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/LICENSE
generated
vendored
Normal file
21
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2016 Alex Indigo
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
233
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/README.md
generated
vendored
Normal file
233
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/README.md
generated
vendored
Normal file
@ -0,0 +1,233 @@
|
|||||||
|
# asynckit [](https://www.npmjs.com/package/asynckit)
|
||||||
|
|
||||||
|
Minimal async jobs utility library, with streams support.
|
||||||
|
|
||||||
|
[](https://travis-ci.org/alexindigo/asynckit)
|
||||||
|
[](https://travis-ci.org/alexindigo/asynckit)
|
||||||
|
[](https://ci.appveyor.com/project/alexindigo/asynckit)
|
||||||
|
|
||||||
|
[](https://coveralls.io/github/alexindigo/asynckit?branch=master)
|
||||||
|
[](https://david-dm.org/alexindigo/asynckit)
|
||||||
|
[](https://www.bithound.io/github/alexindigo/asynckit)
|
||||||
|
|
||||||
|
<!-- [](https://www.npmjs.com/package/reamde) -->
|
||||||
|
|
||||||
|
AsyncKit provides harness for `parallel` and `serial` iterators over list of items represented by arrays or objects.
|
||||||
|
Optionally it accepts abort function (should be synchronously return by iterator for each item), and terminates left over jobs upon an error event. For specific iteration order built-in (`ascending` and `descending`) and custom sort helpers also supported, via `asynckit.serialOrdered` method.
|
||||||
|
|
||||||
|
It ensures async operations to keep behavior more stable and prevent `Maximum call stack size exceeded` errors, from sync iterators.
|
||||||
|
|
||||||
|
| compression | size |
|
||||||
|
| :----------------- | -------: |
|
||||||
|
| asynckit.js | 12.34 kB |
|
||||||
|
| asynckit.min.js | 4.11 kB |
|
||||||
|
| asynckit.min.js.gz | 1.47 kB |
|
||||||
|
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ npm install --save asynckit
|
||||||
|
```
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
### Parallel Jobs
|
||||||
|
|
||||||
|
Runs iterator over provided array in parallel. Stores output in the `result` array,
|
||||||
|
on the matching positions. In unlikely event of an error from one of the jobs,
|
||||||
|
will terminate rest of the active jobs (if abort function is provided)
|
||||||
|
and return error along with salvaged data to the main callback function.
|
||||||
|
|
||||||
|
#### Input Array
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
var parallel = require('asynckit').parallel
|
||||||
|
, assert = require('assert')
|
||||||
|
;
|
||||||
|
|
||||||
|
var source = [ 1, 1, 4, 16, 64, 32, 8, 2 ]
|
||||||
|
, expectedResult = [ 2, 2, 8, 32, 128, 64, 16, 4 ]
|
||||||
|
, expectedTarget = [ 1, 1, 2, 4, 8, 16, 32, 64 ]
|
||||||
|
, target = []
|
||||||
|
;
|
||||||
|
|
||||||
|
parallel(source, asyncJob, function(err, result)
|
||||||
|
{
|
||||||
|
assert.deepEqual(result, expectedResult);
|
||||||
|
assert.deepEqual(target, expectedTarget);
|
||||||
|
});
|
||||||
|
|
||||||
|
// async job accepts one element from the array
|
||||||
|
// and a callback function
|
||||||
|
function asyncJob(item, cb)
|
||||||
|
{
|
||||||
|
// different delays (in ms) per item
|
||||||
|
var delay = item * 25;
|
||||||
|
|
||||||
|
// pretend different jobs take different time to finish
|
||||||
|
// and not in consequential order
|
||||||
|
var timeoutId = setTimeout(function() {
|
||||||
|
target.push(item);
|
||||||
|
cb(null, item * 2);
|
||||||
|
}, delay);
|
||||||
|
|
||||||
|
// allow to cancel "leftover" jobs upon error
|
||||||
|
// return function, invoking of which will abort this job
|
||||||
|
return clearTimeout.bind(null, timeoutId);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
More examples could be found in [test/test-parallel-array.js](test/test-parallel-array.js).
|
||||||
|
|
||||||
|
#### Input Object
|
||||||
|
|
||||||
|
Also it supports named jobs, listed via object.
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
var parallel = require('asynckit/parallel')
|
||||||
|
, assert = require('assert')
|
||||||
|
;
|
||||||
|
|
||||||
|
var source = { first: 1, one: 1, four: 4, sixteen: 16, sixtyFour: 64, thirtyTwo: 32, eight: 8, two: 2 }
|
||||||
|
, expectedResult = { first: 2, one: 2, four: 8, sixteen: 32, sixtyFour: 128, thirtyTwo: 64, eight: 16, two: 4 }
|
||||||
|
, expectedTarget = [ 1, 1, 2, 4, 8, 16, 32, 64 ]
|
||||||
|
, expectedKeys = [ 'first', 'one', 'two', 'four', 'eight', 'sixteen', 'thirtyTwo', 'sixtyFour' ]
|
||||||
|
, target = []
|
||||||
|
, keys = []
|
||||||
|
;
|
||||||
|
|
||||||
|
parallel(source, asyncJob, function(err, result)
|
||||||
|
{
|
||||||
|
assert.deepEqual(result, expectedResult);
|
||||||
|
assert.deepEqual(target, expectedTarget);
|
||||||
|
assert.deepEqual(keys, expectedKeys);
|
||||||
|
});
|
||||||
|
|
||||||
|
// supports full value, key, callback (shortcut) interface
|
||||||
|
function asyncJob(item, key, cb)
|
||||||
|
{
|
||||||
|
// different delays (in ms) per item
|
||||||
|
var delay = item * 25;
|
||||||
|
|
||||||
|
// pretend different jobs take different time to finish
|
||||||
|
// and not in consequential order
|
||||||
|
var timeoutId = setTimeout(function() {
|
||||||
|
keys.push(key);
|
||||||
|
target.push(item);
|
||||||
|
cb(null, item * 2);
|
||||||
|
}, delay);
|
||||||
|
|
||||||
|
// allow to cancel "leftover" jobs upon error
|
||||||
|
// return function, invoking of which will abort this job
|
||||||
|
return clearTimeout.bind(null, timeoutId);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
More examples could be found in [test/test-parallel-object.js](test/test-parallel-object.js).
|
||||||
|
|
||||||
|
### Serial Jobs
|
||||||
|
|
||||||
|
Runs iterator over provided array sequentially. Stores output in the `result` array,
|
||||||
|
on the matching positions. In unlikely event of an error from one of the jobs,
|
||||||
|
will not proceed to the rest of the items in the list
|
||||||
|
and return error along with salvaged data to the main callback function.
|
||||||
|
|
||||||
|
#### Input Array
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
var serial = require('asynckit/serial')
|
||||||
|
, assert = require('assert')
|
||||||
|
;
|
||||||
|
|
||||||
|
var source = [ 1, 1, 4, 16, 64, 32, 8, 2 ]
|
||||||
|
, expectedResult = [ 2, 2, 8, 32, 128, 64, 16, 4 ]
|
||||||
|
, expectedTarget = [ 0, 1, 2, 3, 4, 5, 6, 7 ]
|
||||||
|
, target = []
|
||||||
|
;
|
||||||
|
|
||||||
|
serial(source, asyncJob, function(err, result)
|
||||||
|
{
|
||||||
|
assert.deepEqual(result, expectedResult);
|
||||||
|
assert.deepEqual(target, expectedTarget);
|
||||||
|
});
|
||||||
|
|
||||||
|
// extended interface (item, key, callback)
|
||||||
|
// also supported for arrays
|
||||||
|
function asyncJob(item, key, cb)
|
||||||
|
{
|
||||||
|
target.push(key);
|
||||||
|
|
||||||
|
// it will be automatically made async
|
||||||
|
// even it iterator "returns" in the same event loop
|
||||||
|
cb(null, item * 2);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
More examples could be found in [test/test-serial-array.js](test/test-serial-array.js).
|
||||||
|
|
||||||
|
#### Input Object
|
||||||
|
|
||||||
|
Also it supports named jobs, listed via object.
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
var serial = require('asynckit').serial
|
||||||
|
, assert = require('assert')
|
||||||
|
;
|
||||||
|
|
||||||
|
var source = [ 1, 1, 4, 16, 64, 32, 8, 2 ]
|
||||||
|
, expectedResult = [ 2, 2, 8, 32, 128, 64, 16, 4 ]
|
||||||
|
, expectedTarget = [ 0, 1, 2, 3, 4, 5, 6, 7 ]
|
||||||
|
, target = []
|
||||||
|
;
|
||||||
|
|
||||||
|
var source = { first: 1, one: 1, four: 4, sixteen: 16, sixtyFour: 64, thirtyTwo: 32, eight: 8, two: 2 }
|
||||||
|
, expectedResult = { first: 2, one: 2, four: 8, sixteen: 32, sixtyFour: 128, thirtyTwo: 64, eight: 16, two: 4 }
|
||||||
|
, expectedTarget = [ 1, 1, 4, 16, 64, 32, 8, 2 ]
|
||||||
|
, target = []
|
||||||
|
;
|
||||||
|
|
||||||
|
|
||||||
|
serial(source, asyncJob, function(err, result)
|
||||||
|
{
|
||||||
|
assert.deepEqual(result, expectedResult);
|
||||||
|
assert.deepEqual(target, expectedTarget);
|
||||||
|
});
|
||||||
|
|
||||||
|
// shortcut interface (item, callback)
|
||||||
|
// works for object as well as for the arrays
|
||||||
|
function asyncJob(item, cb)
|
||||||
|
{
|
||||||
|
target.push(item);
|
||||||
|
|
||||||
|
// it will be automatically made async
|
||||||
|
// even it iterator "returns" in the same event loop
|
||||||
|
cb(null, item * 2);
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
More examples could be found in [test/test-serial-object.js](test/test-serial-object.js).
|
||||||
|
|
||||||
|
_Note: Since _object_ is an _unordered_ collection of properties,
|
||||||
|
it may produce unexpected results with sequential iterations.
|
||||||
|
Whenever order of the jobs' execution is important please use `serialOrdered` method._
|
||||||
|
|
||||||
|
### Ordered Serial Iterations
|
||||||
|
|
||||||
|
TBD
|
||||||
|
|
||||||
|
For example [compare-property](compare-property) package.
|
||||||
|
|
||||||
|
### Streaming interface
|
||||||
|
|
||||||
|
TBD
|
||||||
|
|
||||||
|
## Want to Know More?
|
||||||
|
|
||||||
|
More examples can be found in [test folder](test/).
|
||||||
|
|
||||||
|
Or open an [issue](https://github.com/alexindigo/asynckit/issues) with questions and/or suggestions.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
AsyncKit is licensed under the MIT license.
|
76
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/bench.js
generated
vendored
Normal file
76
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/bench.js
generated
vendored
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
/* eslint no-console: "off" */
|
||||||
|
|
||||||
|
var asynckit = require('./')
|
||||||
|
, async = require('async')
|
||||||
|
, assert = require('assert')
|
||||||
|
, expected = 0
|
||||||
|
;
|
||||||
|
|
||||||
|
var Benchmark = require('benchmark');
|
||||||
|
var suite = new Benchmark.Suite;
|
||||||
|
|
||||||
|
var source = [];
|
||||||
|
for (var z = 1; z < 100; z++)
|
||||||
|
{
|
||||||
|
source.push(z);
|
||||||
|
expected += z;
|
||||||
|
}
|
||||||
|
|
||||||
|
suite
|
||||||
|
// add tests
|
||||||
|
|
||||||
|
.add('async.map', function(deferred)
|
||||||
|
{
|
||||||
|
var total = 0;
|
||||||
|
|
||||||
|
async.map(source,
|
||||||
|
function(i, cb)
|
||||||
|
{
|
||||||
|
setImmediate(function()
|
||||||
|
{
|
||||||
|
total += i;
|
||||||
|
cb(null, total);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
function(err, result)
|
||||||
|
{
|
||||||
|
assert.ifError(err);
|
||||||
|
assert.equal(result[result.length - 1], expected);
|
||||||
|
deferred.resolve();
|
||||||
|
});
|
||||||
|
}, {'defer': true})
|
||||||
|
|
||||||
|
|
||||||
|
.add('asynckit.parallel', function(deferred)
|
||||||
|
{
|
||||||
|
var total = 0;
|
||||||
|
|
||||||
|
asynckit.parallel(source,
|
||||||
|
function(i, cb)
|
||||||
|
{
|
||||||
|
setImmediate(function()
|
||||||
|
{
|
||||||
|
total += i;
|
||||||
|
cb(null, total);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
function(err, result)
|
||||||
|
{
|
||||||
|
assert.ifError(err);
|
||||||
|
assert.equal(result[result.length - 1], expected);
|
||||||
|
deferred.resolve();
|
||||||
|
});
|
||||||
|
}, {'defer': true})
|
||||||
|
|
||||||
|
|
||||||
|
// add listeners
|
||||||
|
.on('cycle', function(ev)
|
||||||
|
{
|
||||||
|
console.log(String(ev.target));
|
||||||
|
})
|
||||||
|
.on('complete', function()
|
||||||
|
{
|
||||||
|
console.log('Fastest is ' + this.filter('fastest').map('name'));
|
||||||
|
})
|
||||||
|
// run async
|
||||||
|
.run({ 'async': true });
|
6
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/index.js
generated
vendored
Normal file
6
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/index.js
generated
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
module.exports =
|
||||||
|
{
|
||||||
|
parallel : require('./parallel.js'),
|
||||||
|
serial : require('./serial.js'),
|
||||||
|
serialOrdered : require('./serialOrdered.js')
|
||||||
|
};
|
29
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/abort.js
generated
vendored
Normal file
29
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/abort.js
generated
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
// API
|
||||||
|
module.exports = abort;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Aborts leftover active jobs
|
||||||
|
*
|
||||||
|
* @param {object} state - current state object
|
||||||
|
*/
|
||||||
|
function abort(state)
|
||||||
|
{
|
||||||
|
Object.keys(state.jobs).forEach(clean.bind(state));
|
||||||
|
|
||||||
|
// reset leftover jobs
|
||||||
|
state.jobs = {};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cleans up leftover job by invoking abort function for the provided job id
|
||||||
|
*
|
||||||
|
* @this state
|
||||||
|
* @param {string|number} key - job id to abort
|
||||||
|
*/
|
||||||
|
function clean(key)
|
||||||
|
{
|
||||||
|
if (typeof this.jobs[key] == 'function')
|
||||||
|
{
|
||||||
|
this.jobs[key]();
|
||||||
|
}
|
||||||
|
}
|
34
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/async.js
generated
vendored
Normal file
34
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/async.js
generated
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
var defer = require('./defer.js');
|
||||||
|
|
||||||
|
// API
|
||||||
|
module.exports = async;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs provided callback asynchronously
|
||||||
|
* even if callback itself is not
|
||||||
|
*
|
||||||
|
* @param {function} callback - callback to invoke
|
||||||
|
* @returns {function} - augmented callback
|
||||||
|
*/
|
||||||
|
function async(callback)
|
||||||
|
{
|
||||||
|
var isAsync = false;
|
||||||
|
|
||||||
|
// check if async happened
|
||||||
|
defer(function() { isAsync = true; });
|
||||||
|
|
||||||
|
return function async_callback(err, result)
|
||||||
|
{
|
||||||
|
if (isAsync)
|
||||||
|
{
|
||||||
|
callback(err, result);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
defer(function nextTick_callback()
|
||||||
|
{
|
||||||
|
callback(err, result);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
26
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/defer.js
generated
vendored
Normal file
26
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/defer.js
generated
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
module.exports = defer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs provided function on next iteration of the event loop
|
||||||
|
*
|
||||||
|
* @param {function} fn - function to run
|
||||||
|
*/
|
||||||
|
function defer(fn)
|
||||||
|
{
|
||||||
|
var nextTick = typeof setImmediate == 'function'
|
||||||
|
? setImmediate
|
||||||
|
: (
|
||||||
|
typeof process == 'object' && typeof process.nextTick == 'function'
|
||||||
|
? process.nextTick
|
||||||
|
: null
|
||||||
|
);
|
||||||
|
|
||||||
|
if (nextTick)
|
||||||
|
{
|
||||||
|
nextTick(fn);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
setTimeout(fn, 0);
|
||||||
|
}
|
||||||
|
}
|
75
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/iterate.js
generated
vendored
Normal file
75
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/iterate.js
generated
vendored
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
var async = require('./async.js')
|
||||||
|
, abort = require('./abort.js')
|
||||||
|
;
|
||||||
|
|
||||||
|
// API
|
||||||
|
module.exports = iterate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Iterates over each job object
|
||||||
|
*
|
||||||
|
* @param {array|object} list - array or object (named list) to iterate over
|
||||||
|
* @param {function} iterator - iterator to run
|
||||||
|
* @param {object} state - current job status
|
||||||
|
* @param {function} callback - invoked when all elements processed
|
||||||
|
*/
|
||||||
|
function iterate(list, iterator, state, callback)
|
||||||
|
{
|
||||||
|
// store current index
|
||||||
|
var key = state['keyedList'] ? state['keyedList'][state.index] : state.index;
|
||||||
|
|
||||||
|
state.jobs[key] = runJob(iterator, key, list[key], function(error, output)
|
||||||
|
{
|
||||||
|
// don't repeat yourself
|
||||||
|
// skip secondary callbacks
|
||||||
|
if (!(key in state.jobs))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// clean up jobs
|
||||||
|
delete state.jobs[key];
|
||||||
|
|
||||||
|
if (error)
|
||||||
|
{
|
||||||
|
// don't process rest of the results
|
||||||
|
// stop still active jobs
|
||||||
|
// and reset the list
|
||||||
|
abort(state);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
state.results[key] = output;
|
||||||
|
}
|
||||||
|
|
||||||
|
// return salvaged results
|
||||||
|
callback(error, state.results);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs iterator over provided job element
|
||||||
|
*
|
||||||
|
* @param {function} iterator - iterator to invoke
|
||||||
|
* @param {string|number} key - key/index of the element in the list of jobs
|
||||||
|
* @param {mixed} item - job description
|
||||||
|
* @param {function} callback - invoked after iterator is done with the job
|
||||||
|
* @returns {function|mixed} - job abort function or something else
|
||||||
|
*/
|
||||||
|
function runJob(iterator, key, item, callback)
|
||||||
|
{
|
||||||
|
var aborter;
|
||||||
|
|
||||||
|
// allow shortcut if iterator expects only two arguments
|
||||||
|
if (iterator.length == 2)
|
||||||
|
{
|
||||||
|
aborter = iterator(item, async(callback));
|
||||||
|
}
|
||||||
|
// otherwise go with full three arguments
|
||||||
|
else
|
||||||
|
{
|
||||||
|
aborter = iterator(item, key, async(callback));
|
||||||
|
}
|
||||||
|
|
||||||
|
return aborter;
|
||||||
|
}
|
91
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/readable_asynckit.js
generated
vendored
Normal file
91
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/readable_asynckit.js
generated
vendored
Normal file
@ -0,0 +1,91 @@
|
|||||||
|
var streamify = require('./streamify.js')
|
||||||
|
, defer = require('./defer.js')
|
||||||
|
;
|
||||||
|
|
||||||
|
// API
|
||||||
|
module.exports = ReadableAsyncKit;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Base constructor for all streams
|
||||||
|
* used to hold properties/methods
|
||||||
|
*/
|
||||||
|
function ReadableAsyncKit()
|
||||||
|
{
|
||||||
|
ReadableAsyncKit.super_.apply(this, arguments);
|
||||||
|
|
||||||
|
// list of active jobs
|
||||||
|
this.jobs = {};
|
||||||
|
|
||||||
|
// add stream methods
|
||||||
|
this.destroy = destroy;
|
||||||
|
this._start = _start;
|
||||||
|
this._read = _read;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Destroys readable stream,
|
||||||
|
* by aborting outstanding jobs
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
|
*/
|
||||||
|
function destroy()
|
||||||
|
{
|
||||||
|
if (this.destroyed)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.destroyed = true;
|
||||||
|
|
||||||
|
if (typeof this.terminator == 'function')
|
||||||
|
{
|
||||||
|
this.terminator();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts provided jobs in async manner
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
function _start()
|
||||||
|
{
|
||||||
|
// first argument – runner function
|
||||||
|
var runner = arguments[0]
|
||||||
|
// take away first argument
|
||||||
|
, args = Array.prototype.slice.call(arguments, 1)
|
||||||
|
// second argument - input data
|
||||||
|
, input = args[0]
|
||||||
|
// last argument - result callback
|
||||||
|
, endCb = streamify.callback.call(this, args[args.length - 1])
|
||||||
|
;
|
||||||
|
|
||||||
|
args[args.length - 1] = endCb;
|
||||||
|
// third argument - iterator
|
||||||
|
args[1] = streamify.iterator.call(this, args[1]);
|
||||||
|
|
||||||
|
// allow time for proper setup
|
||||||
|
defer(function()
|
||||||
|
{
|
||||||
|
if (!this.destroyed)
|
||||||
|
{
|
||||||
|
this.terminator = runner.apply(null, args);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
endCb(null, Array.isArray(input) ? [] : {});
|
||||||
|
}
|
||||||
|
}.bind(this));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Implement _read to comply with Readable streams
|
||||||
|
* Doesn't really make sense for flowing object mode
|
||||||
|
*
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
function _read()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
25
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/readable_parallel.js
generated
vendored
Normal file
25
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/readable_parallel.js
generated
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
var parallel = require('../parallel.js');
|
||||||
|
|
||||||
|
// API
|
||||||
|
module.exports = ReadableParallel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Streaming wrapper to `asynckit.parallel`
|
||||||
|
*
|
||||||
|
* @param {array|object} list - array or object (named list) to iterate over
|
||||||
|
* @param {function} iterator - iterator to run
|
||||||
|
* @param {function} callback - invoked when all elements processed
|
||||||
|
* @returns {stream.Readable#}
|
||||||
|
*/
|
||||||
|
function ReadableParallel(list, iterator, callback)
|
||||||
|
{
|
||||||
|
if (!(this instanceof ReadableParallel))
|
||||||
|
{
|
||||||
|
return new ReadableParallel(list, iterator, callback);
|
||||||
|
}
|
||||||
|
|
||||||
|
// turn on object mode
|
||||||
|
ReadableParallel.super_.call(this, {objectMode: true});
|
||||||
|
|
||||||
|
this._start(parallel, list, iterator, callback);
|
||||||
|
}
|
25
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/readable_serial.js
generated
vendored
Normal file
25
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/readable_serial.js
generated
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
var serial = require('../serial.js');
|
||||||
|
|
||||||
|
// API
|
||||||
|
module.exports = ReadableSerial;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Streaming wrapper to `asynckit.serial`
|
||||||
|
*
|
||||||
|
* @param {array|object} list - array or object (named list) to iterate over
|
||||||
|
* @param {function} iterator - iterator to run
|
||||||
|
* @param {function} callback - invoked when all elements processed
|
||||||
|
* @returns {stream.Readable#}
|
||||||
|
*/
|
||||||
|
function ReadableSerial(list, iterator, callback)
|
||||||
|
{
|
||||||
|
if (!(this instanceof ReadableSerial))
|
||||||
|
{
|
||||||
|
return new ReadableSerial(list, iterator, callback);
|
||||||
|
}
|
||||||
|
|
||||||
|
// turn on object mode
|
||||||
|
ReadableSerial.super_.call(this, {objectMode: true});
|
||||||
|
|
||||||
|
this._start(serial, list, iterator, callback);
|
||||||
|
}
|
29
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/readable_serial_ordered.js
generated
vendored
Normal file
29
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/readable_serial_ordered.js
generated
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
var serialOrdered = require('../serialOrdered.js');
|
||||||
|
|
||||||
|
// API
|
||||||
|
module.exports = ReadableSerialOrdered;
|
||||||
|
// expose sort helpers
|
||||||
|
module.exports.ascending = serialOrdered.ascending;
|
||||||
|
module.exports.descending = serialOrdered.descending;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Streaming wrapper to `asynckit.serialOrdered`
|
||||||
|
*
|
||||||
|
* @param {array|object} list - array or object (named list) to iterate over
|
||||||
|
* @param {function} iterator - iterator to run
|
||||||
|
* @param {function} sortMethod - custom sort function
|
||||||
|
* @param {function} callback - invoked when all elements processed
|
||||||
|
* @returns {stream.Readable#}
|
||||||
|
*/
|
||||||
|
function ReadableSerialOrdered(list, iterator, sortMethod, callback)
|
||||||
|
{
|
||||||
|
if (!(this instanceof ReadableSerialOrdered))
|
||||||
|
{
|
||||||
|
return new ReadableSerialOrdered(list, iterator, sortMethod, callback);
|
||||||
|
}
|
||||||
|
|
||||||
|
// turn on object mode
|
||||||
|
ReadableSerialOrdered.super_.call(this, {objectMode: true});
|
||||||
|
|
||||||
|
this._start(serialOrdered, list, iterator, sortMethod, callback);
|
||||||
|
}
|
37
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/state.js
generated
vendored
Normal file
37
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/state.js
generated
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
// API
|
||||||
|
module.exports = state;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates initial state object
|
||||||
|
* for iteration over list
|
||||||
|
*
|
||||||
|
* @param {array|object} list - list to iterate over
|
||||||
|
* @param {function|null} sortMethod - function to use for keys sort,
|
||||||
|
* or `null` to keep them as is
|
||||||
|
* @returns {object} - initial state object
|
||||||
|
*/
|
||||||
|
function state(list, sortMethod)
|
||||||
|
{
|
||||||
|
var isNamedList = !Array.isArray(list)
|
||||||
|
, initState =
|
||||||
|
{
|
||||||
|
index : 0,
|
||||||
|
keyedList: isNamedList || sortMethod ? Object.keys(list) : null,
|
||||||
|
jobs : {},
|
||||||
|
results : isNamedList ? {} : [],
|
||||||
|
size : isNamedList ? Object.keys(list).length : list.length
|
||||||
|
}
|
||||||
|
;
|
||||||
|
|
||||||
|
if (sortMethod)
|
||||||
|
{
|
||||||
|
// sort array keys based on it's values
|
||||||
|
// sort object's keys just on own merit
|
||||||
|
initState.keyedList.sort(isNamedList ? sortMethod : function(a, b)
|
||||||
|
{
|
||||||
|
return sortMethod(list[a], list[b]);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return initState;
|
||||||
|
}
|
141
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/streamify.js
generated
vendored
Normal file
141
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/streamify.js
generated
vendored
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
var async = require('./async.js');
|
||||||
|
|
||||||
|
// API
|
||||||
|
module.exports = {
|
||||||
|
iterator: wrapIterator,
|
||||||
|
callback: wrapCallback
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wraps iterators with long signature
|
||||||
|
*
|
||||||
|
* @this ReadableAsyncKit#
|
||||||
|
* @param {function} iterator - function to wrap
|
||||||
|
* @returns {function} - wrapped function
|
||||||
|
*/
|
||||||
|
function wrapIterator(iterator)
|
||||||
|
{
|
||||||
|
var stream = this;
|
||||||
|
|
||||||
|
return function(item, key, cb)
|
||||||
|
{
|
||||||
|
var aborter
|
||||||
|
, wrappedCb = async(wrapIteratorCallback.call(stream, cb, key))
|
||||||
|
;
|
||||||
|
|
||||||
|
stream.jobs[key] = wrappedCb;
|
||||||
|
|
||||||
|
// it's either shortcut (item, cb)
|
||||||
|
if (iterator.length == 2)
|
||||||
|
{
|
||||||
|
aborter = iterator(item, wrappedCb);
|
||||||
|
}
|
||||||
|
// or long format (item, key, cb)
|
||||||
|
else
|
||||||
|
{
|
||||||
|
aborter = iterator(item, key, wrappedCb);
|
||||||
|
}
|
||||||
|
|
||||||
|
return aborter;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wraps provided callback function
|
||||||
|
* allowing to execute snitch function before
|
||||||
|
* real callback
|
||||||
|
*
|
||||||
|
* @this ReadableAsyncKit#
|
||||||
|
* @param {function} callback - function to wrap
|
||||||
|
* @returns {function} - wrapped function
|
||||||
|
*/
|
||||||
|
function wrapCallback(callback)
|
||||||
|
{
|
||||||
|
var stream = this;
|
||||||
|
|
||||||
|
var wrapped = function(error, result)
|
||||||
|
{
|
||||||
|
return finisher.call(stream, error, result, callback);
|
||||||
|
};
|
||||||
|
|
||||||
|
return wrapped;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wraps provided iterator callback function
|
||||||
|
* makes sure snitch only called once,
|
||||||
|
* but passes secondary calls to the original callback
|
||||||
|
*
|
||||||
|
* @this ReadableAsyncKit#
|
||||||
|
* @param {function} callback - callback to wrap
|
||||||
|
* @param {number|string} key - iteration key
|
||||||
|
* @returns {function} wrapped callback
|
||||||
|
*/
|
||||||
|
function wrapIteratorCallback(callback, key)
|
||||||
|
{
|
||||||
|
var stream = this;
|
||||||
|
|
||||||
|
return function(error, output)
|
||||||
|
{
|
||||||
|
// don't repeat yourself
|
||||||
|
if (!(key in stream.jobs))
|
||||||
|
{
|
||||||
|
callback(error, output);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// clean up jobs
|
||||||
|
delete stream.jobs[key];
|
||||||
|
|
||||||
|
return streamer.call(stream, error, {key: key, value: output}, callback);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stream wrapper for iterator callback
|
||||||
|
*
|
||||||
|
* @this ReadableAsyncKit#
|
||||||
|
* @param {mixed} error - error response
|
||||||
|
* @param {mixed} output - iterator output
|
||||||
|
* @param {function} callback - callback that expects iterator results
|
||||||
|
*/
|
||||||
|
function streamer(error, output, callback)
|
||||||
|
{
|
||||||
|
if (error && !this.error)
|
||||||
|
{
|
||||||
|
this.error = error;
|
||||||
|
this.pause();
|
||||||
|
this.emit('error', error);
|
||||||
|
// send back value only, as expected
|
||||||
|
callback(error, output && output.value);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// stream stuff
|
||||||
|
this.push(output);
|
||||||
|
|
||||||
|
// back to original track
|
||||||
|
// send back value only, as expected
|
||||||
|
callback(error, output && output.value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stream wrapper for finishing callback
|
||||||
|
*
|
||||||
|
* @this ReadableAsyncKit#
|
||||||
|
* @param {mixed} error - error response
|
||||||
|
* @param {mixed} output - iterator output
|
||||||
|
* @param {function} callback - callback that expects final results
|
||||||
|
*/
|
||||||
|
function finisher(error, output, callback)
|
||||||
|
{
|
||||||
|
// signal end of the stream
|
||||||
|
// only for successfully finished streams
|
||||||
|
if (!error)
|
||||||
|
{
|
||||||
|
this.push(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
// back to original track
|
||||||
|
callback(error, output);
|
||||||
|
}
|
29
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/terminator.js
generated
vendored
Normal file
29
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/lib/terminator.js
generated
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
var abort = require('./abort.js')
|
||||||
|
, async = require('./async.js')
|
||||||
|
;
|
||||||
|
|
||||||
|
// API
|
||||||
|
module.exports = terminator;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Terminates jobs in the attached state context
|
||||||
|
*
|
||||||
|
* @this AsyncKitState#
|
||||||
|
* @param {function} callback - final callback to invoke after termination
|
||||||
|
*/
|
||||||
|
function terminator(callback)
|
||||||
|
{
|
||||||
|
if (!Object.keys(this.jobs).length)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// fast forward iteration index
|
||||||
|
this.index = this.size;
|
||||||
|
|
||||||
|
// abort jobs
|
||||||
|
abort(this);
|
||||||
|
|
||||||
|
// send back results we have so far
|
||||||
|
async(callback)(null, this.results);
|
||||||
|
}
|
63
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/package.json
generated
vendored
Normal file
63
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/package.json
generated
vendored
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
{
|
||||||
|
"name": "asynckit",
|
||||||
|
"version": "0.4.0",
|
||||||
|
"description": "Minimal async jobs utility library, with streams support",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"clean": "rimraf coverage",
|
||||||
|
"lint": "eslint *.js lib/*.js test/*.js",
|
||||||
|
"test": "istanbul cover --reporter=json tape -- 'test/test-*.js' | tap-spec",
|
||||||
|
"win-test": "tape test/test-*.js",
|
||||||
|
"browser": "browserify -t browserify-istanbul test/lib/browserify_adjustment.js test/test-*.js | obake --coverage | tap-spec",
|
||||||
|
"report": "istanbul report",
|
||||||
|
"size": "browserify index.js | size-table asynckit",
|
||||||
|
"debug": "tape test/test-*.js"
|
||||||
|
},
|
||||||
|
"pre-commit": [
|
||||||
|
"clean",
|
||||||
|
"lint",
|
||||||
|
"test",
|
||||||
|
"browser",
|
||||||
|
"report",
|
||||||
|
"size"
|
||||||
|
],
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/alexindigo/asynckit.git"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"async",
|
||||||
|
"jobs",
|
||||||
|
"parallel",
|
||||||
|
"serial",
|
||||||
|
"iterator",
|
||||||
|
"array",
|
||||||
|
"object",
|
||||||
|
"stream",
|
||||||
|
"destroy",
|
||||||
|
"terminate",
|
||||||
|
"abort"
|
||||||
|
],
|
||||||
|
"author": "Alex Indigo <iam@alexindigo.com>",
|
||||||
|
"license": "MIT",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/alexindigo/asynckit/issues"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/alexindigo/asynckit#readme",
|
||||||
|
"devDependencies": {
|
||||||
|
"browserify": "^13.0.0",
|
||||||
|
"browserify-istanbul": "^2.0.0",
|
||||||
|
"coveralls": "^2.11.9",
|
||||||
|
"eslint": "^2.9.0",
|
||||||
|
"istanbul": "^0.4.3",
|
||||||
|
"obake": "^0.1.2",
|
||||||
|
"phantomjs-prebuilt": "^2.1.7",
|
||||||
|
"pre-commit": "^1.1.3",
|
||||||
|
"reamde": "^1.1.0",
|
||||||
|
"rimraf": "^2.5.2",
|
||||||
|
"size-table": "^0.2.0",
|
||||||
|
"tap-spec": "^4.1.1",
|
||||||
|
"tape": "^4.5.1"
|
||||||
|
},
|
||||||
|
"dependencies": {}
|
||||||
|
}
|
43
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/parallel.js
generated
vendored
Normal file
43
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/parallel.js
generated
vendored
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
var iterate = require('./lib/iterate.js')
|
||||||
|
, initState = require('./lib/state.js')
|
||||||
|
, terminator = require('./lib/terminator.js')
|
||||||
|
;
|
||||||
|
|
||||||
|
// Public API
|
||||||
|
module.exports = parallel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs iterator over provided array elements in parallel
|
||||||
|
*
|
||||||
|
* @param {array|object} list - array or object (named list) to iterate over
|
||||||
|
* @param {function} iterator - iterator to run
|
||||||
|
* @param {function} callback - invoked when all elements processed
|
||||||
|
* @returns {function} - jobs terminator
|
||||||
|
*/
|
||||||
|
function parallel(list, iterator, callback)
|
||||||
|
{
|
||||||
|
var state = initState(list);
|
||||||
|
|
||||||
|
while (state.index < (state['keyedList'] || list).length)
|
||||||
|
{
|
||||||
|
iterate(list, iterator, state, function(error, result)
|
||||||
|
{
|
||||||
|
if (error)
|
||||||
|
{
|
||||||
|
callback(error, result);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// looks like it's the last one
|
||||||
|
if (Object.keys(state.jobs).length === 0)
|
||||||
|
{
|
||||||
|
callback(null, state.results);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
state.index++;
|
||||||
|
}
|
||||||
|
|
||||||
|
return terminator.bind(state, callback);
|
||||||
|
}
|
17
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/serial.js
generated
vendored
Normal file
17
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/serial.js
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
var serialOrdered = require('./serialOrdered.js');
|
||||||
|
|
||||||
|
// Public API
|
||||||
|
module.exports = serial;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs iterator over provided array elements in series
|
||||||
|
*
|
||||||
|
* @param {array|object} list - array or object (named list) to iterate over
|
||||||
|
* @param {function} iterator - iterator to run
|
||||||
|
* @param {function} callback - invoked when all elements processed
|
||||||
|
* @returns {function} - jobs terminator
|
||||||
|
*/
|
||||||
|
function serial(list, iterator, callback)
|
||||||
|
{
|
||||||
|
return serialOrdered(list, iterator, null, callback);
|
||||||
|
}
|
75
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/serialOrdered.js
generated
vendored
Normal file
75
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/serialOrdered.js
generated
vendored
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
var iterate = require('./lib/iterate.js')
|
||||||
|
, initState = require('./lib/state.js')
|
||||||
|
, terminator = require('./lib/terminator.js')
|
||||||
|
;
|
||||||
|
|
||||||
|
// Public API
|
||||||
|
module.exports = serialOrdered;
|
||||||
|
// sorting helpers
|
||||||
|
module.exports.ascending = ascending;
|
||||||
|
module.exports.descending = descending;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs iterator over provided sorted array elements in series
|
||||||
|
*
|
||||||
|
* @param {array|object} list - array or object (named list) to iterate over
|
||||||
|
* @param {function} iterator - iterator to run
|
||||||
|
* @param {function} sortMethod - custom sort function
|
||||||
|
* @param {function} callback - invoked when all elements processed
|
||||||
|
* @returns {function} - jobs terminator
|
||||||
|
*/
|
||||||
|
function serialOrdered(list, iterator, sortMethod, callback)
|
||||||
|
{
|
||||||
|
var state = initState(list, sortMethod);
|
||||||
|
|
||||||
|
iterate(list, iterator, state, function iteratorHandler(error, result)
|
||||||
|
{
|
||||||
|
if (error)
|
||||||
|
{
|
||||||
|
callback(error, result);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
state.index++;
|
||||||
|
|
||||||
|
// are we there yet?
|
||||||
|
if (state.index < (state['keyedList'] || list).length)
|
||||||
|
{
|
||||||
|
iterate(list, iterator, state, iteratorHandler);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// done here
|
||||||
|
callback(null, state.results);
|
||||||
|
});
|
||||||
|
|
||||||
|
return terminator.bind(state, callback);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* -- Sort methods
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sort helper to sort array elements in ascending order
|
||||||
|
*
|
||||||
|
* @param {mixed} a - an item to compare
|
||||||
|
* @param {mixed} b - an item to compare
|
||||||
|
* @returns {number} - comparison result
|
||||||
|
*/
|
||||||
|
function ascending(a, b)
|
||||||
|
{
|
||||||
|
return a < b ? -1 : a > b ? 1 : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sort helper to sort array elements in descending order
|
||||||
|
*
|
||||||
|
* @param {mixed} a - an item to compare
|
||||||
|
* @param {mixed} b - an item to compare
|
||||||
|
* @returns {number} - comparison result
|
||||||
|
*/
|
||||||
|
function descending(a, b)
|
||||||
|
{
|
||||||
|
return -1 * ascending(a, b);
|
||||||
|
}
|
21
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/stream.js
generated
vendored
Normal file
21
node_modules/.pnpm/asynckit@0.4.0/node_modules/asynckit/stream.js
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
var inherits = require('util').inherits
|
||||||
|
, Readable = require('stream').Readable
|
||||||
|
, ReadableAsyncKit = require('./lib/readable_asynckit.js')
|
||||||
|
, ReadableParallel = require('./lib/readable_parallel.js')
|
||||||
|
, ReadableSerial = require('./lib/readable_serial.js')
|
||||||
|
, ReadableSerialOrdered = require('./lib/readable_serial_ordered.js')
|
||||||
|
;
|
||||||
|
|
||||||
|
// API
|
||||||
|
module.exports =
|
||||||
|
{
|
||||||
|
parallel : ReadableParallel,
|
||||||
|
serial : ReadableSerial,
|
||||||
|
serialOrdered : ReadableSerialOrdered,
|
||||||
|
};
|
||||||
|
|
||||||
|
inherits(ReadableAsyncKit, Readable);
|
||||||
|
|
||||||
|
inherits(ReadableParallel, ReadableAsyncKit);
|
||||||
|
inherits(ReadableSerial, ReadableAsyncKit);
|
||||||
|
inherits(ReadableSerialOrdered, ReadableAsyncKit);
|
1196
node_modules/.pnpm/axios@1.9.0/node_modules/axios/CHANGELOG.md
generated
vendored
Normal file
1196
node_modules/.pnpm/axios@1.9.0/node_modules/axios/CHANGELOG.md
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
7
node_modules/.pnpm/axios@1.9.0/node_modules/axios/LICENSE
generated
vendored
Normal file
7
node_modules/.pnpm/axios@1.9.0/node_modules/axios/LICENSE
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Copyright (c) 2014-present Matt Zabriskie & Collaborators
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
3
node_modules/.pnpm/axios@1.9.0/node_modules/axios/MIGRATION_GUIDE.md
generated
vendored
Normal file
3
node_modules/.pnpm/axios@1.9.0/node_modules/axios/MIGRATION_GUIDE.md
generated
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# Migration Guide
|
||||||
|
|
||||||
|
## 0.x.x -> 1.1.0
|
1679
node_modules/.pnpm/axios@1.9.0/node_modules/axios/README.md
generated
vendored
Normal file
1679
node_modules/.pnpm/axios@1.9.0/node_modules/axios/README.md
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
4293
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/axios.js
generated
vendored
Normal file
4293
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/axios.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/axios.js.map
generated
vendored
Normal file
1
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/axios.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
3
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/axios.min.js
generated
vendored
Normal file
3
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/axios.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/axios.min.js.map
generated
vendored
Normal file
1
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/axios.min.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
3726
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/browser/axios.cjs
generated
vendored
Normal file
3726
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/browser/axios.cjs
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/browser/axios.cjs.map
generated
vendored
Normal file
1
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/browser/axios.cjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
3749
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/esm/axios.js
generated
vendored
Normal file
3749
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/esm/axios.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/esm/axios.js.map
generated
vendored
Normal file
1
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/esm/axios.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
3
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/esm/axios.min.js
generated
vendored
Normal file
3
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/esm/axios.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/esm/axios.min.js.map
generated
vendored
Normal file
1
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/esm/axios.min.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
4783
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/node/axios.cjs
generated
vendored
Normal file
4783
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/node/axios.cjs
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/node/axios.cjs.map
generated
vendored
Normal file
1
node_modules/.pnpm/axios@1.9.0/node_modules/axios/dist/node/axios.cjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
550
node_modules/.pnpm/axios@1.9.0/node_modules/axios/index.d.cts
generated
vendored
Normal file
550
node_modules/.pnpm/axios@1.9.0/node_modules/axios/index.d.cts
generated
vendored
Normal file
@ -0,0 +1,550 @@
|
|||||||
|
interface RawAxiosHeaders {
|
||||||
|
[key: string]: axios.AxiosHeaderValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
type MethodsHeaders = Partial<{
|
||||||
|
[Key in axios.Method as Lowercase<Key>]: AxiosHeaders;
|
||||||
|
} & {common: AxiosHeaders}>;
|
||||||
|
|
||||||
|
type AxiosHeaderMatcher = (this: AxiosHeaders, value: string, name: string, headers: RawAxiosHeaders) => boolean;
|
||||||
|
|
||||||
|
type AxiosHeaderParser = (this: AxiosHeaders, value: axios.AxiosHeaderValue, header: string) => any;
|
||||||
|
|
||||||
|
type CommonRequestHeadersList = 'Accept' | 'Content-Length' | 'User-Agent'| 'Content-Encoding' | 'Authorization';
|
||||||
|
|
||||||
|
type ContentType = axios.AxiosHeaderValue | 'text/html' | 'text/plain' | 'multipart/form-data' | 'application/json' | 'application/x-www-form-urlencoded' | 'application/octet-stream';
|
||||||
|
|
||||||
|
type CommonResponseHeadersList = 'Server' | 'Content-Type' | 'Content-Length' | 'Cache-Control'| 'Content-Encoding';
|
||||||
|
|
||||||
|
declare class AxiosHeaders {
|
||||||
|
constructor(
|
||||||
|
headers?: RawAxiosHeaders | AxiosHeaders | string
|
||||||
|
);
|
||||||
|
|
||||||
|
[key: string]: any;
|
||||||
|
|
||||||
|
set(headerName?: string, value?: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
||||||
|
set(headers?: RawAxiosHeaders | AxiosHeaders | string, rewrite?: boolean): AxiosHeaders;
|
||||||
|
|
||||||
|
get(headerName: string, parser: RegExp): RegExpExecArray | null;
|
||||||
|
get(headerName: string, matcher?: true | AxiosHeaderParser): axios.AxiosHeaderValue;
|
||||||
|
|
||||||
|
has(header: string, matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
delete(header: string | string[], matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
clear(matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
normalize(format: boolean): AxiosHeaders;
|
||||||
|
|
||||||
|
concat(...targets: Array<AxiosHeaders | RawAxiosHeaders | string | undefined | null>): AxiosHeaders;
|
||||||
|
|
||||||
|
toJSON(asStrings?: boolean): RawAxiosHeaders;
|
||||||
|
|
||||||
|
static from(thing?: AxiosHeaders | RawAxiosHeaders | string): AxiosHeaders;
|
||||||
|
|
||||||
|
static accessor(header: string | string[]): AxiosHeaders;
|
||||||
|
|
||||||
|
static concat(...targets: Array<AxiosHeaders | RawAxiosHeaders | string | undefined | null>): AxiosHeaders;
|
||||||
|
|
||||||
|
setContentType(value: ContentType, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
||||||
|
getContentType(parser?: RegExp): RegExpExecArray | null;
|
||||||
|
getContentType(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
|
||||||
|
hasContentType(matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
setContentLength(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
||||||
|
getContentLength(parser?: RegExp): RegExpExecArray | null;
|
||||||
|
getContentLength(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
|
||||||
|
hasContentLength(matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
setAccept(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
||||||
|
getAccept(parser?: RegExp): RegExpExecArray | null;
|
||||||
|
getAccept(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
|
||||||
|
hasAccept(matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
setUserAgent(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
||||||
|
getUserAgent(parser?: RegExp): RegExpExecArray | null;
|
||||||
|
getUserAgent(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
|
||||||
|
hasUserAgent(matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
setContentEncoding(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
||||||
|
getContentEncoding(parser?: RegExp): RegExpExecArray | null;
|
||||||
|
getContentEncoding(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
|
||||||
|
hasContentEncoding(matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
setAuthorization(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
||||||
|
getAuthorization(parser?: RegExp): RegExpExecArray | null;
|
||||||
|
getAuthorization(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
|
||||||
|
hasAuthorization(matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
[Symbol.iterator](): IterableIterator<[string, axios.AxiosHeaderValue]>;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare class AxiosError<T = unknown, D = any> extends Error {
|
||||||
|
constructor(
|
||||||
|
message?: string,
|
||||||
|
code?: string,
|
||||||
|
config?: axios.InternalAxiosRequestConfig<D>,
|
||||||
|
request?: any,
|
||||||
|
response?: axios.AxiosResponse<T, D>
|
||||||
|
);
|
||||||
|
|
||||||
|
config?: axios.InternalAxiosRequestConfig<D>;
|
||||||
|
code?: string;
|
||||||
|
request?: any;
|
||||||
|
response?: axios.AxiosResponse<T, D>;
|
||||||
|
isAxiosError: boolean;
|
||||||
|
status?: number;
|
||||||
|
toJSON: () => object;
|
||||||
|
cause?: Error;
|
||||||
|
static readonly ERR_FR_TOO_MANY_REDIRECTS = "ERR_FR_TOO_MANY_REDIRECTS";
|
||||||
|
static readonly ERR_BAD_OPTION_VALUE = "ERR_BAD_OPTION_VALUE";
|
||||||
|
static readonly ERR_BAD_OPTION = "ERR_BAD_OPTION";
|
||||||
|
static readonly ERR_NETWORK = "ERR_NETWORK";
|
||||||
|
static readonly ERR_DEPRECATED = "ERR_DEPRECATED";
|
||||||
|
static readonly ERR_BAD_RESPONSE = "ERR_BAD_RESPONSE";
|
||||||
|
static readonly ERR_BAD_REQUEST = "ERR_BAD_REQUEST";
|
||||||
|
static readonly ERR_NOT_SUPPORT = "ERR_NOT_SUPPORT";
|
||||||
|
static readonly ERR_INVALID_URL = "ERR_INVALID_URL";
|
||||||
|
static readonly ERR_CANCELED = "ERR_CANCELED";
|
||||||
|
static readonly ECONNABORTED = "ECONNABORTED";
|
||||||
|
static readonly ETIMEDOUT = "ETIMEDOUT";
|
||||||
|
}
|
||||||
|
|
||||||
|
declare class CanceledError<T> extends AxiosError<T> {
|
||||||
|
}
|
||||||
|
|
||||||
|
declare class Axios {
|
||||||
|
constructor(config?: axios.AxiosRequestConfig);
|
||||||
|
defaults: axios.AxiosDefaults;
|
||||||
|
interceptors: {
|
||||||
|
request: axios.AxiosInterceptorManager<axios.InternalAxiosRequestConfig>;
|
||||||
|
response: axios.AxiosInterceptorManager<axios.AxiosResponse>;
|
||||||
|
};
|
||||||
|
getUri(config?: axios.AxiosRequestConfig): string;
|
||||||
|
request<T = any, R = axios.AxiosResponse<T>, D = any>(config: axios.AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
get<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, config?: axios.AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
delete<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, config?: axios.AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
head<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, config?: axios.AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
options<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, config?: axios.AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
post<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, data?: D, config?: axios.AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
put<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, data?: D, config?: axios.AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
patch<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, data?: D, config?: axios.AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
postForm<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, data?: D, config?: axios.AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
putForm<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, data?: D, config?: axios.AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
patchForm<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, data?: D, config?: axios.AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare enum HttpStatusCode {
|
||||||
|
Continue = 100,
|
||||||
|
SwitchingProtocols = 101,
|
||||||
|
Processing = 102,
|
||||||
|
EarlyHints = 103,
|
||||||
|
Ok = 200,
|
||||||
|
Created = 201,
|
||||||
|
Accepted = 202,
|
||||||
|
NonAuthoritativeInformation = 203,
|
||||||
|
NoContent = 204,
|
||||||
|
ResetContent = 205,
|
||||||
|
PartialContent = 206,
|
||||||
|
MultiStatus = 207,
|
||||||
|
AlreadyReported = 208,
|
||||||
|
ImUsed = 226,
|
||||||
|
MultipleChoices = 300,
|
||||||
|
MovedPermanently = 301,
|
||||||
|
Found = 302,
|
||||||
|
SeeOther = 303,
|
||||||
|
NotModified = 304,
|
||||||
|
UseProxy = 305,
|
||||||
|
Unused = 306,
|
||||||
|
TemporaryRedirect = 307,
|
||||||
|
PermanentRedirect = 308,
|
||||||
|
BadRequest = 400,
|
||||||
|
Unauthorized = 401,
|
||||||
|
PaymentRequired = 402,
|
||||||
|
Forbidden = 403,
|
||||||
|
NotFound = 404,
|
||||||
|
MethodNotAllowed = 405,
|
||||||
|
NotAcceptable = 406,
|
||||||
|
ProxyAuthenticationRequired = 407,
|
||||||
|
RequestTimeout = 408,
|
||||||
|
Conflict = 409,
|
||||||
|
Gone = 410,
|
||||||
|
LengthRequired = 411,
|
||||||
|
PreconditionFailed = 412,
|
||||||
|
PayloadTooLarge = 413,
|
||||||
|
UriTooLong = 414,
|
||||||
|
UnsupportedMediaType = 415,
|
||||||
|
RangeNotSatisfiable = 416,
|
||||||
|
ExpectationFailed = 417,
|
||||||
|
ImATeapot = 418,
|
||||||
|
MisdirectedRequest = 421,
|
||||||
|
UnprocessableEntity = 422,
|
||||||
|
Locked = 423,
|
||||||
|
FailedDependency = 424,
|
||||||
|
TooEarly = 425,
|
||||||
|
UpgradeRequired = 426,
|
||||||
|
PreconditionRequired = 428,
|
||||||
|
TooManyRequests = 429,
|
||||||
|
RequestHeaderFieldsTooLarge = 431,
|
||||||
|
UnavailableForLegalReasons = 451,
|
||||||
|
InternalServerError = 500,
|
||||||
|
NotImplemented = 501,
|
||||||
|
BadGateway = 502,
|
||||||
|
ServiceUnavailable = 503,
|
||||||
|
GatewayTimeout = 504,
|
||||||
|
HttpVersionNotSupported = 505,
|
||||||
|
VariantAlsoNegotiates = 506,
|
||||||
|
InsufficientStorage = 507,
|
||||||
|
LoopDetected = 508,
|
||||||
|
NotExtended = 510,
|
||||||
|
NetworkAuthenticationRequired = 511,
|
||||||
|
}
|
||||||
|
|
||||||
|
type InternalAxiosError<T = unknown, D = any> = AxiosError<T, D>;
|
||||||
|
|
||||||
|
declare namespace axios {
|
||||||
|
type AxiosError<T = unknown, D = any> = InternalAxiosError<T, D>;
|
||||||
|
|
||||||
|
type RawAxiosRequestHeaders = Partial<RawAxiosHeaders & {
|
||||||
|
[Key in CommonRequestHeadersList]: AxiosHeaderValue;
|
||||||
|
} & {
|
||||||
|
'Content-Type': ContentType
|
||||||
|
}>;
|
||||||
|
|
||||||
|
type AxiosRequestHeaders = RawAxiosRequestHeaders & AxiosHeaders;
|
||||||
|
|
||||||
|
type AxiosHeaderValue = AxiosHeaders | string | string[] | number | boolean | null;
|
||||||
|
|
||||||
|
type RawCommonResponseHeaders = {
|
||||||
|
[Key in CommonResponseHeadersList]: AxiosHeaderValue;
|
||||||
|
} & {
|
||||||
|
"set-cookie": string[];
|
||||||
|
};
|
||||||
|
|
||||||
|
type RawAxiosResponseHeaders = Partial<RawAxiosHeaders & RawCommonResponseHeaders>;
|
||||||
|
|
||||||
|
type AxiosResponseHeaders = RawAxiosResponseHeaders & AxiosHeaders;
|
||||||
|
|
||||||
|
interface AxiosRequestTransformer {
|
||||||
|
(this: InternalAxiosRequestConfig, data: any, headers: AxiosRequestHeaders): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AxiosResponseTransformer {
|
||||||
|
(this: InternalAxiosRequestConfig, data: any, headers: AxiosResponseHeaders, status?: number): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AxiosAdapter {
|
||||||
|
(config: InternalAxiosRequestConfig): AxiosPromise;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AxiosBasicCredentials {
|
||||||
|
username: string;
|
||||||
|
password: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AxiosProxyConfig {
|
||||||
|
host: string;
|
||||||
|
port: number;
|
||||||
|
auth?: AxiosBasicCredentials;
|
||||||
|
protocol?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
type Method =
|
||||||
|
| 'get' | 'GET'
|
||||||
|
| 'delete' | 'DELETE'
|
||||||
|
| 'head' | 'HEAD'
|
||||||
|
| 'options' | 'OPTIONS'
|
||||||
|
| 'post' | 'POST'
|
||||||
|
| 'put' | 'PUT'
|
||||||
|
| 'patch' | 'PATCH'
|
||||||
|
| 'purge' | 'PURGE'
|
||||||
|
| 'link' | 'LINK'
|
||||||
|
| 'unlink' | 'UNLINK';
|
||||||
|
|
||||||
|
type ResponseType =
|
||||||
|
| 'arraybuffer'
|
||||||
|
| 'blob'
|
||||||
|
| 'document'
|
||||||
|
| 'json'
|
||||||
|
| 'text'
|
||||||
|
| 'stream'
|
||||||
|
| 'formdata';
|
||||||
|
|
||||||
|
type responseEncoding =
|
||||||
|
| 'ascii' | 'ASCII'
|
||||||
|
| 'ansi' | 'ANSI'
|
||||||
|
| 'binary' | 'BINARY'
|
||||||
|
| 'base64' | 'BASE64'
|
||||||
|
| 'base64url' | 'BASE64URL'
|
||||||
|
| 'hex' | 'HEX'
|
||||||
|
| 'latin1' | 'LATIN1'
|
||||||
|
| 'ucs-2' | 'UCS-2'
|
||||||
|
| 'ucs2' | 'UCS2'
|
||||||
|
| 'utf-8' | 'UTF-8'
|
||||||
|
| 'utf8' | 'UTF8'
|
||||||
|
| 'utf16le' | 'UTF16LE';
|
||||||
|
|
||||||
|
interface TransitionalOptions {
|
||||||
|
silentJSONParsing?: boolean;
|
||||||
|
forcedJSONParsing?: boolean;
|
||||||
|
clarifyTimeoutError?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface GenericAbortSignal {
|
||||||
|
readonly aborted: boolean;
|
||||||
|
onabort?: ((...args: any) => any) | null;
|
||||||
|
addEventListener?: (...args: any) => any;
|
||||||
|
removeEventListener?: (...args: any) => any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface FormDataVisitorHelpers {
|
||||||
|
defaultVisitor: SerializerVisitor;
|
||||||
|
convertValue: (value: any) => any;
|
||||||
|
isVisitable: (value: any) => boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SerializerVisitor {
|
||||||
|
(
|
||||||
|
this: GenericFormData,
|
||||||
|
value: any,
|
||||||
|
key: string | number,
|
||||||
|
path: null | Array<string | number>,
|
||||||
|
helpers: FormDataVisitorHelpers
|
||||||
|
): boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SerializerOptions {
|
||||||
|
visitor?: SerializerVisitor;
|
||||||
|
dots?: boolean;
|
||||||
|
metaTokens?: boolean;
|
||||||
|
indexes?: boolean | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// tslint:disable-next-line
|
||||||
|
interface FormSerializerOptions extends SerializerOptions {
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ParamEncoder {
|
||||||
|
(value: any, defaultEncoder: (value: any) => any): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface CustomParamsSerializer {
|
||||||
|
(params: Record<string, any>, options?: ParamsSerializerOptions): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface ParamsSerializerOptions extends SerializerOptions {
|
||||||
|
encode?: ParamEncoder;
|
||||||
|
serialize?: CustomParamsSerializer;
|
||||||
|
}
|
||||||
|
|
||||||
|
type MaxUploadRate = number;
|
||||||
|
|
||||||
|
type MaxDownloadRate = number;
|
||||||
|
|
||||||
|
type BrowserProgressEvent = any;
|
||||||
|
|
||||||
|
interface AxiosProgressEvent {
|
||||||
|
loaded: number;
|
||||||
|
total?: number;
|
||||||
|
progress?: number;
|
||||||
|
bytes: number;
|
||||||
|
rate?: number;
|
||||||
|
estimated?: number;
|
||||||
|
upload?: boolean;
|
||||||
|
download?: boolean;
|
||||||
|
event?: BrowserProgressEvent;
|
||||||
|
lengthComputable: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
type Milliseconds = number;
|
||||||
|
|
||||||
|
type AxiosAdapterName = 'fetch' | 'xhr' | 'http' | (string & {});
|
||||||
|
|
||||||
|
type AxiosAdapterConfig = AxiosAdapter | AxiosAdapterName;
|
||||||
|
|
||||||
|
type AddressFamily = 4 | 6 | undefined;
|
||||||
|
|
||||||
|
interface LookupAddressEntry {
|
||||||
|
address: string;
|
||||||
|
family?: AddressFamily;
|
||||||
|
}
|
||||||
|
|
||||||
|
type LookupAddress = string | LookupAddressEntry;
|
||||||
|
|
||||||
|
interface AxiosRequestConfig<D = any> {
|
||||||
|
url?: string;
|
||||||
|
method?: Method | string;
|
||||||
|
baseURL?: string;
|
||||||
|
allowAbsoluteUrls?: boolean;
|
||||||
|
transformRequest?: AxiosRequestTransformer | AxiosRequestTransformer[];
|
||||||
|
transformResponse?: AxiosResponseTransformer | AxiosResponseTransformer[];
|
||||||
|
headers?: (RawAxiosRequestHeaders & MethodsHeaders) | AxiosHeaders;
|
||||||
|
params?: any;
|
||||||
|
paramsSerializer?: ParamsSerializerOptions | CustomParamsSerializer;
|
||||||
|
data?: D;
|
||||||
|
timeout?: Milliseconds;
|
||||||
|
timeoutErrorMessage?: string;
|
||||||
|
withCredentials?: boolean;
|
||||||
|
adapter?: AxiosAdapterConfig | AxiosAdapterConfig[];
|
||||||
|
auth?: AxiosBasicCredentials;
|
||||||
|
responseType?: ResponseType;
|
||||||
|
responseEncoding?: responseEncoding | string;
|
||||||
|
xsrfCookieName?: string;
|
||||||
|
xsrfHeaderName?: string;
|
||||||
|
onUploadProgress?: (progressEvent: AxiosProgressEvent) => void;
|
||||||
|
onDownloadProgress?: (progressEvent: AxiosProgressEvent) => void;
|
||||||
|
maxContentLength?: number;
|
||||||
|
validateStatus?: ((status: number) => boolean) | null;
|
||||||
|
maxBodyLength?: number;
|
||||||
|
maxRedirects?: number;
|
||||||
|
maxRate?: number | [MaxUploadRate, MaxDownloadRate];
|
||||||
|
beforeRedirect?: (options: Record<string, any>, responseDetails: {headers: Record<string, string>, statusCode: HttpStatusCode}) => void;
|
||||||
|
socketPath?: string | null;
|
||||||
|
transport?: any;
|
||||||
|
httpAgent?: any;
|
||||||
|
httpsAgent?: any;
|
||||||
|
proxy?: AxiosProxyConfig | false;
|
||||||
|
cancelToken?: CancelToken;
|
||||||
|
decompress?: boolean;
|
||||||
|
transitional?: TransitionalOptions;
|
||||||
|
signal?: GenericAbortSignal;
|
||||||
|
insecureHTTPParser?: boolean;
|
||||||
|
env?: {
|
||||||
|
FormData?: new (...args: any[]) => object;
|
||||||
|
};
|
||||||
|
formSerializer?: FormSerializerOptions;
|
||||||
|
family?: AddressFamily;
|
||||||
|
lookup?: ((hostname: string, options: object, cb: (err: Error | null, address: LookupAddress | LookupAddress[], family?: AddressFamily) => void) => void) |
|
||||||
|
((hostname: string, options: object) => Promise<[address: LookupAddressEntry | LookupAddressEntry[], family?: AddressFamily] | LookupAddress>);
|
||||||
|
withXSRFToken?: boolean | ((config: InternalAxiosRequestConfig) => boolean | undefined);
|
||||||
|
fetchOptions?: Record<string, any>;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Alias
|
||||||
|
type RawAxiosRequestConfig<D = any> = AxiosRequestConfig<D>;
|
||||||
|
|
||||||
|
interface InternalAxiosRequestConfig<D = any> extends AxiosRequestConfig {
|
||||||
|
headers: AxiosRequestHeaders;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface HeadersDefaults {
|
||||||
|
common: RawAxiosRequestHeaders;
|
||||||
|
delete: RawAxiosRequestHeaders;
|
||||||
|
get: RawAxiosRequestHeaders;
|
||||||
|
head: RawAxiosRequestHeaders;
|
||||||
|
post: RawAxiosRequestHeaders;
|
||||||
|
put: RawAxiosRequestHeaders;
|
||||||
|
patch: RawAxiosRequestHeaders;
|
||||||
|
options?: RawAxiosRequestHeaders;
|
||||||
|
purge?: RawAxiosRequestHeaders;
|
||||||
|
link?: RawAxiosRequestHeaders;
|
||||||
|
unlink?: RawAxiosRequestHeaders;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AxiosDefaults<D = any> extends Omit<AxiosRequestConfig<D>, 'headers'> {
|
||||||
|
headers: HeadersDefaults;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface CreateAxiosDefaults<D = any> extends Omit<AxiosRequestConfig<D>, 'headers'> {
|
||||||
|
headers?: RawAxiosRequestHeaders | AxiosHeaders | Partial<HeadersDefaults>;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AxiosResponse<T = any, D = any> {
|
||||||
|
data: T;
|
||||||
|
status: number;
|
||||||
|
statusText: string;
|
||||||
|
headers: RawAxiosResponseHeaders | AxiosResponseHeaders;
|
||||||
|
config: InternalAxiosRequestConfig<D>;
|
||||||
|
request?: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
type AxiosPromise<T = any> = Promise<AxiosResponse<T>>;
|
||||||
|
|
||||||
|
interface CancelStatic {
|
||||||
|
new (message?: string): Cancel;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Cancel {
|
||||||
|
message: string | undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Canceler {
|
||||||
|
(message?: string, config?: AxiosRequestConfig, request?: any): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface CancelTokenStatic {
|
||||||
|
new (executor: (cancel: Canceler) => void): CancelToken;
|
||||||
|
source(): CancelTokenSource;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface CancelToken {
|
||||||
|
promise: Promise<Cancel>;
|
||||||
|
reason?: Cancel;
|
||||||
|
throwIfRequested(): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface CancelTokenSource {
|
||||||
|
token: CancelToken;
|
||||||
|
cancel: Canceler;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AxiosInterceptorOptions {
|
||||||
|
synchronous?: boolean;
|
||||||
|
runWhen?: (config: InternalAxiosRequestConfig) => boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
type AxiosRequestInterceptorUse<T> = (onFulfilled?: ((value: T) => T | Promise<T>) | null, onRejected?: ((error: any) => any) | null, options?: AxiosInterceptorOptions) => number;
|
||||||
|
|
||||||
|
type AxiosResponseInterceptorUse<T> = (onFulfilled?: ((value: T) => T | Promise<T>) | null, onRejected?: ((error: any) => any) | null) => number;
|
||||||
|
|
||||||
|
interface AxiosInterceptorManager<V> {
|
||||||
|
use: V extends AxiosResponse ? AxiosResponseInterceptorUse<V> : AxiosRequestInterceptorUse<V>;
|
||||||
|
eject(id: number): void;
|
||||||
|
clear(): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AxiosInstance extends Axios {
|
||||||
|
<T = any, R = AxiosResponse<T>, D = any>(config: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
<T = any, R = AxiosResponse<T>, D = any>(url: string, config?: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
|
||||||
|
create(config?: CreateAxiosDefaults): AxiosInstance;
|
||||||
|
defaults: Omit<AxiosDefaults, 'headers'> & {
|
||||||
|
headers: HeadersDefaults & {
|
||||||
|
[key: string]: AxiosHeaderValue
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
interface GenericFormData {
|
||||||
|
append(name: string, value: any, options?: any): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface GenericHTMLFormElement {
|
||||||
|
name: string;
|
||||||
|
method: string;
|
||||||
|
submit(): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface AxiosStatic extends AxiosInstance {
|
||||||
|
Cancel: CancelStatic;
|
||||||
|
CancelToken: CancelTokenStatic;
|
||||||
|
Axios: typeof Axios;
|
||||||
|
AxiosError: typeof AxiosError;
|
||||||
|
CanceledError: typeof CanceledError;
|
||||||
|
HttpStatusCode: typeof HttpStatusCode;
|
||||||
|
readonly VERSION: string;
|
||||||
|
isCancel(value: any): value is Cancel;
|
||||||
|
all<T>(values: Array<T | Promise<T>>): Promise<T[]>;
|
||||||
|
spread<T, R>(callback: (...args: T[]) => R): (array: T[]) => R;
|
||||||
|
isAxiosError<T = any, D = any>(payload: any): payload is AxiosError<T, D>;
|
||||||
|
toFormData(sourceObj: object, targetFormData?: GenericFormData, options?: FormSerializerOptions): GenericFormData;
|
||||||
|
formToJSON(form: GenericFormData|GenericHTMLFormElement): object;
|
||||||
|
getAdapter(adapters: AxiosAdapterConfig | AxiosAdapterConfig[] | undefined): AxiosAdapter;
|
||||||
|
AxiosHeaders: typeof AxiosHeaders;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
declare const axios: axios.AxiosStatic;
|
||||||
|
|
||||||
|
export = axios;
|
572
node_modules/.pnpm/axios@1.9.0/node_modules/axios/index.d.ts
generated
vendored
Normal file
572
node_modules/.pnpm/axios@1.9.0/node_modules/axios/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,572 @@
|
|||||||
|
// TypeScript Version: 4.7
|
||||||
|
export type AxiosHeaderValue = AxiosHeaders | string | string[] | number | boolean | null;
|
||||||
|
|
||||||
|
interface RawAxiosHeaders {
|
||||||
|
[key: string]: AxiosHeaderValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
type MethodsHeaders = Partial<{
|
||||||
|
[Key in Method as Lowercase<Key>]: AxiosHeaders;
|
||||||
|
} & {common: AxiosHeaders}>;
|
||||||
|
|
||||||
|
type AxiosHeaderMatcher = string | RegExp | ((this: AxiosHeaders, value: string, name: string) => boolean);
|
||||||
|
|
||||||
|
type AxiosHeaderParser = (this: AxiosHeaders, value: AxiosHeaderValue, header: string) => any;
|
||||||
|
|
||||||
|
export class AxiosHeaders {
|
||||||
|
constructor(
|
||||||
|
headers?: RawAxiosHeaders | AxiosHeaders | string
|
||||||
|
);
|
||||||
|
|
||||||
|
[key: string]: any;
|
||||||
|
|
||||||
|
set(headerName?: string, value?: AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
||||||
|
set(headers?: RawAxiosHeaders | AxiosHeaders | string, rewrite?: boolean): AxiosHeaders;
|
||||||
|
|
||||||
|
get(headerName: string, parser: RegExp): RegExpExecArray | null;
|
||||||
|
get(headerName: string, matcher?: true | AxiosHeaderParser): AxiosHeaderValue;
|
||||||
|
|
||||||
|
has(header: string, matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
delete(header: string | string[], matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
clear(matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
normalize(format: boolean): AxiosHeaders;
|
||||||
|
|
||||||
|
concat(...targets: Array<AxiosHeaders | RawAxiosHeaders | string | undefined | null>): AxiosHeaders;
|
||||||
|
|
||||||
|
toJSON(asStrings?: boolean): RawAxiosHeaders;
|
||||||
|
|
||||||
|
static from(thing?: AxiosHeaders | RawAxiosHeaders | string): AxiosHeaders;
|
||||||
|
|
||||||
|
static accessor(header: string | string[]): AxiosHeaders;
|
||||||
|
|
||||||
|
static concat(...targets: Array<AxiosHeaders | RawAxiosHeaders | string | undefined | null>): AxiosHeaders;
|
||||||
|
|
||||||
|
setContentType(value: ContentType, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
||||||
|
getContentType(parser?: RegExp): RegExpExecArray | null;
|
||||||
|
getContentType(matcher?: AxiosHeaderMatcher): AxiosHeaderValue;
|
||||||
|
hasContentType(matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
setContentLength(value: AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
||||||
|
getContentLength(parser?: RegExp): RegExpExecArray | null;
|
||||||
|
getContentLength(matcher?: AxiosHeaderMatcher): AxiosHeaderValue;
|
||||||
|
hasContentLength(matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
setAccept(value: AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
||||||
|
getAccept(parser?: RegExp): RegExpExecArray | null;
|
||||||
|
getAccept(matcher?: AxiosHeaderMatcher): AxiosHeaderValue;
|
||||||
|
hasAccept(matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
setUserAgent(value: AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
||||||
|
getUserAgent(parser?: RegExp): RegExpExecArray | null;
|
||||||
|
getUserAgent(matcher?: AxiosHeaderMatcher): AxiosHeaderValue;
|
||||||
|
hasUserAgent(matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
setContentEncoding(value: AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
||||||
|
getContentEncoding(parser?: RegExp): RegExpExecArray | null;
|
||||||
|
getContentEncoding(matcher?: AxiosHeaderMatcher): AxiosHeaderValue;
|
||||||
|
hasContentEncoding(matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
setAuthorization(value: AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): AxiosHeaders;
|
||||||
|
getAuthorization(parser?: RegExp): RegExpExecArray | null;
|
||||||
|
getAuthorization(matcher?: AxiosHeaderMatcher): AxiosHeaderValue;
|
||||||
|
hasAuthorization(matcher?: AxiosHeaderMatcher): boolean;
|
||||||
|
|
||||||
|
getSetCookie(): string[];
|
||||||
|
|
||||||
|
[Symbol.iterator](): IterableIterator<[string, AxiosHeaderValue]>;
|
||||||
|
}
|
||||||
|
|
||||||
|
type CommonRequestHeadersList = 'Accept' | 'Content-Length' | 'User-Agent' | 'Content-Encoding' | 'Authorization';
|
||||||
|
|
||||||
|
type ContentType = AxiosHeaderValue | 'text/html' | 'text/plain' | 'multipart/form-data' | 'application/json' | 'application/x-www-form-urlencoded' | 'application/octet-stream';
|
||||||
|
|
||||||
|
export type RawAxiosRequestHeaders = Partial<RawAxiosHeaders & {
|
||||||
|
[Key in CommonRequestHeadersList]: AxiosHeaderValue;
|
||||||
|
} & {
|
||||||
|
'Content-Type': ContentType
|
||||||
|
}>;
|
||||||
|
|
||||||
|
export type AxiosRequestHeaders = RawAxiosRequestHeaders & AxiosHeaders;
|
||||||
|
|
||||||
|
type CommonResponseHeadersList = 'Server' | 'Content-Type' | 'Content-Length' | 'Cache-Control'| 'Content-Encoding';
|
||||||
|
|
||||||
|
type RawCommonResponseHeaders = {
|
||||||
|
[Key in CommonResponseHeadersList]: AxiosHeaderValue;
|
||||||
|
} & {
|
||||||
|
"set-cookie": string[];
|
||||||
|
};
|
||||||
|
|
||||||
|
export type RawAxiosResponseHeaders = Partial<RawAxiosHeaders & RawCommonResponseHeaders>;
|
||||||
|
|
||||||
|
export type AxiosResponseHeaders = RawAxiosResponseHeaders & AxiosHeaders;
|
||||||
|
|
||||||
|
export interface AxiosRequestTransformer {
|
||||||
|
(this: InternalAxiosRequestConfig, data: any, headers: AxiosRequestHeaders): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AxiosResponseTransformer {
|
||||||
|
(this: InternalAxiosRequestConfig, data: any, headers: AxiosResponseHeaders, status?: number): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AxiosAdapter {
|
||||||
|
(config: InternalAxiosRequestConfig): AxiosPromise;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AxiosBasicCredentials {
|
||||||
|
username: string;
|
||||||
|
password: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AxiosProxyConfig {
|
||||||
|
host: string;
|
||||||
|
port: number;
|
||||||
|
auth?: AxiosBasicCredentials;
|
||||||
|
protocol?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export enum HttpStatusCode {
|
||||||
|
Continue = 100,
|
||||||
|
SwitchingProtocols = 101,
|
||||||
|
Processing = 102,
|
||||||
|
EarlyHints = 103,
|
||||||
|
Ok = 200,
|
||||||
|
Created = 201,
|
||||||
|
Accepted = 202,
|
||||||
|
NonAuthoritativeInformation = 203,
|
||||||
|
NoContent = 204,
|
||||||
|
ResetContent = 205,
|
||||||
|
PartialContent = 206,
|
||||||
|
MultiStatus = 207,
|
||||||
|
AlreadyReported = 208,
|
||||||
|
ImUsed = 226,
|
||||||
|
MultipleChoices = 300,
|
||||||
|
MovedPermanently = 301,
|
||||||
|
Found = 302,
|
||||||
|
SeeOther = 303,
|
||||||
|
NotModified = 304,
|
||||||
|
UseProxy = 305,
|
||||||
|
Unused = 306,
|
||||||
|
TemporaryRedirect = 307,
|
||||||
|
PermanentRedirect = 308,
|
||||||
|
BadRequest = 400,
|
||||||
|
Unauthorized = 401,
|
||||||
|
PaymentRequired = 402,
|
||||||
|
Forbidden = 403,
|
||||||
|
NotFound = 404,
|
||||||
|
MethodNotAllowed = 405,
|
||||||
|
NotAcceptable = 406,
|
||||||
|
ProxyAuthenticationRequired = 407,
|
||||||
|
RequestTimeout = 408,
|
||||||
|
Conflict = 409,
|
||||||
|
Gone = 410,
|
||||||
|
LengthRequired = 411,
|
||||||
|
PreconditionFailed = 412,
|
||||||
|
PayloadTooLarge = 413,
|
||||||
|
UriTooLong = 414,
|
||||||
|
UnsupportedMediaType = 415,
|
||||||
|
RangeNotSatisfiable = 416,
|
||||||
|
ExpectationFailed = 417,
|
||||||
|
ImATeapot = 418,
|
||||||
|
MisdirectedRequest = 421,
|
||||||
|
UnprocessableEntity = 422,
|
||||||
|
Locked = 423,
|
||||||
|
FailedDependency = 424,
|
||||||
|
TooEarly = 425,
|
||||||
|
UpgradeRequired = 426,
|
||||||
|
PreconditionRequired = 428,
|
||||||
|
TooManyRequests = 429,
|
||||||
|
RequestHeaderFieldsTooLarge = 431,
|
||||||
|
UnavailableForLegalReasons = 451,
|
||||||
|
InternalServerError = 500,
|
||||||
|
NotImplemented = 501,
|
||||||
|
BadGateway = 502,
|
||||||
|
ServiceUnavailable = 503,
|
||||||
|
GatewayTimeout = 504,
|
||||||
|
HttpVersionNotSupported = 505,
|
||||||
|
VariantAlsoNegotiates = 506,
|
||||||
|
InsufficientStorage = 507,
|
||||||
|
LoopDetected = 508,
|
||||||
|
NotExtended = 510,
|
||||||
|
NetworkAuthenticationRequired = 511,
|
||||||
|
}
|
||||||
|
|
||||||
|
export type Method =
|
||||||
|
| 'get' | 'GET'
|
||||||
|
| 'delete' | 'DELETE'
|
||||||
|
| 'head' | 'HEAD'
|
||||||
|
| 'options' | 'OPTIONS'
|
||||||
|
| 'post' | 'POST'
|
||||||
|
| 'put' | 'PUT'
|
||||||
|
| 'patch' | 'PATCH'
|
||||||
|
| 'purge' | 'PURGE'
|
||||||
|
| 'link' | 'LINK'
|
||||||
|
| 'unlink' | 'UNLINK';
|
||||||
|
|
||||||
|
export type ResponseType =
|
||||||
|
| 'arraybuffer'
|
||||||
|
| 'blob'
|
||||||
|
| 'document'
|
||||||
|
| 'json'
|
||||||
|
| 'text'
|
||||||
|
| 'stream'
|
||||||
|
| 'formdata';
|
||||||
|
|
||||||
|
export type responseEncoding =
|
||||||
|
| 'ascii' | 'ASCII'
|
||||||
|
| 'ansi' | 'ANSI'
|
||||||
|
| 'binary' | 'BINARY'
|
||||||
|
| 'base64' | 'BASE64'
|
||||||
|
| 'base64url' | 'BASE64URL'
|
||||||
|
| 'hex' | 'HEX'
|
||||||
|
| 'latin1' | 'LATIN1'
|
||||||
|
| 'ucs-2' | 'UCS-2'
|
||||||
|
| 'ucs2' | 'UCS2'
|
||||||
|
| 'utf-8' | 'UTF-8'
|
||||||
|
| 'utf8' | 'UTF8'
|
||||||
|
| 'utf16le' | 'UTF16LE';
|
||||||
|
|
||||||
|
export interface TransitionalOptions {
|
||||||
|
silentJSONParsing?: boolean;
|
||||||
|
forcedJSONParsing?: boolean;
|
||||||
|
clarifyTimeoutError?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface GenericAbortSignal {
|
||||||
|
readonly aborted: boolean;
|
||||||
|
onabort?: ((...args: any) => any) | null;
|
||||||
|
addEventListener?: (...args: any) => any;
|
||||||
|
removeEventListener?: (...args: any) => any;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface FormDataVisitorHelpers {
|
||||||
|
defaultVisitor: SerializerVisitor;
|
||||||
|
convertValue: (value: any) => any;
|
||||||
|
isVisitable: (value: any) => boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SerializerVisitor {
|
||||||
|
(
|
||||||
|
this: GenericFormData,
|
||||||
|
value: any,
|
||||||
|
key: string | number,
|
||||||
|
path: null | Array<string | number>,
|
||||||
|
helpers: FormDataVisitorHelpers
|
||||||
|
): boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SerializerOptions {
|
||||||
|
visitor?: SerializerVisitor;
|
||||||
|
dots?: boolean;
|
||||||
|
metaTokens?: boolean;
|
||||||
|
indexes?: boolean | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// tslint:disable-next-line
|
||||||
|
export interface FormSerializerOptions extends SerializerOptions {
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ParamEncoder {
|
||||||
|
(value: any, defaultEncoder: (value: any) => any): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface CustomParamsSerializer {
|
||||||
|
(params: Record<string, any>, options?: ParamsSerializerOptions): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ParamsSerializerOptions extends SerializerOptions {
|
||||||
|
encode?: ParamEncoder;
|
||||||
|
serialize?: CustomParamsSerializer;
|
||||||
|
}
|
||||||
|
|
||||||
|
type MaxUploadRate = number;
|
||||||
|
|
||||||
|
type MaxDownloadRate = number;
|
||||||
|
|
||||||
|
type BrowserProgressEvent = any;
|
||||||
|
|
||||||
|
export interface AxiosProgressEvent {
|
||||||
|
loaded: number;
|
||||||
|
total?: number;
|
||||||
|
progress?: number;
|
||||||
|
bytes: number;
|
||||||
|
rate?: number;
|
||||||
|
estimated?: number;
|
||||||
|
upload?: boolean;
|
||||||
|
download?: boolean;
|
||||||
|
event?: BrowserProgressEvent;
|
||||||
|
lengthComputable: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
type Milliseconds = number;
|
||||||
|
|
||||||
|
type AxiosAdapterName = 'fetch' | 'xhr' | 'http' | (string & {});
|
||||||
|
|
||||||
|
type AxiosAdapterConfig = AxiosAdapter | AxiosAdapterName;
|
||||||
|
|
||||||
|
export type AddressFamily = 4 | 6 | undefined;
|
||||||
|
|
||||||
|
export interface LookupAddressEntry {
|
||||||
|
address: string;
|
||||||
|
family?: AddressFamily;
|
||||||
|
}
|
||||||
|
|
||||||
|
export type LookupAddress = string | LookupAddressEntry;
|
||||||
|
|
||||||
|
export interface AxiosRequestConfig<D = any> {
|
||||||
|
url?: string;
|
||||||
|
method?: Method | string;
|
||||||
|
baseURL?: string;
|
||||||
|
allowAbsoluteUrls?: boolean;
|
||||||
|
transformRequest?: AxiosRequestTransformer | AxiosRequestTransformer[];
|
||||||
|
transformResponse?: AxiosResponseTransformer | AxiosResponseTransformer[];
|
||||||
|
headers?: (RawAxiosRequestHeaders & MethodsHeaders) | AxiosHeaders;
|
||||||
|
params?: any;
|
||||||
|
paramsSerializer?: ParamsSerializerOptions | CustomParamsSerializer;
|
||||||
|
data?: D;
|
||||||
|
timeout?: Milliseconds;
|
||||||
|
timeoutErrorMessage?: string;
|
||||||
|
withCredentials?: boolean;
|
||||||
|
adapter?: AxiosAdapterConfig | AxiosAdapterConfig[];
|
||||||
|
auth?: AxiosBasicCredentials;
|
||||||
|
responseType?: ResponseType;
|
||||||
|
responseEncoding?: responseEncoding | string;
|
||||||
|
xsrfCookieName?: string;
|
||||||
|
xsrfHeaderName?: string;
|
||||||
|
onUploadProgress?: (progressEvent: AxiosProgressEvent) => void;
|
||||||
|
onDownloadProgress?: (progressEvent: AxiosProgressEvent) => void;
|
||||||
|
maxContentLength?: number;
|
||||||
|
validateStatus?: ((status: number) => boolean) | null;
|
||||||
|
maxBodyLength?: number;
|
||||||
|
maxRedirects?: number;
|
||||||
|
maxRate?: number | [MaxUploadRate, MaxDownloadRate];
|
||||||
|
beforeRedirect?: (options: Record<string, any>, responseDetails: {headers: Record<string, string>, statusCode: HttpStatusCode}) => void;
|
||||||
|
socketPath?: string | null;
|
||||||
|
transport?: any;
|
||||||
|
httpAgent?: any;
|
||||||
|
httpsAgent?: any;
|
||||||
|
proxy?: AxiosProxyConfig | false;
|
||||||
|
cancelToken?: CancelToken;
|
||||||
|
decompress?: boolean;
|
||||||
|
transitional?: TransitionalOptions;
|
||||||
|
signal?: GenericAbortSignal;
|
||||||
|
insecureHTTPParser?: boolean;
|
||||||
|
env?: {
|
||||||
|
FormData?: new (...args: any[]) => object;
|
||||||
|
};
|
||||||
|
formSerializer?: FormSerializerOptions;
|
||||||
|
family?: AddressFamily;
|
||||||
|
lookup?: ((hostname: string, options: object, cb: (err: Error | null, address: LookupAddress | LookupAddress[], family?: AddressFamily) => void) => void) |
|
||||||
|
((hostname: string, options: object) => Promise<[address: LookupAddressEntry | LookupAddressEntry[], family?: AddressFamily] | LookupAddress>);
|
||||||
|
withXSRFToken?: boolean | ((config: InternalAxiosRequestConfig) => boolean | undefined);
|
||||||
|
fetchOptions?: Record<string, any>;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Alias
|
||||||
|
export type RawAxiosRequestConfig<D = any> = AxiosRequestConfig<D>;
|
||||||
|
|
||||||
|
export interface InternalAxiosRequestConfig<D = any> extends AxiosRequestConfig<D> {
|
||||||
|
headers: AxiosRequestHeaders;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface HeadersDefaults {
|
||||||
|
common: RawAxiosRequestHeaders;
|
||||||
|
delete: RawAxiosRequestHeaders;
|
||||||
|
get: RawAxiosRequestHeaders;
|
||||||
|
head: RawAxiosRequestHeaders;
|
||||||
|
post: RawAxiosRequestHeaders;
|
||||||
|
put: RawAxiosRequestHeaders;
|
||||||
|
patch: RawAxiosRequestHeaders;
|
||||||
|
options?: RawAxiosRequestHeaders;
|
||||||
|
purge?: RawAxiosRequestHeaders;
|
||||||
|
link?: RawAxiosRequestHeaders;
|
||||||
|
unlink?: RawAxiosRequestHeaders;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AxiosDefaults<D = any> extends Omit<AxiosRequestConfig<D>, 'headers'> {
|
||||||
|
headers: HeadersDefaults;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface CreateAxiosDefaults<D = any> extends Omit<AxiosRequestConfig<D>, 'headers'> {
|
||||||
|
headers?: RawAxiosRequestHeaders | AxiosHeaders | Partial<HeadersDefaults>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AxiosResponse<T = any, D = any> {
|
||||||
|
data: T;
|
||||||
|
status: number;
|
||||||
|
statusText: string;
|
||||||
|
headers: RawAxiosResponseHeaders | AxiosResponseHeaders;
|
||||||
|
config: InternalAxiosRequestConfig<D>;
|
||||||
|
request?: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class AxiosError<T = unknown, D = any> extends Error {
|
||||||
|
constructor(
|
||||||
|
message?: string,
|
||||||
|
code?: string,
|
||||||
|
config?: InternalAxiosRequestConfig<D>,
|
||||||
|
request?: any,
|
||||||
|
response?: AxiosResponse<T, D>
|
||||||
|
);
|
||||||
|
|
||||||
|
config?: InternalAxiosRequestConfig<D>;
|
||||||
|
code?: string;
|
||||||
|
request?: any;
|
||||||
|
response?: AxiosResponse<T, D>;
|
||||||
|
isAxiosError: boolean;
|
||||||
|
status?: number;
|
||||||
|
toJSON: () => object;
|
||||||
|
cause?: Error;
|
||||||
|
static from<T = unknown, D = any>(
|
||||||
|
error: Error | unknown,
|
||||||
|
code?: string,
|
||||||
|
config?: InternalAxiosRequestConfig<D>,
|
||||||
|
request?: any,
|
||||||
|
response?: AxiosResponse<T, D>,
|
||||||
|
customProps?: object,
|
||||||
|
): AxiosError<T, D>;
|
||||||
|
static readonly ERR_FR_TOO_MANY_REDIRECTS = "ERR_FR_TOO_MANY_REDIRECTS";
|
||||||
|
static readonly ERR_BAD_OPTION_VALUE = "ERR_BAD_OPTION_VALUE";
|
||||||
|
static readonly ERR_BAD_OPTION = "ERR_BAD_OPTION";
|
||||||
|
static readonly ERR_NETWORK = "ERR_NETWORK";
|
||||||
|
static readonly ERR_DEPRECATED = "ERR_DEPRECATED";
|
||||||
|
static readonly ERR_BAD_RESPONSE = "ERR_BAD_RESPONSE";
|
||||||
|
static readonly ERR_BAD_REQUEST = "ERR_BAD_REQUEST";
|
||||||
|
static readonly ERR_NOT_SUPPORT = "ERR_NOT_SUPPORT";
|
||||||
|
static readonly ERR_INVALID_URL = "ERR_INVALID_URL";
|
||||||
|
static readonly ERR_CANCELED = "ERR_CANCELED";
|
||||||
|
static readonly ECONNABORTED = "ECONNABORTED";
|
||||||
|
static readonly ETIMEDOUT = "ETIMEDOUT";
|
||||||
|
}
|
||||||
|
|
||||||
|
export class CanceledError<T> extends AxiosError<T> {
|
||||||
|
}
|
||||||
|
|
||||||
|
export type AxiosPromise<T = any> = Promise<AxiosResponse<T>>;
|
||||||
|
|
||||||
|
export interface CancelStatic {
|
||||||
|
new (message?: string): Cancel;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Cancel {
|
||||||
|
message: string | undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Canceler {
|
||||||
|
(message?: string, config?: AxiosRequestConfig, request?: any): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface CancelTokenStatic {
|
||||||
|
new (executor: (cancel: Canceler) => void): CancelToken;
|
||||||
|
source(): CancelTokenSource;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface CancelToken {
|
||||||
|
promise: Promise<Cancel>;
|
||||||
|
reason?: Cancel;
|
||||||
|
throwIfRequested(): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface CancelTokenSource {
|
||||||
|
token: CancelToken;
|
||||||
|
cancel: Canceler;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AxiosInterceptorOptions {
|
||||||
|
synchronous?: boolean;
|
||||||
|
runWhen?: (config: InternalAxiosRequestConfig) => boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
type AxiosRequestInterceptorUse<T> = (onFulfilled?: ((value: T) => T | Promise<T>) | null, onRejected?: ((error: any) => any) | null, options?: AxiosInterceptorOptions) => number;
|
||||||
|
|
||||||
|
type AxiosResponseInterceptorUse<T> = (onFulfilled?: ((value: T) => T | Promise<T>) | null, onRejected?: ((error: any) => any) | null) => number;
|
||||||
|
|
||||||
|
export interface AxiosInterceptorManager<V> {
|
||||||
|
use: V extends AxiosResponse ? AxiosResponseInterceptorUse<V> : AxiosRequestInterceptorUse<V>;
|
||||||
|
eject(id: number): void;
|
||||||
|
clear(): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class Axios {
|
||||||
|
constructor(config?: AxiosRequestConfig);
|
||||||
|
defaults: AxiosDefaults;
|
||||||
|
interceptors: {
|
||||||
|
request: AxiosInterceptorManager<InternalAxiosRequestConfig>;
|
||||||
|
response: AxiosInterceptorManager<AxiosResponse>;
|
||||||
|
};
|
||||||
|
getUri(config?: AxiosRequestConfig): string;
|
||||||
|
request<T = any, R = AxiosResponse<T>, D = any>(config: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
get<T = any, R = AxiosResponse<T>, D = any>(url: string, config?: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
delete<T = any, R = AxiosResponse<T>, D = any>(url: string, config?: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
head<T = any, R = AxiosResponse<T>, D = any>(url: string, config?: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
options<T = any, R = AxiosResponse<T>, D = any>(url: string, config?: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
post<T = any, R = AxiosResponse<T>, D = any>(url: string, data?: D, config?: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
put<T = any, R = AxiosResponse<T>, D = any>(url: string, data?: D, config?: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
patch<T = any, R = AxiosResponse<T>, D = any>(url: string, data?: D, config?: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
postForm<T = any, R = AxiosResponse<T>, D = any>(url: string, data?: D, config?: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
putForm<T = any, R = AxiosResponse<T>, D = any>(url: string, data?: D, config?: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
patchForm<T = any, R = AxiosResponse<T>, D = any>(url: string, data?: D, config?: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface AxiosInstance extends Axios {
|
||||||
|
<T = any, R = AxiosResponse<T>, D = any>(config: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
<T = any, R = AxiosResponse<T>, D = any>(url: string, config?: AxiosRequestConfig<D>): Promise<R>;
|
||||||
|
|
||||||
|
create(config?: CreateAxiosDefaults): AxiosInstance;
|
||||||
|
defaults: Omit<AxiosDefaults, 'headers'> & {
|
||||||
|
headers: HeadersDefaults & {
|
||||||
|
[key: string]: AxiosHeaderValue
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface GenericFormData {
|
||||||
|
append(name: string, value: any, options?: any): any;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface GenericHTMLFormElement {
|
||||||
|
name: string;
|
||||||
|
method: string;
|
||||||
|
submit(): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getAdapter(adapters: AxiosAdapterConfig | AxiosAdapterConfig[] | undefined): AxiosAdapter;
|
||||||
|
|
||||||
|
export function toFormData(sourceObj: object, targetFormData?: GenericFormData, options?: FormSerializerOptions): GenericFormData;
|
||||||
|
|
||||||
|
export function formToJSON(form: GenericFormData|GenericHTMLFormElement): object;
|
||||||
|
|
||||||
|
export function isAxiosError<T = any, D = any>(payload: any): payload is AxiosError<T, D>;
|
||||||
|
|
||||||
|
export function spread<T, R>(callback: (...args: T[]) => R): (array: T[]) => R;
|
||||||
|
|
||||||
|
export function isCancel(value: any): value is Cancel;
|
||||||
|
|
||||||
|
export function all<T>(values: Array<T | Promise<T>>): Promise<T[]>;
|
||||||
|
|
||||||
|
export function mergeConfig<D = any>(config1: AxiosRequestConfig<D>, config2: AxiosRequestConfig<D>): AxiosRequestConfig<D>;
|
||||||
|
|
||||||
|
export interface AxiosStatic extends AxiosInstance {
|
||||||
|
Cancel: CancelStatic;
|
||||||
|
CancelToken: CancelTokenStatic;
|
||||||
|
Axios: typeof Axios;
|
||||||
|
AxiosError: typeof AxiosError;
|
||||||
|
HttpStatusCode: typeof HttpStatusCode;
|
||||||
|
readonly VERSION: string;
|
||||||
|
isCancel: typeof isCancel;
|
||||||
|
all: typeof all;
|
||||||
|
spread: typeof spread;
|
||||||
|
isAxiosError: typeof isAxiosError;
|
||||||
|
toFormData: typeof toFormData;
|
||||||
|
formToJSON: typeof formToJSON;
|
||||||
|
getAdapter: typeof getAdapter;
|
||||||
|
CanceledError: typeof CanceledError;
|
||||||
|
AxiosHeaders: typeof AxiosHeaders;
|
||||||
|
mergeConfig: typeof mergeConfig;
|
||||||
|
}
|
||||||
|
|
||||||
|
declare const axios: AxiosStatic;
|
||||||
|
|
||||||
|
export default axios;
|
43
node_modules/.pnpm/axios@1.9.0/node_modules/axios/index.js
generated
vendored
Normal file
43
node_modules/.pnpm/axios@1.9.0/node_modules/axios/index.js
generated
vendored
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
import axios from './lib/axios.js';
|
||||||
|
|
||||||
|
// This module is intended to unwrap Axios default export as named.
|
||||||
|
// Keep top-level export same with static properties
|
||||||
|
// so that it can keep same with es module or cjs
|
||||||
|
const {
|
||||||
|
Axios,
|
||||||
|
AxiosError,
|
||||||
|
CanceledError,
|
||||||
|
isCancel,
|
||||||
|
CancelToken,
|
||||||
|
VERSION,
|
||||||
|
all,
|
||||||
|
Cancel,
|
||||||
|
isAxiosError,
|
||||||
|
spread,
|
||||||
|
toFormData,
|
||||||
|
AxiosHeaders,
|
||||||
|
HttpStatusCode,
|
||||||
|
formToJSON,
|
||||||
|
getAdapter,
|
||||||
|
mergeConfig
|
||||||
|
} = axios;
|
||||||
|
|
||||||
|
export {
|
||||||
|
axios as default,
|
||||||
|
Axios,
|
||||||
|
AxiosError,
|
||||||
|
CanceledError,
|
||||||
|
isCancel,
|
||||||
|
CancelToken,
|
||||||
|
VERSION,
|
||||||
|
all,
|
||||||
|
Cancel,
|
||||||
|
isAxiosError,
|
||||||
|
spread,
|
||||||
|
toFormData,
|
||||||
|
AxiosHeaders,
|
||||||
|
HttpStatusCode,
|
||||||
|
formToJSON,
|
||||||
|
getAdapter,
|
||||||
|
mergeConfig
|
||||||
|
}
|
37
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/adapters/README.md
generated
vendored
Normal file
37
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/adapters/README.md
generated
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
# axios // adapters
|
||||||
|
|
||||||
|
The modules under `adapters/` are modules that handle dispatching a request and settling a returned `Promise` once a response is received.
|
||||||
|
|
||||||
|
## Example
|
||||||
|
|
||||||
|
```js
|
||||||
|
var settle = require('./../core/settle');
|
||||||
|
|
||||||
|
module.exports = function myAdapter(config) {
|
||||||
|
// At this point:
|
||||||
|
// - config has been merged with defaults
|
||||||
|
// - request transformers have already run
|
||||||
|
// - request interceptors have already run
|
||||||
|
|
||||||
|
// Make the request using config provided
|
||||||
|
// Upon response settle the Promise
|
||||||
|
|
||||||
|
return new Promise(function(resolve, reject) {
|
||||||
|
|
||||||
|
var response = {
|
||||||
|
data: responseData,
|
||||||
|
status: request.status,
|
||||||
|
statusText: request.statusText,
|
||||||
|
headers: responseHeaders,
|
||||||
|
config: config,
|
||||||
|
request: request
|
||||||
|
};
|
||||||
|
|
||||||
|
settle(resolve, reject, response);
|
||||||
|
|
||||||
|
// From here:
|
||||||
|
// - response transformers will run
|
||||||
|
// - response interceptors will run
|
||||||
|
});
|
||||||
|
}
|
||||||
|
```
|
79
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/adapters/adapters.js
generated
vendored
Normal file
79
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/adapters/adapters.js
generated
vendored
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
import utils from '../utils.js';
|
||||||
|
import httpAdapter from './http.js';
|
||||||
|
import xhrAdapter from './xhr.js';
|
||||||
|
import fetchAdapter from './fetch.js';
|
||||||
|
import AxiosError from "../core/AxiosError.js";
|
||||||
|
|
||||||
|
const knownAdapters = {
|
||||||
|
http: httpAdapter,
|
||||||
|
xhr: xhrAdapter,
|
||||||
|
fetch: fetchAdapter
|
||||||
|
}
|
||||||
|
|
||||||
|
utils.forEach(knownAdapters, (fn, value) => {
|
||||||
|
if (fn) {
|
||||||
|
try {
|
||||||
|
Object.defineProperty(fn, 'name', {value});
|
||||||
|
} catch (e) {
|
||||||
|
// eslint-disable-next-line no-empty
|
||||||
|
}
|
||||||
|
Object.defineProperty(fn, 'adapterName', {value});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const renderReason = (reason) => `- ${reason}`;
|
||||||
|
|
||||||
|
const isResolvedHandle = (adapter) => utils.isFunction(adapter) || adapter === null || adapter === false;
|
||||||
|
|
||||||
|
export default {
|
||||||
|
getAdapter: (adapters) => {
|
||||||
|
adapters = utils.isArray(adapters) ? adapters : [adapters];
|
||||||
|
|
||||||
|
const {length} = adapters;
|
||||||
|
let nameOrAdapter;
|
||||||
|
let adapter;
|
||||||
|
|
||||||
|
const rejectedReasons = {};
|
||||||
|
|
||||||
|
for (let i = 0; i < length; i++) {
|
||||||
|
nameOrAdapter = adapters[i];
|
||||||
|
let id;
|
||||||
|
|
||||||
|
adapter = nameOrAdapter;
|
||||||
|
|
||||||
|
if (!isResolvedHandle(nameOrAdapter)) {
|
||||||
|
adapter = knownAdapters[(id = String(nameOrAdapter)).toLowerCase()];
|
||||||
|
|
||||||
|
if (adapter === undefined) {
|
||||||
|
throw new AxiosError(`Unknown adapter '${id}'`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (adapter) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
rejectedReasons[id || '#' + i] = adapter;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!adapter) {
|
||||||
|
|
||||||
|
const reasons = Object.entries(rejectedReasons)
|
||||||
|
.map(([id, state]) => `adapter ${id} ` +
|
||||||
|
(state === false ? 'is not supported by the environment' : 'is not available in the build')
|
||||||
|
);
|
||||||
|
|
||||||
|
let s = length ?
|
||||||
|
(reasons.length > 1 ? 'since :\n' + reasons.map(renderReason).join('\n') : ' ' + renderReason(reasons[0])) :
|
||||||
|
'as no adapter specified';
|
||||||
|
|
||||||
|
throw new AxiosError(
|
||||||
|
`There is no suitable adapter to dispatch the request ` + s,
|
||||||
|
'ERR_NOT_SUPPORT'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return adapter;
|
||||||
|
},
|
||||||
|
adapters: knownAdapters
|
||||||
|
}
|
229
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/adapters/fetch.js
generated
vendored
Normal file
229
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/adapters/fetch.js
generated
vendored
Normal file
@ -0,0 +1,229 @@
|
|||||||
|
import platform from "../platform/index.js";
|
||||||
|
import utils from "../utils.js";
|
||||||
|
import AxiosError from "../core/AxiosError.js";
|
||||||
|
import composeSignals from "../helpers/composeSignals.js";
|
||||||
|
import {trackStream} from "../helpers/trackStream.js";
|
||||||
|
import AxiosHeaders from "../core/AxiosHeaders.js";
|
||||||
|
import {progressEventReducer, progressEventDecorator, asyncDecorator} from "../helpers/progressEventReducer.js";
|
||||||
|
import resolveConfig from "../helpers/resolveConfig.js";
|
||||||
|
import settle from "../core/settle.js";
|
||||||
|
|
||||||
|
const isFetchSupported = typeof fetch === 'function' && typeof Request === 'function' && typeof Response === 'function';
|
||||||
|
const isReadableStreamSupported = isFetchSupported && typeof ReadableStream === 'function';
|
||||||
|
|
||||||
|
// used only inside the fetch adapter
|
||||||
|
const encodeText = isFetchSupported && (typeof TextEncoder === 'function' ?
|
||||||
|
((encoder) => (str) => encoder.encode(str))(new TextEncoder()) :
|
||||||
|
async (str) => new Uint8Array(await new Response(str).arrayBuffer())
|
||||||
|
);
|
||||||
|
|
||||||
|
const test = (fn, ...args) => {
|
||||||
|
try {
|
||||||
|
return !!fn(...args);
|
||||||
|
} catch (e) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const supportsRequestStream = isReadableStreamSupported && test(() => {
|
||||||
|
let duplexAccessed = false;
|
||||||
|
|
||||||
|
const hasContentType = new Request(platform.origin, {
|
||||||
|
body: new ReadableStream(),
|
||||||
|
method: 'POST',
|
||||||
|
get duplex() {
|
||||||
|
duplexAccessed = true;
|
||||||
|
return 'half';
|
||||||
|
},
|
||||||
|
}).headers.has('Content-Type');
|
||||||
|
|
||||||
|
return duplexAccessed && !hasContentType;
|
||||||
|
});
|
||||||
|
|
||||||
|
const DEFAULT_CHUNK_SIZE = 64 * 1024;
|
||||||
|
|
||||||
|
const supportsResponseStream = isReadableStreamSupported &&
|
||||||
|
test(() => utils.isReadableStream(new Response('').body));
|
||||||
|
|
||||||
|
|
||||||
|
const resolvers = {
|
||||||
|
stream: supportsResponseStream && ((res) => res.body)
|
||||||
|
};
|
||||||
|
|
||||||
|
isFetchSupported && (((res) => {
|
||||||
|
['text', 'arrayBuffer', 'blob', 'formData', 'stream'].forEach(type => {
|
||||||
|
!resolvers[type] && (resolvers[type] = utils.isFunction(res[type]) ? (res) => res[type]() :
|
||||||
|
(_, config) => {
|
||||||
|
throw new AxiosError(`Response type '${type}' is not supported`, AxiosError.ERR_NOT_SUPPORT, config);
|
||||||
|
})
|
||||||
|
});
|
||||||
|
})(new Response));
|
||||||
|
|
||||||
|
const getBodyLength = async (body) => {
|
||||||
|
if (body == null) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(utils.isBlob(body)) {
|
||||||
|
return body.size;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(utils.isSpecCompliantForm(body)) {
|
||||||
|
const _request = new Request(platform.origin, {
|
||||||
|
method: 'POST',
|
||||||
|
body,
|
||||||
|
});
|
||||||
|
return (await _request.arrayBuffer()).byteLength;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(utils.isArrayBufferView(body) || utils.isArrayBuffer(body)) {
|
||||||
|
return body.byteLength;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(utils.isURLSearchParams(body)) {
|
||||||
|
body = body + '';
|
||||||
|
}
|
||||||
|
|
||||||
|
if(utils.isString(body)) {
|
||||||
|
return (await encodeText(body)).byteLength;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const resolveBodyLength = async (headers, body) => {
|
||||||
|
const length = utils.toFiniteNumber(headers.getContentLength());
|
||||||
|
|
||||||
|
return length == null ? getBodyLength(body) : length;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default isFetchSupported && (async (config) => {
|
||||||
|
let {
|
||||||
|
url,
|
||||||
|
method,
|
||||||
|
data,
|
||||||
|
signal,
|
||||||
|
cancelToken,
|
||||||
|
timeout,
|
||||||
|
onDownloadProgress,
|
||||||
|
onUploadProgress,
|
||||||
|
responseType,
|
||||||
|
headers,
|
||||||
|
withCredentials = 'same-origin',
|
||||||
|
fetchOptions
|
||||||
|
} = resolveConfig(config);
|
||||||
|
|
||||||
|
responseType = responseType ? (responseType + '').toLowerCase() : 'text';
|
||||||
|
|
||||||
|
let composedSignal = composeSignals([signal, cancelToken && cancelToken.toAbortSignal()], timeout);
|
||||||
|
|
||||||
|
let request;
|
||||||
|
|
||||||
|
const unsubscribe = composedSignal && composedSignal.unsubscribe && (() => {
|
||||||
|
composedSignal.unsubscribe();
|
||||||
|
});
|
||||||
|
|
||||||
|
let requestContentLength;
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (
|
||||||
|
onUploadProgress && supportsRequestStream && method !== 'get' && method !== 'head' &&
|
||||||
|
(requestContentLength = await resolveBodyLength(headers, data)) !== 0
|
||||||
|
) {
|
||||||
|
let _request = new Request(url, {
|
||||||
|
method: 'POST',
|
||||||
|
body: data,
|
||||||
|
duplex: "half"
|
||||||
|
});
|
||||||
|
|
||||||
|
let contentTypeHeader;
|
||||||
|
|
||||||
|
if (utils.isFormData(data) && (contentTypeHeader = _request.headers.get('content-type'))) {
|
||||||
|
headers.setContentType(contentTypeHeader)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_request.body) {
|
||||||
|
const [onProgress, flush] = progressEventDecorator(
|
||||||
|
requestContentLength,
|
||||||
|
progressEventReducer(asyncDecorator(onUploadProgress))
|
||||||
|
);
|
||||||
|
|
||||||
|
data = trackStream(_request.body, DEFAULT_CHUNK_SIZE, onProgress, flush);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!utils.isString(withCredentials)) {
|
||||||
|
withCredentials = withCredentials ? 'include' : 'omit';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Cloudflare Workers throws when credentials are defined
|
||||||
|
// see https://github.com/cloudflare/workerd/issues/902
|
||||||
|
const isCredentialsSupported = "credentials" in Request.prototype;
|
||||||
|
request = new Request(url, {
|
||||||
|
...fetchOptions,
|
||||||
|
signal: composedSignal,
|
||||||
|
method: method.toUpperCase(),
|
||||||
|
headers: headers.normalize().toJSON(),
|
||||||
|
body: data,
|
||||||
|
duplex: "half",
|
||||||
|
credentials: isCredentialsSupported ? withCredentials : undefined
|
||||||
|
});
|
||||||
|
|
||||||
|
let response = await fetch(request);
|
||||||
|
|
||||||
|
const isStreamResponse = supportsResponseStream && (responseType === 'stream' || responseType === 'response');
|
||||||
|
|
||||||
|
if (supportsResponseStream && (onDownloadProgress || (isStreamResponse && unsubscribe))) {
|
||||||
|
const options = {};
|
||||||
|
|
||||||
|
['status', 'statusText', 'headers'].forEach(prop => {
|
||||||
|
options[prop] = response[prop];
|
||||||
|
});
|
||||||
|
|
||||||
|
const responseContentLength = utils.toFiniteNumber(response.headers.get('content-length'));
|
||||||
|
|
||||||
|
const [onProgress, flush] = onDownloadProgress && progressEventDecorator(
|
||||||
|
responseContentLength,
|
||||||
|
progressEventReducer(asyncDecorator(onDownloadProgress), true)
|
||||||
|
) || [];
|
||||||
|
|
||||||
|
response = new Response(
|
||||||
|
trackStream(response.body, DEFAULT_CHUNK_SIZE, onProgress, () => {
|
||||||
|
flush && flush();
|
||||||
|
unsubscribe && unsubscribe();
|
||||||
|
}),
|
||||||
|
options
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
responseType = responseType || 'text';
|
||||||
|
|
||||||
|
let responseData = await resolvers[utils.findKey(resolvers, responseType) || 'text'](response, config);
|
||||||
|
|
||||||
|
!isStreamResponse && unsubscribe && unsubscribe();
|
||||||
|
|
||||||
|
return await new Promise((resolve, reject) => {
|
||||||
|
settle(resolve, reject, {
|
||||||
|
data: responseData,
|
||||||
|
headers: AxiosHeaders.from(response.headers),
|
||||||
|
status: response.status,
|
||||||
|
statusText: response.statusText,
|
||||||
|
config,
|
||||||
|
request
|
||||||
|
})
|
||||||
|
})
|
||||||
|
} catch (err) {
|
||||||
|
unsubscribe && unsubscribe();
|
||||||
|
|
||||||
|
if (err && err.name === 'TypeError' && /Load failed|fetch/i.test(err.message)) {
|
||||||
|
throw Object.assign(
|
||||||
|
new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request),
|
||||||
|
{
|
||||||
|
cause: err.cause || err
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
throw AxiosError.from(err, err && err.code, config, request);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
695
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/adapters/http.js
generated
vendored
Normal file
695
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/adapters/http.js
generated
vendored
Normal file
@ -0,0 +1,695 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
import utils from './../utils.js';
|
||||||
|
import settle from './../core/settle.js';
|
||||||
|
import buildFullPath from '../core/buildFullPath.js';
|
||||||
|
import buildURL from './../helpers/buildURL.js';
|
||||||
|
import proxyFromEnv from 'proxy-from-env';
|
||||||
|
import http from 'http';
|
||||||
|
import https from 'https';
|
||||||
|
import util from 'util';
|
||||||
|
import followRedirects from 'follow-redirects';
|
||||||
|
import zlib from 'zlib';
|
||||||
|
import {VERSION} from '../env/data.js';
|
||||||
|
import transitionalDefaults from '../defaults/transitional.js';
|
||||||
|
import AxiosError from '../core/AxiosError.js';
|
||||||
|
import CanceledError from '../cancel/CanceledError.js';
|
||||||
|
import platform from '../platform/index.js';
|
||||||
|
import fromDataURI from '../helpers/fromDataURI.js';
|
||||||
|
import stream from 'stream';
|
||||||
|
import AxiosHeaders from '../core/AxiosHeaders.js';
|
||||||
|
import AxiosTransformStream from '../helpers/AxiosTransformStream.js';
|
||||||
|
import {EventEmitter} from 'events';
|
||||||
|
import formDataToStream from "../helpers/formDataToStream.js";
|
||||||
|
import readBlob from "../helpers/readBlob.js";
|
||||||
|
import ZlibHeaderTransformStream from '../helpers/ZlibHeaderTransformStream.js';
|
||||||
|
import callbackify from "../helpers/callbackify.js";
|
||||||
|
import {progressEventReducer, progressEventDecorator, asyncDecorator} from "../helpers/progressEventReducer.js";
|
||||||
|
|
||||||
|
const zlibOptions = {
|
||||||
|
flush: zlib.constants.Z_SYNC_FLUSH,
|
||||||
|
finishFlush: zlib.constants.Z_SYNC_FLUSH
|
||||||
|
};
|
||||||
|
|
||||||
|
const brotliOptions = {
|
||||||
|
flush: zlib.constants.BROTLI_OPERATION_FLUSH,
|
||||||
|
finishFlush: zlib.constants.BROTLI_OPERATION_FLUSH
|
||||||
|
}
|
||||||
|
|
||||||
|
const isBrotliSupported = utils.isFunction(zlib.createBrotliDecompress);
|
||||||
|
|
||||||
|
const {http: httpFollow, https: httpsFollow} = followRedirects;
|
||||||
|
|
||||||
|
const isHttps = /https:?/;
|
||||||
|
|
||||||
|
const supportedProtocols = platform.protocols.map(protocol => {
|
||||||
|
return protocol + ':';
|
||||||
|
});
|
||||||
|
|
||||||
|
const flushOnFinish = (stream, [throttled, flush]) => {
|
||||||
|
stream
|
||||||
|
.on('end', flush)
|
||||||
|
.on('error', flush);
|
||||||
|
|
||||||
|
return throttled;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If the proxy or config beforeRedirects functions are defined, call them with the options
|
||||||
|
* object.
|
||||||
|
*
|
||||||
|
* @param {Object<string, any>} options - The options object that was passed to the request.
|
||||||
|
*
|
||||||
|
* @returns {Object<string, any>}
|
||||||
|
*/
|
||||||
|
function dispatchBeforeRedirect(options, responseDetails) {
|
||||||
|
if (options.beforeRedirects.proxy) {
|
||||||
|
options.beforeRedirects.proxy(options);
|
||||||
|
}
|
||||||
|
if (options.beforeRedirects.config) {
|
||||||
|
options.beforeRedirects.config(options, responseDetails);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If the proxy or config afterRedirects functions are defined, call them with the options
|
||||||
|
*
|
||||||
|
* @param {http.ClientRequestArgs} options
|
||||||
|
* @param {AxiosProxyConfig} configProxy configuration from Axios options object
|
||||||
|
* @param {string} location
|
||||||
|
*
|
||||||
|
* @returns {http.ClientRequestArgs}
|
||||||
|
*/
|
||||||
|
function setProxy(options, configProxy, location) {
|
||||||
|
let proxy = configProxy;
|
||||||
|
if (!proxy && proxy !== false) {
|
||||||
|
const proxyUrl = proxyFromEnv.getProxyForUrl(location);
|
||||||
|
if (proxyUrl) {
|
||||||
|
proxy = new URL(proxyUrl);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (proxy) {
|
||||||
|
// Basic proxy authorization
|
||||||
|
if (proxy.username) {
|
||||||
|
proxy.auth = (proxy.username || '') + ':' + (proxy.password || '');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (proxy.auth) {
|
||||||
|
// Support proxy auth object form
|
||||||
|
if (proxy.auth.username || proxy.auth.password) {
|
||||||
|
proxy.auth = (proxy.auth.username || '') + ':' + (proxy.auth.password || '');
|
||||||
|
}
|
||||||
|
const base64 = Buffer
|
||||||
|
.from(proxy.auth, 'utf8')
|
||||||
|
.toString('base64');
|
||||||
|
options.headers['Proxy-Authorization'] = 'Basic ' + base64;
|
||||||
|
}
|
||||||
|
|
||||||
|
options.headers.host = options.hostname + (options.port ? ':' + options.port : '');
|
||||||
|
const proxyHost = proxy.hostname || proxy.host;
|
||||||
|
options.hostname = proxyHost;
|
||||||
|
// Replace 'host' since options is not a URL object
|
||||||
|
options.host = proxyHost;
|
||||||
|
options.port = proxy.port;
|
||||||
|
options.path = location;
|
||||||
|
if (proxy.protocol) {
|
||||||
|
options.protocol = proxy.protocol.includes(':') ? proxy.protocol : `${proxy.protocol}:`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
options.beforeRedirects.proxy = function beforeRedirect(redirectOptions) {
|
||||||
|
// Configure proxy for redirected request, passing the original config proxy to apply
|
||||||
|
// the exact same logic as if the redirected request was performed by axios directly.
|
||||||
|
setProxy(redirectOptions, configProxy, redirectOptions.href);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const isHttpAdapterSupported = typeof process !== 'undefined' && utils.kindOf(process) === 'process';
|
||||||
|
|
||||||
|
// temporary hotfix
|
||||||
|
|
||||||
|
const wrapAsync = (asyncExecutor) => {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
let onDone;
|
||||||
|
let isDone;
|
||||||
|
|
||||||
|
const done = (value, isRejected) => {
|
||||||
|
if (isDone) return;
|
||||||
|
isDone = true;
|
||||||
|
onDone && onDone(value, isRejected);
|
||||||
|
}
|
||||||
|
|
||||||
|
const _resolve = (value) => {
|
||||||
|
done(value);
|
||||||
|
resolve(value);
|
||||||
|
};
|
||||||
|
|
||||||
|
const _reject = (reason) => {
|
||||||
|
done(reason, true);
|
||||||
|
reject(reason);
|
||||||
|
}
|
||||||
|
|
||||||
|
asyncExecutor(_resolve, _reject, (onDoneHandler) => (onDone = onDoneHandler)).catch(_reject);
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
const resolveFamily = ({address, family}) => {
|
||||||
|
if (!utils.isString(address)) {
|
||||||
|
throw TypeError('address must be a string');
|
||||||
|
}
|
||||||
|
return ({
|
||||||
|
address,
|
||||||
|
family: family || (address.indexOf('.') < 0 ? 6 : 4)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const buildAddressEntry = (address, family) => resolveFamily(utils.isObject(address) ? address : {address, family});
|
||||||
|
|
||||||
|
/*eslint consistent-return:0*/
|
||||||
|
export default isHttpAdapterSupported && function httpAdapter(config) {
|
||||||
|
return wrapAsync(async function dispatchHttpRequest(resolve, reject, onDone) {
|
||||||
|
let {data, lookup, family} = config;
|
||||||
|
const {responseType, responseEncoding} = config;
|
||||||
|
const method = config.method.toUpperCase();
|
||||||
|
let isDone;
|
||||||
|
let rejected = false;
|
||||||
|
let req;
|
||||||
|
|
||||||
|
if (lookup) {
|
||||||
|
const _lookup = callbackify(lookup, (value) => utils.isArray(value) ? value : [value]);
|
||||||
|
// hotfix to support opt.all option which is required for node 20.x
|
||||||
|
lookup = (hostname, opt, cb) => {
|
||||||
|
_lookup(hostname, opt, (err, arg0, arg1) => {
|
||||||
|
if (err) {
|
||||||
|
return cb(err);
|
||||||
|
}
|
||||||
|
|
||||||
|
const addresses = utils.isArray(arg0) ? arg0.map(addr => buildAddressEntry(addr)) : [buildAddressEntry(arg0, arg1)];
|
||||||
|
|
||||||
|
opt.all ? cb(err, addresses) : cb(err, addresses[0].address, addresses[0].family);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// temporary internal emitter until the AxiosRequest class will be implemented
|
||||||
|
const emitter = new EventEmitter();
|
||||||
|
|
||||||
|
const onFinished = () => {
|
||||||
|
if (config.cancelToken) {
|
||||||
|
config.cancelToken.unsubscribe(abort);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (config.signal) {
|
||||||
|
config.signal.removeEventListener('abort', abort);
|
||||||
|
}
|
||||||
|
|
||||||
|
emitter.removeAllListeners();
|
||||||
|
}
|
||||||
|
|
||||||
|
onDone((value, isRejected) => {
|
||||||
|
isDone = true;
|
||||||
|
if (isRejected) {
|
||||||
|
rejected = true;
|
||||||
|
onFinished();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function abort(reason) {
|
||||||
|
emitter.emit('abort', !reason || reason.type ? new CanceledError(null, config, req) : reason);
|
||||||
|
}
|
||||||
|
|
||||||
|
emitter.once('abort', reject);
|
||||||
|
|
||||||
|
if (config.cancelToken || config.signal) {
|
||||||
|
config.cancelToken && config.cancelToken.subscribe(abort);
|
||||||
|
if (config.signal) {
|
||||||
|
config.signal.aborted ? abort() : config.signal.addEventListener('abort', abort);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse url
|
||||||
|
const fullPath = buildFullPath(config.baseURL, config.url, config.allowAbsoluteUrls);
|
||||||
|
const parsed = new URL(fullPath, platform.hasBrowserEnv ? platform.origin : undefined);
|
||||||
|
const protocol = parsed.protocol || supportedProtocols[0];
|
||||||
|
|
||||||
|
if (protocol === 'data:') {
|
||||||
|
let convertedData;
|
||||||
|
|
||||||
|
if (method !== 'GET') {
|
||||||
|
return settle(resolve, reject, {
|
||||||
|
status: 405,
|
||||||
|
statusText: 'method not allowed',
|
||||||
|
headers: {},
|
||||||
|
config
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
convertedData = fromDataURI(config.url, responseType === 'blob', {
|
||||||
|
Blob: config.env && config.env.Blob
|
||||||
|
});
|
||||||
|
} catch (err) {
|
||||||
|
throw AxiosError.from(err, AxiosError.ERR_BAD_REQUEST, config);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (responseType === 'text') {
|
||||||
|
convertedData = convertedData.toString(responseEncoding);
|
||||||
|
|
||||||
|
if (!responseEncoding || responseEncoding === 'utf8') {
|
||||||
|
convertedData = utils.stripBOM(convertedData);
|
||||||
|
}
|
||||||
|
} else if (responseType === 'stream') {
|
||||||
|
convertedData = stream.Readable.from(convertedData);
|
||||||
|
}
|
||||||
|
|
||||||
|
return settle(resolve, reject, {
|
||||||
|
data: convertedData,
|
||||||
|
status: 200,
|
||||||
|
statusText: 'OK',
|
||||||
|
headers: new AxiosHeaders(),
|
||||||
|
config
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (supportedProtocols.indexOf(protocol) === -1) {
|
||||||
|
return reject(new AxiosError(
|
||||||
|
'Unsupported protocol ' + protocol,
|
||||||
|
AxiosError.ERR_BAD_REQUEST,
|
||||||
|
config
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
const headers = AxiosHeaders.from(config.headers).normalize();
|
||||||
|
|
||||||
|
// Set User-Agent (required by some servers)
|
||||||
|
// See https://github.com/axios/axios/issues/69
|
||||||
|
// User-Agent is specified; handle case where no UA header is desired
|
||||||
|
// Only set header if it hasn't been set in config
|
||||||
|
headers.set('User-Agent', 'axios/' + VERSION, false);
|
||||||
|
|
||||||
|
const {onUploadProgress, onDownloadProgress} = config;
|
||||||
|
const maxRate = config.maxRate;
|
||||||
|
let maxUploadRate = undefined;
|
||||||
|
let maxDownloadRate = undefined;
|
||||||
|
|
||||||
|
// support for spec compliant FormData objects
|
||||||
|
if (utils.isSpecCompliantForm(data)) {
|
||||||
|
const userBoundary = headers.getContentType(/boundary=([-_\w\d]{10,70})/i);
|
||||||
|
|
||||||
|
data = formDataToStream(data, (formHeaders) => {
|
||||||
|
headers.set(formHeaders);
|
||||||
|
}, {
|
||||||
|
tag: `axios-${VERSION}-boundary`,
|
||||||
|
boundary: userBoundary && userBoundary[1] || undefined
|
||||||
|
});
|
||||||
|
// support for https://www.npmjs.com/package/form-data api
|
||||||
|
} else if (utils.isFormData(data) && utils.isFunction(data.getHeaders)) {
|
||||||
|
headers.set(data.getHeaders());
|
||||||
|
|
||||||
|
if (!headers.hasContentLength()) {
|
||||||
|
try {
|
||||||
|
const knownLength = await util.promisify(data.getLength).call(data);
|
||||||
|
Number.isFinite(knownLength) && knownLength >= 0 && headers.setContentLength(knownLength);
|
||||||
|
/*eslint no-empty:0*/
|
||||||
|
} catch (e) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (utils.isBlob(data) || utils.isFile(data)) {
|
||||||
|
data.size && headers.setContentType(data.type || 'application/octet-stream');
|
||||||
|
headers.setContentLength(data.size || 0);
|
||||||
|
data = stream.Readable.from(readBlob(data));
|
||||||
|
} else if (data && !utils.isStream(data)) {
|
||||||
|
if (Buffer.isBuffer(data)) {
|
||||||
|
// Nothing to do...
|
||||||
|
} else if (utils.isArrayBuffer(data)) {
|
||||||
|
data = Buffer.from(new Uint8Array(data));
|
||||||
|
} else if (utils.isString(data)) {
|
||||||
|
data = Buffer.from(data, 'utf-8');
|
||||||
|
} else {
|
||||||
|
return reject(new AxiosError(
|
||||||
|
'Data after transformation must be a string, an ArrayBuffer, a Buffer, or a Stream',
|
||||||
|
AxiosError.ERR_BAD_REQUEST,
|
||||||
|
config
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add Content-Length header if data exists
|
||||||
|
headers.setContentLength(data.length, false);
|
||||||
|
|
||||||
|
if (config.maxBodyLength > -1 && data.length > config.maxBodyLength) {
|
||||||
|
return reject(new AxiosError(
|
||||||
|
'Request body larger than maxBodyLength limit',
|
||||||
|
AxiosError.ERR_BAD_REQUEST,
|
||||||
|
config
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const contentLength = utils.toFiniteNumber(headers.getContentLength());
|
||||||
|
|
||||||
|
if (utils.isArray(maxRate)) {
|
||||||
|
maxUploadRate = maxRate[0];
|
||||||
|
maxDownloadRate = maxRate[1];
|
||||||
|
} else {
|
||||||
|
maxUploadRate = maxDownloadRate = maxRate;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (data && (onUploadProgress || maxUploadRate)) {
|
||||||
|
if (!utils.isStream(data)) {
|
||||||
|
data = stream.Readable.from(data, {objectMode: false});
|
||||||
|
}
|
||||||
|
|
||||||
|
data = stream.pipeline([data, new AxiosTransformStream({
|
||||||
|
maxRate: utils.toFiniteNumber(maxUploadRate)
|
||||||
|
})], utils.noop);
|
||||||
|
|
||||||
|
onUploadProgress && data.on('progress', flushOnFinish(
|
||||||
|
data,
|
||||||
|
progressEventDecorator(
|
||||||
|
contentLength,
|
||||||
|
progressEventReducer(asyncDecorator(onUploadProgress), false, 3)
|
||||||
|
)
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
// HTTP basic authentication
|
||||||
|
let auth = undefined;
|
||||||
|
if (config.auth) {
|
||||||
|
const username = config.auth.username || '';
|
||||||
|
const password = config.auth.password || '';
|
||||||
|
auth = username + ':' + password;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!auth && parsed.username) {
|
||||||
|
const urlUsername = parsed.username;
|
||||||
|
const urlPassword = parsed.password;
|
||||||
|
auth = urlUsername + ':' + urlPassword;
|
||||||
|
}
|
||||||
|
|
||||||
|
auth && headers.delete('authorization');
|
||||||
|
|
||||||
|
let path;
|
||||||
|
|
||||||
|
try {
|
||||||
|
path = buildURL(
|
||||||
|
parsed.pathname + parsed.search,
|
||||||
|
config.params,
|
||||||
|
config.paramsSerializer
|
||||||
|
).replace(/^\?/, '');
|
||||||
|
} catch (err) {
|
||||||
|
const customErr = new Error(err.message);
|
||||||
|
customErr.config = config;
|
||||||
|
customErr.url = config.url;
|
||||||
|
customErr.exists = true;
|
||||||
|
return reject(customErr);
|
||||||
|
}
|
||||||
|
|
||||||
|
headers.set(
|
||||||
|
'Accept-Encoding',
|
||||||
|
'gzip, compress, deflate' + (isBrotliSupported ? ', br' : ''), false
|
||||||
|
);
|
||||||
|
|
||||||
|
const options = {
|
||||||
|
path,
|
||||||
|
method: method,
|
||||||
|
headers: headers.toJSON(),
|
||||||
|
agents: { http: config.httpAgent, https: config.httpsAgent },
|
||||||
|
auth,
|
||||||
|
protocol,
|
||||||
|
family,
|
||||||
|
beforeRedirect: dispatchBeforeRedirect,
|
||||||
|
beforeRedirects: {}
|
||||||
|
};
|
||||||
|
|
||||||
|
// cacheable-lookup integration hotfix
|
||||||
|
!utils.isUndefined(lookup) && (options.lookup = lookup);
|
||||||
|
|
||||||
|
if (config.socketPath) {
|
||||||
|
options.socketPath = config.socketPath;
|
||||||
|
} else {
|
||||||
|
options.hostname = parsed.hostname.startsWith("[") ? parsed.hostname.slice(1, -1) : parsed.hostname;
|
||||||
|
options.port = parsed.port;
|
||||||
|
setProxy(options, config.proxy, protocol + '//' + parsed.hostname + (parsed.port ? ':' + parsed.port : '') + options.path);
|
||||||
|
}
|
||||||
|
|
||||||
|
let transport;
|
||||||
|
const isHttpsRequest = isHttps.test(options.protocol);
|
||||||
|
options.agent = isHttpsRequest ? config.httpsAgent : config.httpAgent;
|
||||||
|
if (config.transport) {
|
||||||
|
transport = config.transport;
|
||||||
|
} else if (config.maxRedirects === 0) {
|
||||||
|
transport = isHttpsRequest ? https : http;
|
||||||
|
} else {
|
||||||
|
if (config.maxRedirects) {
|
||||||
|
options.maxRedirects = config.maxRedirects;
|
||||||
|
}
|
||||||
|
if (config.beforeRedirect) {
|
||||||
|
options.beforeRedirects.config = config.beforeRedirect;
|
||||||
|
}
|
||||||
|
transport = isHttpsRequest ? httpsFollow : httpFollow;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (config.maxBodyLength > -1) {
|
||||||
|
options.maxBodyLength = config.maxBodyLength;
|
||||||
|
} else {
|
||||||
|
// follow-redirects does not skip comparison, so it should always succeed for axios -1 unlimited
|
||||||
|
options.maxBodyLength = Infinity;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (config.insecureHTTPParser) {
|
||||||
|
options.insecureHTTPParser = config.insecureHTTPParser;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create the request
|
||||||
|
req = transport.request(options, function handleResponse(res) {
|
||||||
|
if (req.destroyed) return;
|
||||||
|
|
||||||
|
const streams = [res];
|
||||||
|
|
||||||
|
const responseLength = +res.headers['content-length'];
|
||||||
|
|
||||||
|
if (onDownloadProgress || maxDownloadRate) {
|
||||||
|
const transformStream = new AxiosTransformStream({
|
||||||
|
maxRate: utils.toFiniteNumber(maxDownloadRate)
|
||||||
|
});
|
||||||
|
|
||||||
|
onDownloadProgress && transformStream.on('progress', flushOnFinish(
|
||||||
|
transformStream,
|
||||||
|
progressEventDecorator(
|
||||||
|
responseLength,
|
||||||
|
progressEventReducer(asyncDecorator(onDownloadProgress), true, 3)
|
||||||
|
)
|
||||||
|
));
|
||||||
|
|
||||||
|
streams.push(transformStream);
|
||||||
|
}
|
||||||
|
|
||||||
|
// decompress the response body transparently if required
|
||||||
|
let responseStream = res;
|
||||||
|
|
||||||
|
// return the last request in case of redirects
|
||||||
|
const lastRequest = res.req || req;
|
||||||
|
|
||||||
|
// if decompress disabled we should not decompress
|
||||||
|
if (config.decompress !== false && res.headers['content-encoding']) {
|
||||||
|
// if no content, but headers still say that it is encoded,
|
||||||
|
// remove the header not confuse downstream operations
|
||||||
|
if (method === 'HEAD' || res.statusCode === 204) {
|
||||||
|
delete res.headers['content-encoding'];
|
||||||
|
}
|
||||||
|
|
||||||
|
switch ((res.headers['content-encoding'] || '').toLowerCase()) {
|
||||||
|
/*eslint default-case:0*/
|
||||||
|
case 'gzip':
|
||||||
|
case 'x-gzip':
|
||||||
|
case 'compress':
|
||||||
|
case 'x-compress':
|
||||||
|
// add the unzipper to the body stream processing pipeline
|
||||||
|
streams.push(zlib.createUnzip(zlibOptions));
|
||||||
|
|
||||||
|
// remove the content-encoding in order to not confuse downstream operations
|
||||||
|
delete res.headers['content-encoding'];
|
||||||
|
break;
|
||||||
|
case 'deflate':
|
||||||
|
streams.push(new ZlibHeaderTransformStream());
|
||||||
|
|
||||||
|
// add the unzipper to the body stream processing pipeline
|
||||||
|
streams.push(zlib.createUnzip(zlibOptions));
|
||||||
|
|
||||||
|
// remove the content-encoding in order to not confuse downstream operations
|
||||||
|
delete res.headers['content-encoding'];
|
||||||
|
break;
|
||||||
|
case 'br':
|
||||||
|
if (isBrotliSupported) {
|
||||||
|
streams.push(zlib.createBrotliDecompress(brotliOptions));
|
||||||
|
delete res.headers['content-encoding'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
responseStream = streams.length > 1 ? stream.pipeline(streams, utils.noop) : streams[0];
|
||||||
|
|
||||||
|
const offListeners = stream.finished(responseStream, () => {
|
||||||
|
offListeners();
|
||||||
|
onFinished();
|
||||||
|
});
|
||||||
|
|
||||||
|
const response = {
|
||||||
|
status: res.statusCode,
|
||||||
|
statusText: res.statusMessage,
|
||||||
|
headers: new AxiosHeaders(res.headers),
|
||||||
|
config,
|
||||||
|
request: lastRequest
|
||||||
|
};
|
||||||
|
|
||||||
|
if (responseType === 'stream') {
|
||||||
|
response.data = responseStream;
|
||||||
|
settle(resolve, reject, response);
|
||||||
|
} else {
|
||||||
|
const responseBuffer = [];
|
||||||
|
let totalResponseBytes = 0;
|
||||||
|
|
||||||
|
responseStream.on('data', function handleStreamData(chunk) {
|
||||||
|
responseBuffer.push(chunk);
|
||||||
|
totalResponseBytes += chunk.length;
|
||||||
|
|
||||||
|
// make sure the content length is not over the maxContentLength if specified
|
||||||
|
if (config.maxContentLength > -1 && totalResponseBytes > config.maxContentLength) {
|
||||||
|
// stream.destroy() emit aborted event before calling reject() on Node.js v16
|
||||||
|
rejected = true;
|
||||||
|
responseStream.destroy();
|
||||||
|
reject(new AxiosError('maxContentLength size of ' + config.maxContentLength + ' exceeded',
|
||||||
|
AxiosError.ERR_BAD_RESPONSE, config, lastRequest));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
responseStream.on('aborted', function handlerStreamAborted() {
|
||||||
|
if (rejected) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const err = new AxiosError(
|
||||||
|
'stream has been aborted',
|
||||||
|
AxiosError.ERR_BAD_RESPONSE,
|
||||||
|
config,
|
||||||
|
lastRequest
|
||||||
|
);
|
||||||
|
responseStream.destroy(err);
|
||||||
|
reject(err);
|
||||||
|
});
|
||||||
|
|
||||||
|
responseStream.on('error', function handleStreamError(err) {
|
||||||
|
if (req.destroyed) return;
|
||||||
|
reject(AxiosError.from(err, null, config, lastRequest));
|
||||||
|
});
|
||||||
|
|
||||||
|
responseStream.on('end', function handleStreamEnd() {
|
||||||
|
try {
|
||||||
|
let responseData = responseBuffer.length === 1 ? responseBuffer[0] : Buffer.concat(responseBuffer);
|
||||||
|
if (responseType !== 'arraybuffer') {
|
||||||
|
responseData = responseData.toString(responseEncoding);
|
||||||
|
if (!responseEncoding || responseEncoding === 'utf8') {
|
||||||
|
responseData = utils.stripBOM(responseData);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
response.data = responseData;
|
||||||
|
} catch (err) {
|
||||||
|
return reject(AxiosError.from(err, null, config, response.request, response));
|
||||||
|
}
|
||||||
|
settle(resolve, reject, response);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
emitter.once('abort', err => {
|
||||||
|
if (!responseStream.destroyed) {
|
||||||
|
responseStream.emit('error', err);
|
||||||
|
responseStream.destroy();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
emitter.once('abort', err => {
|
||||||
|
reject(err);
|
||||||
|
req.destroy(err);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Handle errors
|
||||||
|
req.on('error', function handleRequestError(err) {
|
||||||
|
// @todo remove
|
||||||
|
// if (req.aborted && err.code !== AxiosError.ERR_FR_TOO_MANY_REDIRECTS) return;
|
||||||
|
reject(AxiosError.from(err, null, config, req));
|
||||||
|
});
|
||||||
|
|
||||||
|
// set tcp keep alive to prevent drop connection by peer
|
||||||
|
req.on('socket', function handleRequestSocket(socket) {
|
||||||
|
// default interval of sending ack packet is 1 minute
|
||||||
|
socket.setKeepAlive(true, 1000 * 60);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Handle request timeout
|
||||||
|
if (config.timeout) {
|
||||||
|
// This is forcing a int timeout to avoid problems if the `req` interface doesn't handle other types.
|
||||||
|
const timeout = parseInt(config.timeout, 10);
|
||||||
|
|
||||||
|
if (Number.isNaN(timeout)) {
|
||||||
|
reject(new AxiosError(
|
||||||
|
'error trying to parse `config.timeout` to int',
|
||||||
|
AxiosError.ERR_BAD_OPTION_VALUE,
|
||||||
|
config,
|
||||||
|
req
|
||||||
|
));
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sometime, the response will be very slow, and does not respond, the connect event will be block by event loop system.
|
||||||
|
// And timer callback will be fired, and abort() will be invoked before connection, then get "socket hang up" and code ECONNRESET.
|
||||||
|
// At this time, if we have a large number of request, nodejs will hang up some socket on background. and the number will up and up.
|
||||||
|
// And then these socket which be hang up will devouring CPU little by little.
|
||||||
|
// ClientRequest.setTimeout will be fired on the specify milliseconds, and can make sure that abort() will be fired after connect.
|
||||||
|
req.setTimeout(timeout, function handleRequestTimeout() {
|
||||||
|
if (isDone) return;
|
||||||
|
let timeoutErrorMessage = config.timeout ? 'timeout of ' + config.timeout + 'ms exceeded' : 'timeout exceeded';
|
||||||
|
const transitional = config.transitional || transitionalDefaults;
|
||||||
|
if (config.timeoutErrorMessage) {
|
||||||
|
timeoutErrorMessage = config.timeoutErrorMessage;
|
||||||
|
}
|
||||||
|
reject(new AxiosError(
|
||||||
|
timeoutErrorMessage,
|
||||||
|
transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,
|
||||||
|
config,
|
||||||
|
req
|
||||||
|
));
|
||||||
|
abort();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Send the request
|
||||||
|
if (utils.isStream(data)) {
|
||||||
|
let ended = false;
|
||||||
|
let errored = false;
|
||||||
|
|
||||||
|
data.on('end', () => {
|
||||||
|
ended = true;
|
||||||
|
});
|
||||||
|
|
||||||
|
data.once('error', err => {
|
||||||
|
errored = true;
|
||||||
|
req.destroy(err);
|
||||||
|
});
|
||||||
|
|
||||||
|
data.on('close', () => {
|
||||||
|
if (!ended && !errored) {
|
||||||
|
abort(new CanceledError('Request stream has been aborted', config, req));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
data.pipe(req);
|
||||||
|
} else {
|
||||||
|
req.end(data);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export const __setProxy = setProxy;
|
197
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/adapters/xhr.js
generated
vendored
Normal file
197
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/adapters/xhr.js
generated
vendored
Normal file
@ -0,0 +1,197 @@
|
|||||||
|
import utils from './../utils.js';
|
||||||
|
import settle from './../core/settle.js';
|
||||||
|
import transitionalDefaults from '../defaults/transitional.js';
|
||||||
|
import AxiosError from '../core/AxiosError.js';
|
||||||
|
import CanceledError from '../cancel/CanceledError.js';
|
||||||
|
import parseProtocol from '../helpers/parseProtocol.js';
|
||||||
|
import platform from '../platform/index.js';
|
||||||
|
import AxiosHeaders from '../core/AxiosHeaders.js';
|
||||||
|
import {progressEventReducer} from '../helpers/progressEventReducer.js';
|
||||||
|
import resolveConfig from "../helpers/resolveConfig.js";
|
||||||
|
|
||||||
|
const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
||||||
|
|
||||||
|
export default isXHRAdapterSupported && function (config) {
|
||||||
|
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
||||||
|
const _config = resolveConfig(config);
|
||||||
|
let requestData = _config.data;
|
||||||
|
const requestHeaders = AxiosHeaders.from(_config.headers).normalize();
|
||||||
|
let {responseType, onUploadProgress, onDownloadProgress} = _config;
|
||||||
|
let onCanceled;
|
||||||
|
let uploadThrottled, downloadThrottled;
|
||||||
|
let flushUpload, flushDownload;
|
||||||
|
|
||||||
|
function done() {
|
||||||
|
flushUpload && flushUpload(); // flush events
|
||||||
|
flushDownload && flushDownload(); // flush events
|
||||||
|
|
||||||
|
_config.cancelToken && _config.cancelToken.unsubscribe(onCanceled);
|
||||||
|
|
||||||
|
_config.signal && _config.signal.removeEventListener('abort', onCanceled);
|
||||||
|
}
|
||||||
|
|
||||||
|
let request = new XMLHttpRequest();
|
||||||
|
|
||||||
|
request.open(_config.method.toUpperCase(), _config.url, true);
|
||||||
|
|
||||||
|
// Set the request timeout in MS
|
||||||
|
request.timeout = _config.timeout;
|
||||||
|
|
||||||
|
function onloadend() {
|
||||||
|
if (!request) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Prepare the response
|
||||||
|
const responseHeaders = AxiosHeaders.from(
|
||||||
|
'getAllResponseHeaders' in request && request.getAllResponseHeaders()
|
||||||
|
);
|
||||||
|
const responseData = !responseType || responseType === 'text' || responseType === 'json' ?
|
||||||
|
request.responseText : request.response;
|
||||||
|
const response = {
|
||||||
|
data: responseData,
|
||||||
|
status: request.status,
|
||||||
|
statusText: request.statusText,
|
||||||
|
headers: responseHeaders,
|
||||||
|
config,
|
||||||
|
request
|
||||||
|
};
|
||||||
|
|
||||||
|
settle(function _resolve(value) {
|
||||||
|
resolve(value);
|
||||||
|
done();
|
||||||
|
}, function _reject(err) {
|
||||||
|
reject(err);
|
||||||
|
done();
|
||||||
|
}, response);
|
||||||
|
|
||||||
|
// Clean up request
|
||||||
|
request = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ('onloadend' in request) {
|
||||||
|
// Use onloadend if available
|
||||||
|
request.onloadend = onloadend;
|
||||||
|
} else {
|
||||||
|
// Listen for ready state to emulate onloadend
|
||||||
|
request.onreadystatechange = function handleLoad() {
|
||||||
|
if (!request || request.readyState !== 4) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// The request errored out and we didn't get a response, this will be
|
||||||
|
// handled by onerror instead
|
||||||
|
// With one exception: request that using file: protocol, most browsers
|
||||||
|
// will return status as 0 even though it's a successful request
|
||||||
|
if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// readystate handler is calling before onerror or ontimeout handlers,
|
||||||
|
// so we should call onloadend on the next 'tick'
|
||||||
|
setTimeout(onloadend);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle browser request cancellation (as opposed to a manual cancellation)
|
||||||
|
request.onabort = function handleAbort() {
|
||||||
|
if (!request) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
reject(new AxiosError('Request aborted', AxiosError.ECONNABORTED, config, request));
|
||||||
|
|
||||||
|
// Clean up request
|
||||||
|
request = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Handle low level network errors
|
||||||
|
request.onerror = function handleError() {
|
||||||
|
// Real errors are hidden from us by the browser
|
||||||
|
// onerror should only fire if it's a network error
|
||||||
|
reject(new AxiosError('Network Error', AxiosError.ERR_NETWORK, config, request));
|
||||||
|
|
||||||
|
// Clean up request
|
||||||
|
request = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Handle timeout
|
||||||
|
request.ontimeout = function handleTimeout() {
|
||||||
|
let timeoutErrorMessage = _config.timeout ? 'timeout of ' + _config.timeout + 'ms exceeded' : 'timeout exceeded';
|
||||||
|
const transitional = _config.transitional || transitionalDefaults;
|
||||||
|
if (_config.timeoutErrorMessage) {
|
||||||
|
timeoutErrorMessage = _config.timeoutErrorMessage;
|
||||||
|
}
|
||||||
|
reject(new AxiosError(
|
||||||
|
timeoutErrorMessage,
|
||||||
|
transitional.clarifyTimeoutError ? AxiosError.ETIMEDOUT : AxiosError.ECONNABORTED,
|
||||||
|
config,
|
||||||
|
request));
|
||||||
|
|
||||||
|
// Clean up request
|
||||||
|
request = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
// Remove Content-Type if data is undefined
|
||||||
|
requestData === undefined && requestHeaders.setContentType(null);
|
||||||
|
|
||||||
|
// Add headers to the request
|
||||||
|
if ('setRequestHeader' in request) {
|
||||||
|
utils.forEach(requestHeaders.toJSON(), function setRequestHeader(val, key) {
|
||||||
|
request.setRequestHeader(key, val);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add withCredentials to request if needed
|
||||||
|
if (!utils.isUndefined(_config.withCredentials)) {
|
||||||
|
request.withCredentials = !!_config.withCredentials;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add responseType to request if needed
|
||||||
|
if (responseType && responseType !== 'json') {
|
||||||
|
request.responseType = _config.responseType;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle progress if needed
|
||||||
|
if (onDownloadProgress) {
|
||||||
|
([downloadThrottled, flushDownload] = progressEventReducer(onDownloadProgress, true));
|
||||||
|
request.addEventListener('progress', downloadThrottled);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Not all browsers support upload events
|
||||||
|
if (onUploadProgress && request.upload) {
|
||||||
|
([uploadThrottled, flushUpload] = progressEventReducer(onUploadProgress));
|
||||||
|
|
||||||
|
request.upload.addEventListener('progress', uploadThrottled);
|
||||||
|
|
||||||
|
request.upload.addEventListener('loadend', flushUpload);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_config.cancelToken || _config.signal) {
|
||||||
|
// Handle cancellation
|
||||||
|
// eslint-disable-next-line func-names
|
||||||
|
onCanceled = cancel => {
|
||||||
|
if (!request) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
reject(!cancel || cancel.type ? new CanceledError(null, config, request) : cancel);
|
||||||
|
request.abort();
|
||||||
|
request = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
_config.cancelToken && _config.cancelToken.subscribe(onCanceled);
|
||||||
|
if (_config.signal) {
|
||||||
|
_config.signal.aborted ? onCanceled() : _config.signal.addEventListener('abort', onCanceled);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const protocol = parseProtocol(_config.url);
|
||||||
|
|
||||||
|
if (protocol && platform.protocols.indexOf(protocol) === -1) {
|
||||||
|
reject(new AxiosError('Unsupported protocol ' + protocol + ':', AxiosError.ERR_BAD_REQUEST, config));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Send the request
|
||||||
|
request.send(requestData || null);
|
||||||
|
});
|
||||||
|
}
|
89
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/axios.js
generated
vendored
Normal file
89
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/axios.js
generated
vendored
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
import utils from './utils.js';
|
||||||
|
import bind from './helpers/bind.js';
|
||||||
|
import Axios from './core/Axios.js';
|
||||||
|
import mergeConfig from './core/mergeConfig.js';
|
||||||
|
import defaults from './defaults/index.js';
|
||||||
|
import formDataToJSON from './helpers/formDataToJSON.js';
|
||||||
|
import CanceledError from './cancel/CanceledError.js';
|
||||||
|
import CancelToken from './cancel/CancelToken.js';
|
||||||
|
import isCancel from './cancel/isCancel.js';
|
||||||
|
import {VERSION} from './env/data.js';
|
||||||
|
import toFormData from './helpers/toFormData.js';
|
||||||
|
import AxiosError from './core/AxiosError.js';
|
||||||
|
import spread from './helpers/spread.js';
|
||||||
|
import isAxiosError from './helpers/isAxiosError.js';
|
||||||
|
import AxiosHeaders from "./core/AxiosHeaders.js";
|
||||||
|
import adapters from './adapters/adapters.js';
|
||||||
|
import HttpStatusCode from './helpers/HttpStatusCode.js';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an instance of Axios
|
||||||
|
*
|
||||||
|
* @param {Object} defaultConfig The default config for the instance
|
||||||
|
*
|
||||||
|
* @returns {Axios} A new instance of Axios
|
||||||
|
*/
|
||||||
|
function createInstance(defaultConfig) {
|
||||||
|
const context = new Axios(defaultConfig);
|
||||||
|
const instance = bind(Axios.prototype.request, context);
|
||||||
|
|
||||||
|
// Copy axios.prototype to instance
|
||||||
|
utils.extend(instance, Axios.prototype, context, {allOwnKeys: true});
|
||||||
|
|
||||||
|
// Copy context to instance
|
||||||
|
utils.extend(instance, context, null, {allOwnKeys: true});
|
||||||
|
|
||||||
|
// Factory for creating new instances
|
||||||
|
instance.create = function create(instanceConfig) {
|
||||||
|
return createInstance(mergeConfig(defaultConfig, instanceConfig));
|
||||||
|
};
|
||||||
|
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create the default instance to be exported
|
||||||
|
const axios = createInstance(defaults);
|
||||||
|
|
||||||
|
// Expose Axios class to allow class inheritance
|
||||||
|
axios.Axios = Axios;
|
||||||
|
|
||||||
|
// Expose Cancel & CancelToken
|
||||||
|
axios.CanceledError = CanceledError;
|
||||||
|
axios.CancelToken = CancelToken;
|
||||||
|
axios.isCancel = isCancel;
|
||||||
|
axios.VERSION = VERSION;
|
||||||
|
axios.toFormData = toFormData;
|
||||||
|
|
||||||
|
// Expose AxiosError class
|
||||||
|
axios.AxiosError = AxiosError;
|
||||||
|
|
||||||
|
// alias for CanceledError for backward compatibility
|
||||||
|
axios.Cancel = axios.CanceledError;
|
||||||
|
|
||||||
|
// Expose all/spread
|
||||||
|
axios.all = function all(promises) {
|
||||||
|
return Promise.all(promises);
|
||||||
|
};
|
||||||
|
|
||||||
|
axios.spread = spread;
|
||||||
|
|
||||||
|
// Expose isAxiosError
|
||||||
|
axios.isAxiosError = isAxiosError;
|
||||||
|
|
||||||
|
// Expose mergeConfig
|
||||||
|
axios.mergeConfig = mergeConfig;
|
||||||
|
|
||||||
|
axios.AxiosHeaders = AxiosHeaders;
|
||||||
|
|
||||||
|
axios.formToJSON = thing => formDataToJSON(utils.isHTMLForm(thing) ? new FormData(thing) : thing);
|
||||||
|
|
||||||
|
axios.getAdapter = adapters.getAdapter;
|
||||||
|
|
||||||
|
axios.HttpStatusCode = HttpStatusCode;
|
||||||
|
|
||||||
|
axios.default = axios;
|
||||||
|
|
||||||
|
// this module should only have a default export
|
||||||
|
export default axios
|
135
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/cancel/CancelToken.js
generated
vendored
Normal file
135
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/cancel/CancelToken.js
generated
vendored
Normal file
@ -0,0 +1,135 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
import CanceledError from './CanceledError.js';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A `CancelToken` is an object that can be used to request cancellation of an operation.
|
||||||
|
*
|
||||||
|
* @param {Function} executor The executor function.
|
||||||
|
*
|
||||||
|
* @returns {CancelToken}
|
||||||
|
*/
|
||||||
|
class CancelToken {
|
||||||
|
constructor(executor) {
|
||||||
|
if (typeof executor !== 'function') {
|
||||||
|
throw new TypeError('executor must be a function.');
|
||||||
|
}
|
||||||
|
|
||||||
|
let resolvePromise;
|
||||||
|
|
||||||
|
this.promise = new Promise(function promiseExecutor(resolve) {
|
||||||
|
resolvePromise = resolve;
|
||||||
|
});
|
||||||
|
|
||||||
|
const token = this;
|
||||||
|
|
||||||
|
// eslint-disable-next-line func-names
|
||||||
|
this.promise.then(cancel => {
|
||||||
|
if (!token._listeners) return;
|
||||||
|
|
||||||
|
let i = token._listeners.length;
|
||||||
|
|
||||||
|
while (i-- > 0) {
|
||||||
|
token._listeners[i](cancel);
|
||||||
|
}
|
||||||
|
token._listeners = null;
|
||||||
|
});
|
||||||
|
|
||||||
|
// eslint-disable-next-line func-names
|
||||||
|
this.promise.then = onfulfilled => {
|
||||||
|
let _resolve;
|
||||||
|
// eslint-disable-next-line func-names
|
||||||
|
const promise = new Promise(resolve => {
|
||||||
|
token.subscribe(resolve);
|
||||||
|
_resolve = resolve;
|
||||||
|
}).then(onfulfilled);
|
||||||
|
|
||||||
|
promise.cancel = function reject() {
|
||||||
|
token.unsubscribe(_resolve);
|
||||||
|
};
|
||||||
|
|
||||||
|
return promise;
|
||||||
|
};
|
||||||
|
|
||||||
|
executor(function cancel(message, config, request) {
|
||||||
|
if (token.reason) {
|
||||||
|
// Cancellation has already been requested
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
token.reason = new CanceledError(message, config, request);
|
||||||
|
resolvePromise(token.reason);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Throws a `CanceledError` if cancellation has been requested.
|
||||||
|
*/
|
||||||
|
throwIfRequested() {
|
||||||
|
if (this.reason) {
|
||||||
|
throw this.reason;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Subscribe to the cancel signal
|
||||||
|
*/
|
||||||
|
|
||||||
|
subscribe(listener) {
|
||||||
|
if (this.reason) {
|
||||||
|
listener(this.reason);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this._listeners) {
|
||||||
|
this._listeners.push(listener);
|
||||||
|
} else {
|
||||||
|
this._listeners = [listener];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unsubscribe from the cancel signal
|
||||||
|
*/
|
||||||
|
|
||||||
|
unsubscribe(listener) {
|
||||||
|
if (!this._listeners) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const index = this._listeners.indexOf(listener);
|
||||||
|
if (index !== -1) {
|
||||||
|
this._listeners.splice(index, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
toAbortSignal() {
|
||||||
|
const controller = new AbortController();
|
||||||
|
|
||||||
|
const abort = (err) => {
|
||||||
|
controller.abort(err);
|
||||||
|
};
|
||||||
|
|
||||||
|
this.subscribe(abort);
|
||||||
|
|
||||||
|
controller.signal.unsubscribe = () => this.unsubscribe(abort);
|
||||||
|
|
||||||
|
return controller.signal;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns an object that contains a new `CancelToken` and a function that, when called,
|
||||||
|
* cancels the `CancelToken`.
|
||||||
|
*/
|
||||||
|
static source() {
|
||||||
|
let cancel;
|
||||||
|
const token = new CancelToken(function executor(c) {
|
||||||
|
cancel = c;
|
||||||
|
});
|
||||||
|
return {
|
||||||
|
token,
|
||||||
|
cancel
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default CancelToken;
|
25
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/cancel/CanceledError.js
generated
vendored
Normal file
25
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/cancel/CanceledError.js
generated
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
import AxiosError from '../core/AxiosError.js';
|
||||||
|
import utils from '../utils.js';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A `CanceledError` is an object that is thrown when an operation is canceled.
|
||||||
|
*
|
||||||
|
* @param {string=} message The message.
|
||||||
|
* @param {Object=} config The config.
|
||||||
|
* @param {Object=} request The request.
|
||||||
|
*
|
||||||
|
* @returns {CanceledError} The created error.
|
||||||
|
*/
|
||||||
|
function CanceledError(message, config, request) {
|
||||||
|
// eslint-disable-next-line no-eq-null,eqeqeq
|
||||||
|
AxiosError.call(this, message == null ? 'canceled' : message, AxiosError.ERR_CANCELED, config, request);
|
||||||
|
this.name = 'CanceledError';
|
||||||
|
}
|
||||||
|
|
||||||
|
utils.inherits(CanceledError, AxiosError, {
|
||||||
|
__CANCEL__: true
|
||||||
|
});
|
||||||
|
|
||||||
|
export default CanceledError;
|
5
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/cancel/isCancel.js
generated
vendored
Normal file
5
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/cancel/isCancel.js
generated
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
export default function isCancel(value) {
|
||||||
|
return !!(value && value.__CANCEL__);
|
||||||
|
}
|
242
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/Axios.js
generated
vendored
Normal file
242
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/Axios.js
generated
vendored
Normal file
@ -0,0 +1,242 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
import utils from './../utils.js';
|
||||||
|
import buildURL from '../helpers/buildURL.js';
|
||||||
|
import InterceptorManager from './InterceptorManager.js';
|
||||||
|
import dispatchRequest from './dispatchRequest.js';
|
||||||
|
import mergeConfig from './mergeConfig.js';
|
||||||
|
import buildFullPath from './buildFullPath.js';
|
||||||
|
import validator from '../helpers/validator.js';
|
||||||
|
import AxiosHeaders from './AxiosHeaders.js';
|
||||||
|
|
||||||
|
const validators = validator.validators;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new instance of Axios
|
||||||
|
*
|
||||||
|
* @param {Object} instanceConfig The default config for the instance
|
||||||
|
*
|
||||||
|
* @return {Axios} A new instance of Axios
|
||||||
|
*/
|
||||||
|
class Axios {
|
||||||
|
constructor(instanceConfig) {
|
||||||
|
this.defaults = instanceConfig || {};
|
||||||
|
this.interceptors = {
|
||||||
|
request: new InterceptorManager(),
|
||||||
|
response: new InterceptorManager()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dispatch a request
|
||||||
|
*
|
||||||
|
* @param {String|Object} configOrUrl The config specific for this request (merged with this.defaults)
|
||||||
|
* @param {?Object} config
|
||||||
|
*
|
||||||
|
* @returns {Promise} The Promise to be fulfilled
|
||||||
|
*/
|
||||||
|
async request(configOrUrl, config) {
|
||||||
|
try {
|
||||||
|
return await this._request(configOrUrl, config);
|
||||||
|
} catch (err) {
|
||||||
|
if (err instanceof Error) {
|
||||||
|
let dummy = {};
|
||||||
|
|
||||||
|
Error.captureStackTrace ? Error.captureStackTrace(dummy) : (dummy = new Error());
|
||||||
|
|
||||||
|
// slice off the Error: ... line
|
||||||
|
const stack = dummy.stack ? dummy.stack.replace(/^.+\n/, '') : '';
|
||||||
|
try {
|
||||||
|
if (!err.stack) {
|
||||||
|
err.stack = stack;
|
||||||
|
// match without the 2 top stack lines
|
||||||
|
} else if (stack && !String(err.stack).endsWith(stack.replace(/^.+\n.+\n/, ''))) {
|
||||||
|
err.stack += '\n' + stack
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
// ignore the case where "stack" is an un-writable property
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_request(configOrUrl, config) {
|
||||||
|
/*eslint no-param-reassign:0*/
|
||||||
|
// Allow for axios('example/url'[, config]) a la fetch API
|
||||||
|
if (typeof configOrUrl === 'string') {
|
||||||
|
config = config || {};
|
||||||
|
config.url = configOrUrl;
|
||||||
|
} else {
|
||||||
|
config = configOrUrl || {};
|
||||||
|
}
|
||||||
|
|
||||||
|
config = mergeConfig(this.defaults, config);
|
||||||
|
|
||||||
|
const {transitional, paramsSerializer, headers} = config;
|
||||||
|
|
||||||
|
if (transitional !== undefined) {
|
||||||
|
validator.assertOptions(transitional, {
|
||||||
|
silentJSONParsing: validators.transitional(validators.boolean),
|
||||||
|
forcedJSONParsing: validators.transitional(validators.boolean),
|
||||||
|
clarifyTimeoutError: validators.transitional(validators.boolean)
|
||||||
|
}, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (paramsSerializer != null) {
|
||||||
|
if (utils.isFunction(paramsSerializer)) {
|
||||||
|
config.paramsSerializer = {
|
||||||
|
serialize: paramsSerializer
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
validator.assertOptions(paramsSerializer, {
|
||||||
|
encode: validators.function,
|
||||||
|
serialize: validators.function
|
||||||
|
}, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set config.allowAbsoluteUrls
|
||||||
|
if (config.allowAbsoluteUrls !== undefined) {
|
||||||
|
// do nothing
|
||||||
|
} else if (this.defaults.allowAbsoluteUrls !== undefined) {
|
||||||
|
config.allowAbsoluteUrls = this.defaults.allowAbsoluteUrls;
|
||||||
|
} else {
|
||||||
|
config.allowAbsoluteUrls = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
validator.assertOptions(config, {
|
||||||
|
baseUrl: validators.spelling('baseURL'),
|
||||||
|
withXsrfToken: validators.spelling('withXSRFToken')
|
||||||
|
}, true);
|
||||||
|
|
||||||
|
// Set config.method
|
||||||
|
config.method = (config.method || this.defaults.method || 'get').toLowerCase();
|
||||||
|
|
||||||
|
// Flatten headers
|
||||||
|
let contextHeaders = headers && utils.merge(
|
||||||
|
headers.common,
|
||||||
|
headers[config.method]
|
||||||
|
);
|
||||||
|
|
||||||
|
headers && utils.forEach(
|
||||||
|
['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],
|
||||||
|
(method) => {
|
||||||
|
delete headers[method];
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
config.headers = AxiosHeaders.concat(contextHeaders, headers);
|
||||||
|
|
||||||
|
// filter out skipped interceptors
|
||||||
|
const requestInterceptorChain = [];
|
||||||
|
let synchronousRequestInterceptors = true;
|
||||||
|
this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {
|
||||||
|
if (typeof interceptor.runWhen === 'function' && interceptor.runWhen(config) === false) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
synchronousRequestInterceptors = synchronousRequestInterceptors && interceptor.synchronous;
|
||||||
|
|
||||||
|
requestInterceptorChain.unshift(interceptor.fulfilled, interceptor.rejected);
|
||||||
|
});
|
||||||
|
|
||||||
|
const responseInterceptorChain = [];
|
||||||
|
this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {
|
||||||
|
responseInterceptorChain.push(interceptor.fulfilled, interceptor.rejected);
|
||||||
|
});
|
||||||
|
|
||||||
|
let promise;
|
||||||
|
let i = 0;
|
||||||
|
let len;
|
||||||
|
|
||||||
|
if (!synchronousRequestInterceptors) {
|
||||||
|
const chain = [dispatchRequest.bind(this), undefined];
|
||||||
|
chain.unshift.apply(chain, requestInterceptorChain);
|
||||||
|
chain.push.apply(chain, responseInterceptorChain);
|
||||||
|
len = chain.length;
|
||||||
|
|
||||||
|
promise = Promise.resolve(config);
|
||||||
|
|
||||||
|
while (i < len) {
|
||||||
|
promise = promise.then(chain[i++], chain[i++]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return promise;
|
||||||
|
}
|
||||||
|
|
||||||
|
len = requestInterceptorChain.length;
|
||||||
|
|
||||||
|
let newConfig = config;
|
||||||
|
|
||||||
|
i = 0;
|
||||||
|
|
||||||
|
while (i < len) {
|
||||||
|
const onFulfilled = requestInterceptorChain[i++];
|
||||||
|
const onRejected = requestInterceptorChain[i++];
|
||||||
|
try {
|
||||||
|
newConfig = onFulfilled(newConfig);
|
||||||
|
} catch (error) {
|
||||||
|
onRejected.call(this, error);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
promise = dispatchRequest.call(this, newConfig);
|
||||||
|
} catch (error) {
|
||||||
|
return Promise.reject(error);
|
||||||
|
}
|
||||||
|
|
||||||
|
i = 0;
|
||||||
|
len = responseInterceptorChain.length;
|
||||||
|
|
||||||
|
while (i < len) {
|
||||||
|
promise = promise.then(responseInterceptorChain[i++], responseInterceptorChain[i++]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return promise;
|
||||||
|
}
|
||||||
|
|
||||||
|
getUri(config) {
|
||||||
|
config = mergeConfig(this.defaults, config);
|
||||||
|
const fullPath = buildFullPath(config.baseURL, config.url, config.allowAbsoluteUrls);
|
||||||
|
return buildURL(fullPath, config.params, config.paramsSerializer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Provide aliases for supported request methods
|
||||||
|
utils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {
|
||||||
|
/*eslint func-names:0*/
|
||||||
|
Axios.prototype[method] = function(url, config) {
|
||||||
|
return this.request(mergeConfig(config || {}, {
|
||||||
|
method,
|
||||||
|
url,
|
||||||
|
data: (config || {}).data
|
||||||
|
}));
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
||||||
|
/*eslint func-names:0*/
|
||||||
|
|
||||||
|
function generateHTTPMethod(isForm) {
|
||||||
|
return function httpMethod(url, data, config) {
|
||||||
|
return this.request(mergeConfig(config || {}, {
|
||||||
|
method,
|
||||||
|
headers: isForm ? {
|
||||||
|
'Content-Type': 'multipart/form-data'
|
||||||
|
} : {},
|
||||||
|
url,
|
||||||
|
data
|
||||||
|
}));
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
Axios.prototype[method] = generateHTTPMethod();
|
||||||
|
|
||||||
|
Axios.prototype[method + 'Form'] = generateHTTPMethod(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
export default Axios;
|
103
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/AxiosError.js
generated
vendored
Normal file
103
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/AxiosError.js
generated
vendored
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
import utils from '../utils.js';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an Error with the specified message, config, error code, request and response.
|
||||||
|
*
|
||||||
|
* @param {string} message The error message.
|
||||||
|
* @param {string} [code] The error code (for example, 'ECONNABORTED').
|
||||||
|
* @param {Object} [config] The config.
|
||||||
|
* @param {Object} [request] The request.
|
||||||
|
* @param {Object} [response] The response.
|
||||||
|
*
|
||||||
|
* @returns {Error} The created error.
|
||||||
|
*/
|
||||||
|
function AxiosError(message, code, config, request, response) {
|
||||||
|
Error.call(this);
|
||||||
|
|
||||||
|
if (Error.captureStackTrace) {
|
||||||
|
Error.captureStackTrace(this, this.constructor);
|
||||||
|
} else {
|
||||||
|
this.stack = (new Error()).stack;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.message = message;
|
||||||
|
this.name = 'AxiosError';
|
||||||
|
code && (this.code = code);
|
||||||
|
config && (this.config = config);
|
||||||
|
request && (this.request = request);
|
||||||
|
if (response) {
|
||||||
|
this.response = response;
|
||||||
|
this.status = response.status ? response.status : null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
utils.inherits(AxiosError, Error, {
|
||||||
|
toJSON: function toJSON() {
|
||||||
|
return {
|
||||||
|
// Standard
|
||||||
|
message: this.message,
|
||||||
|
name: this.name,
|
||||||
|
// Microsoft
|
||||||
|
description: this.description,
|
||||||
|
number: this.number,
|
||||||
|
// Mozilla
|
||||||
|
fileName: this.fileName,
|
||||||
|
lineNumber: this.lineNumber,
|
||||||
|
columnNumber: this.columnNumber,
|
||||||
|
stack: this.stack,
|
||||||
|
// Axios
|
||||||
|
config: utils.toJSONObject(this.config),
|
||||||
|
code: this.code,
|
||||||
|
status: this.status
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const prototype = AxiosError.prototype;
|
||||||
|
const descriptors = {};
|
||||||
|
|
||||||
|
[
|
||||||
|
'ERR_BAD_OPTION_VALUE',
|
||||||
|
'ERR_BAD_OPTION',
|
||||||
|
'ECONNABORTED',
|
||||||
|
'ETIMEDOUT',
|
||||||
|
'ERR_NETWORK',
|
||||||
|
'ERR_FR_TOO_MANY_REDIRECTS',
|
||||||
|
'ERR_DEPRECATED',
|
||||||
|
'ERR_BAD_RESPONSE',
|
||||||
|
'ERR_BAD_REQUEST',
|
||||||
|
'ERR_CANCELED',
|
||||||
|
'ERR_NOT_SUPPORT',
|
||||||
|
'ERR_INVALID_URL'
|
||||||
|
// eslint-disable-next-line func-names
|
||||||
|
].forEach(code => {
|
||||||
|
descriptors[code] = {value: code};
|
||||||
|
});
|
||||||
|
|
||||||
|
Object.defineProperties(AxiosError, descriptors);
|
||||||
|
Object.defineProperty(prototype, 'isAxiosError', {value: true});
|
||||||
|
|
||||||
|
// eslint-disable-next-line func-names
|
||||||
|
AxiosError.from = (error, code, config, request, response, customProps) => {
|
||||||
|
const axiosError = Object.create(prototype);
|
||||||
|
|
||||||
|
utils.toFlatObject(error, axiosError, function filter(obj) {
|
||||||
|
return obj !== Error.prototype;
|
||||||
|
}, prop => {
|
||||||
|
return prop !== 'isAxiosError';
|
||||||
|
});
|
||||||
|
|
||||||
|
AxiosError.call(axiosError, error.message, code, config, request, response);
|
||||||
|
|
||||||
|
axiosError.cause = error;
|
||||||
|
|
||||||
|
axiosError.name = error.name;
|
||||||
|
|
||||||
|
customProps && Object.assign(axiosError, customProps);
|
||||||
|
|
||||||
|
return axiosError;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default AxiosError;
|
314
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/AxiosHeaders.js
generated
vendored
Normal file
314
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/AxiosHeaders.js
generated
vendored
Normal file
@ -0,0 +1,314 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
import utils from '../utils.js';
|
||||||
|
import parseHeaders from '../helpers/parseHeaders.js';
|
||||||
|
|
||||||
|
const $internals = Symbol('internals');
|
||||||
|
|
||||||
|
function normalizeHeader(header) {
|
||||||
|
return header && String(header).trim().toLowerCase();
|
||||||
|
}
|
||||||
|
|
||||||
|
function normalizeValue(value) {
|
||||||
|
if (value === false || value == null) {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
return utils.isArray(value) ? value.map(normalizeValue) : String(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
function parseTokens(str) {
|
||||||
|
const tokens = Object.create(null);
|
||||||
|
const tokensRE = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
|
||||||
|
let match;
|
||||||
|
|
||||||
|
while ((match = tokensRE.exec(str))) {
|
||||||
|
tokens[match[1]] = match[2];
|
||||||
|
}
|
||||||
|
|
||||||
|
return tokens;
|
||||||
|
}
|
||||||
|
|
||||||
|
const isValidHeaderName = (str) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(str.trim());
|
||||||
|
|
||||||
|
function matchHeaderValue(context, value, header, filter, isHeaderNameFilter) {
|
||||||
|
if (utils.isFunction(filter)) {
|
||||||
|
return filter.call(this, value, header);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isHeaderNameFilter) {
|
||||||
|
value = header;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!utils.isString(value)) return;
|
||||||
|
|
||||||
|
if (utils.isString(filter)) {
|
||||||
|
return value.indexOf(filter) !== -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (utils.isRegExp(filter)) {
|
||||||
|
return filter.test(value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatHeader(header) {
|
||||||
|
return header.trim()
|
||||||
|
.toLowerCase().replace(/([a-z\d])(\w*)/g, (w, char, str) => {
|
||||||
|
return char.toUpperCase() + str;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function buildAccessors(obj, header) {
|
||||||
|
const accessorName = utils.toCamelCase(' ' + header);
|
||||||
|
|
||||||
|
['get', 'set', 'has'].forEach(methodName => {
|
||||||
|
Object.defineProperty(obj, methodName + accessorName, {
|
||||||
|
value: function(arg1, arg2, arg3) {
|
||||||
|
return this[methodName].call(this, header, arg1, arg2, arg3);
|
||||||
|
},
|
||||||
|
configurable: true
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
class AxiosHeaders {
|
||||||
|
constructor(headers) {
|
||||||
|
headers && this.set(headers);
|
||||||
|
}
|
||||||
|
|
||||||
|
set(header, valueOrRewrite, rewrite) {
|
||||||
|
const self = this;
|
||||||
|
|
||||||
|
function setHeader(_value, _header, _rewrite) {
|
||||||
|
const lHeader = normalizeHeader(_header);
|
||||||
|
|
||||||
|
if (!lHeader) {
|
||||||
|
throw new Error('header name must be a non-empty string');
|
||||||
|
}
|
||||||
|
|
||||||
|
const key = utils.findKey(self, lHeader);
|
||||||
|
|
||||||
|
if(!key || self[key] === undefined || _rewrite === true || (_rewrite === undefined && self[key] !== false)) {
|
||||||
|
self[key || _header] = normalizeValue(_value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const setHeaders = (headers, _rewrite) =>
|
||||||
|
utils.forEach(headers, (_value, _header) => setHeader(_value, _header, _rewrite));
|
||||||
|
|
||||||
|
if (utils.isPlainObject(header) || header instanceof this.constructor) {
|
||||||
|
setHeaders(header, valueOrRewrite)
|
||||||
|
} else if(utils.isString(header) && (header = header.trim()) && !isValidHeaderName(header)) {
|
||||||
|
setHeaders(parseHeaders(header), valueOrRewrite);
|
||||||
|
} else if (utils.isObject(header) && utils.isIterable(header)) {
|
||||||
|
let obj = {}, dest, key;
|
||||||
|
for (const entry of header) {
|
||||||
|
if (!utils.isArray(entry)) {
|
||||||
|
throw TypeError('Object iterator must return a key-value pair');
|
||||||
|
}
|
||||||
|
|
||||||
|
obj[key = entry[0]] = (dest = obj[key]) ?
|
||||||
|
(utils.isArray(dest) ? [...dest, entry[1]] : [dest, entry[1]]) : entry[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
setHeaders(obj, valueOrRewrite)
|
||||||
|
} else {
|
||||||
|
header != null && setHeader(valueOrRewrite, header, rewrite);
|
||||||
|
}
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
get(header, parser) {
|
||||||
|
header = normalizeHeader(header);
|
||||||
|
|
||||||
|
if (header) {
|
||||||
|
const key = utils.findKey(this, header);
|
||||||
|
|
||||||
|
if (key) {
|
||||||
|
const value = this[key];
|
||||||
|
|
||||||
|
if (!parser) {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (parser === true) {
|
||||||
|
return parseTokens(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (utils.isFunction(parser)) {
|
||||||
|
return parser.call(this, value, key);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (utils.isRegExp(parser)) {
|
||||||
|
return parser.exec(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new TypeError('parser must be boolean|regexp|function');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
has(header, matcher) {
|
||||||
|
header = normalizeHeader(header);
|
||||||
|
|
||||||
|
if (header) {
|
||||||
|
const key = utils.findKey(this, header);
|
||||||
|
|
||||||
|
return !!(key && this[key] !== undefined && (!matcher || matchHeaderValue(this, this[key], key, matcher)));
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
delete(header, matcher) {
|
||||||
|
const self = this;
|
||||||
|
let deleted = false;
|
||||||
|
|
||||||
|
function deleteHeader(_header) {
|
||||||
|
_header = normalizeHeader(_header);
|
||||||
|
|
||||||
|
if (_header) {
|
||||||
|
const key = utils.findKey(self, _header);
|
||||||
|
|
||||||
|
if (key && (!matcher || matchHeaderValue(self, self[key], key, matcher))) {
|
||||||
|
delete self[key];
|
||||||
|
|
||||||
|
deleted = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (utils.isArray(header)) {
|
||||||
|
header.forEach(deleteHeader);
|
||||||
|
} else {
|
||||||
|
deleteHeader(header);
|
||||||
|
}
|
||||||
|
|
||||||
|
return deleted;
|
||||||
|
}
|
||||||
|
|
||||||
|
clear(matcher) {
|
||||||
|
const keys = Object.keys(this);
|
||||||
|
let i = keys.length;
|
||||||
|
let deleted = false;
|
||||||
|
|
||||||
|
while (i--) {
|
||||||
|
const key = keys[i];
|
||||||
|
if(!matcher || matchHeaderValue(this, this[key], key, matcher, true)) {
|
||||||
|
delete this[key];
|
||||||
|
deleted = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return deleted;
|
||||||
|
}
|
||||||
|
|
||||||
|
normalize(format) {
|
||||||
|
const self = this;
|
||||||
|
const headers = {};
|
||||||
|
|
||||||
|
utils.forEach(this, (value, header) => {
|
||||||
|
const key = utils.findKey(headers, header);
|
||||||
|
|
||||||
|
if (key) {
|
||||||
|
self[key] = normalizeValue(value);
|
||||||
|
delete self[header];
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const normalized = format ? formatHeader(header) : String(header).trim();
|
||||||
|
|
||||||
|
if (normalized !== header) {
|
||||||
|
delete self[header];
|
||||||
|
}
|
||||||
|
|
||||||
|
self[normalized] = normalizeValue(value);
|
||||||
|
|
||||||
|
headers[normalized] = true;
|
||||||
|
});
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
concat(...targets) {
|
||||||
|
return this.constructor.concat(this, ...targets);
|
||||||
|
}
|
||||||
|
|
||||||
|
toJSON(asStrings) {
|
||||||
|
const obj = Object.create(null);
|
||||||
|
|
||||||
|
utils.forEach(this, (value, header) => {
|
||||||
|
value != null && value !== false && (obj[header] = asStrings && utils.isArray(value) ? value.join(', ') : value);
|
||||||
|
});
|
||||||
|
|
||||||
|
return obj;
|
||||||
|
}
|
||||||
|
|
||||||
|
[Symbol.iterator]() {
|
||||||
|
return Object.entries(this.toJSON())[Symbol.iterator]();
|
||||||
|
}
|
||||||
|
|
||||||
|
toString() {
|
||||||
|
return Object.entries(this.toJSON()).map(([header, value]) => header + ': ' + value).join('\n');
|
||||||
|
}
|
||||||
|
|
||||||
|
getSetCookie() {
|
||||||
|
return this.get("set-cookie") || [];
|
||||||
|
}
|
||||||
|
|
||||||
|
get [Symbol.toStringTag]() {
|
||||||
|
return 'AxiosHeaders';
|
||||||
|
}
|
||||||
|
|
||||||
|
static from(thing) {
|
||||||
|
return thing instanceof this ? thing : new this(thing);
|
||||||
|
}
|
||||||
|
|
||||||
|
static concat(first, ...targets) {
|
||||||
|
const computed = new this(first);
|
||||||
|
|
||||||
|
targets.forEach((target) => computed.set(target));
|
||||||
|
|
||||||
|
return computed;
|
||||||
|
}
|
||||||
|
|
||||||
|
static accessor(header) {
|
||||||
|
const internals = this[$internals] = (this[$internals] = {
|
||||||
|
accessors: {}
|
||||||
|
});
|
||||||
|
|
||||||
|
const accessors = internals.accessors;
|
||||||
|
const prototype = this.prototype;
|
||||||
|
|
||||||
|
function defineAccessor(_header) {
|
||||||
|
const lHeader = normalizeHeader(_header);
|
||||||
|
|
||||||
|
if (!accessors[lHeader]) {
|
||||||
|
buildAccessors(prototype, _header);
|
||||||
|
accessors[lHeader] = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
utils.isArray(header) ? header.forEach(defineAccessor) : defineAccessor(header);
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
AxiosHeaders.accessor(['Content-Type', 'Content-Length', 'Accept', 'Accept-Encoding', 'User-Agent', 'Authorization']);
|
||||||
|
|
||||||
|
// reserved names hotfix
|
||||||
|
utils.reduceDescriptors(AxiosHeaders.prototype, ({value}, key) => {
|
||||||
|
let mapped = key[0].toUpperCase() + key.slice(1); // map `set` => `Set`
|
||||||
|
return {
|
||||||
|
get: () => value,
|
||||||
|
set(headerValue) {
|
||||||
|
this[mapped] = headerValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
utils.freezeMethods(AxiosHeaders);
|
||||||
|
|
||||||
|
export default AxiosHeaders;
|
71
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/InterceptorManager.js
generated
vendored
Normal file
71
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/InterceptorManager.js
generated
vendored
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
import utils from './../utils.js';
|
||||||
|
|
||||||
|
class InterceptorManager {
|
||||||
|
constructor() {
|
||||||
|
this.handlers = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add a new interceptor to the stack
|
||||||
|
*
|
||||||
|
* @param {Function} fulfilled The function to handle `then` for a `Promise`
|
||||||
|
* @param {Function} rejected The function to handle `reject` for a `Promise`
|
||||||
|
*
|
||||||
|
* @return {Number} An ID used to remove interceptor later
|
||||||
|
*/
|
||||||
|
use(fulfilled, rejected, options) {
|
||||||
|
this.handlers.push({
|
||||||
|
fulfilled,
|
||||||
|
rejected,
|
||||||
|
synchronous: options ? options.synchronous : false,
|
||||||
|
runWhen: options ? options.runWhen : null
|
||||||
|
});
|
||||||
|
return this.handlers.length - 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove an interceptor from the stack
|
||||||
|
*
|
||||||
|
* @param {Number} id The ID that was returned by `use`
|
||||||
|
*
|
||||||
|
* @returns {Boolean} `true` if the interceptor was removed, `false` otherwise
|
||||||
|
*/
|
||||||
|
eject(id) {
|
||||||
|
if (this.handlers[id]) {
|
||||||
|
this.handlers[id] = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clear all interceptors from the stack
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
|
*/
|
||||||
|
clear() {
|
||||||
|
if (this.handlers) {
|
||||||
|
this.handlers = [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Iterate over all the registered interceptors
|
||||||
|
*
|
||||||
|
* This method is particularly useful for skipping over any
|
||||||
|
* interceptors that may have become `null` calling `eject`.
|
||||||
|
*
|
||||||
|
* @param {Function} fn The function to call for each interceptor
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
|
*/
|
||||||
|
forEach(fn) {
|
||||||
|
utils.forEach(this.handlers, function forEachHandler(h) {
|
||||||
|
if (h !== null) {
|
||||||
|
fn(h);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default InterceptorManager;
|
8
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/README.md
generated
vendored
Normal file
8
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/README.md
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# axios // core
|
||||||
|
|
||||||
|
The modules found in `core/` should be modules that are specific to the domain logic of axios. These modules would most likely not make sense to be consumed outside of the axios module, as their logic is too specific. Some examples of core modules are:
|
||||||
|
|
||||||
|
- Dispatching requests
|
||||||
|
- Requests sent via `adapters/` (see lib/adapters/README.md)
|
||||||
|
- Managing interceptors
|
||||||
|
- Handling config
|
22
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/buildFullPath.js
generated
vendored
Normal file
22
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/buildFullPath.js
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
import isAbsoluteURL from '../helpers/isAbsoluteURL.js';
|
||||||
|
import combineURLs from '../helpers/combineURLs.js';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new URL by combining the baseURL with the requestedURL,
|
||||||
|
* only when the requestedURL is not already an absolute URL.
|
||||||
|
* If the requestURL is absolute, this function returns the requestedURL untouched.
|
||||||
|
*
|
||||||
|
* @param {string} baseURL The base URL
|
||||||
|
* @param {string} requestedURL Absolute or relative URL to combine
|
||||||
|
*
|
||||||
|
* @returns {string} The combined full path
|
||||||
|
*/
|
||||||
|
export default function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
|
||||||
|
let isRelativeUrl = !isAbsoluteURL(requestedURL);
|
||||||
|
if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
|
||||||
|
return combineURLs(baseURL, requestedURL);
|
||||||
|
}
|
||||||
|
return requestedURL;
|
||||||
|
}
|
81
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/dispatchRequest.js
generated
vendored
Normal file
81
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/dispatchRequest.js
generated
vendored
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
import transformData from './transformData.js';
|
||||||
|
import isCancel from '../cancel/isCancel.js';
|
||||||
|
import defaults from '../defaults/index.js';
|
||||||
|
import CanceledError from '../cancel/CanceledError.js';
|
||||||
|
import AxiosHeaders from '../core/AxiosHeaders.js';
|
||||||
|
import adapters from "../adapters/adapters.js";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Throws a `CanceledError` if cancellation has been requested.
|
||||||
|
*
|
||||||
|
* @param {Object} config The config that is to be used for the request
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
|
*/
|
||||||
|
function throwIfCancellationRequested(config) {
|
||||||
|
if (config.cancelToken) {
|
||||||
|
config.cancelToken.throwIfRequested();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (config.signal && config.signal.aborted) {
|
||||||
|
throw new CanceledError(null, config);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Dispatch a request to the server using the configured adapter.
|
||||||
|
*
|
||||||
|
* @param {object} config The config that is to be used for the request
|
||||||
|
*
|
||||||
|
* @returns {Promise} The Promise to be fulfilled
|
||||||
|
*/
|
||||||
|
export default function dispatchRequest(config) {
|
||||||
|
throwIfCancellationRequested(config);
|
||||||
|
|
||||||
|
config.headers = AxiosHeaders.from(config.headers);
|
||||||
|
|
||||||
|
// Transform request data
|
||||||
|
config.data = transformData.call(
|
||||||
|
config,
|
||||||
|
config.transformRequest
|
||||||
|
);
|
||||||
|
|
||||||
|
if (['post', 'put', 'patch'].indexOf(config.method) !== -1) {
|
||||||
|
config.headers.setContentType('application/x-www-form-urlencoded', false);
|
||||||
|
}
|
||||||
|
|
||||||
|
const adapter = adapters.getAdapter(config.adapter || defaults.adapter);
|
||||||
|
|
||||||
|
return adapter(config).then(function onAdapterResolution(response) {
|
||||||
|
throwIfCancellationRequested(config);
|
||||||
|
|
||||||
|
// Transform response data
|
||||||
|
response.data = transformData.call(
|
||||||
|
config,
|
||||||
|
config.transformResponse,
|
||||||
|
response
|
||||||
|
);
|
||||||
|
|
||||||
|
response.headers = AxiosHeaders.from(response.headers);
|
||||||
|
|
||||||
|
return response;
|
||||||
|
}, function onAdapterRejection(reason) {
|
||||||
|
if (!isCancel(reason)) {
|
||||||
|
throwIfCancellationRequested(config);
|
||||||
|
|
||||||
|
// Transform response data
|
||||||
|
if (reason && reason.response) {
|
||||||
|
reason.response.data = transformData.call(
|
||||||
|
config,
|
||||||
|
config.transformResponse,
|
||||||
|
reason.response
|
||||||
|
);
|
||||||
|
reason.response.headers = AxiosHeaders.from(reason.response.headers);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return Promise.reject(reason);
|
||||||
|
});
|
||||||
|
}
|
106
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/mergeConfig.js
generated
vendored
Normal file
106
node_modules/.pnpm/axios@1.9.0/node_modules/axios/lib/core/mergeConfig.js
generated
vendored
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
import utils from '../utils.js';
|
||||||
|
import AxiosHeaders from "./AxiosHeaders.js";
|
||||||
|
|
||||||
|
const headersToObject = (thing) => thing instanceof AxiosHeaders ? { ...thing } : thing;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Config-specific merge-function which creates a new config-object
|
||||||
|
* by merging two configuration objects together.
|
||||||
|
*
|
||||||
|
* @param {Object} config1
|
||||||
|
* @param {Object} config2
|
||||||
|
*
|
||||||
|
* @returns {Object} New object resulting from merging config2 to config1
|
||||||
|
*/
|
||||||
|
export default function mergeConfig(config1, config2) {
|
||||||
|
// eslint-disable-next-line no-param-reassign
|
||||||
|
config2 = config2 || {};
|
||||||
|
const config = {};
|
||||||
|
|
||||||
|
function getMergedValue(target, source, prop, caseless) {
|
||||||
|
if (utils.isPlainObject(target) && utils.isPlainObject(source)) {
|
||||||
|
return utils.merge.call({caseless}, target, source);
|
||||||
|
} else if (utils.isPlainObject(source)) {
|
||||||
|
return utils.merge({}, source);
|
||||||
|
} else if (utils.isArray(source)) {
|
||||||
|
return source.slice();
|
||||||
|
}
|
||||||
|
return source;
|
||||||
|
}
|
||||||
|
|
||||||
|
// eslint-disable-next-line consistent-return
|
||||||
|
function mergeDeepProperties(a, b, prop , caseless) {
|
||||||
|
if (!utils.isUndefined(b)) {
|
||||||
|
return getMergedValue(a, b, prop , caseless);
|
||||||
|
} else if (!utils.isUndefined(a)) {
|
||||||
|
return getMergedValue(undefined, a, prop , caseless);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// eslint-disable-next-line consistent-return
|
||||||
|
function valueFromConfig2(a, b) {
|
||||||
|
if (!utils.isUndefined(b)) {
|
||||||
|
return getMergedValue(undefined, b);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// eslint-disable-next-line consistent-return
|
||||||
|
function defaultToConfig2(a, b) {
|
||||||
|
if (!utils.isUndefined(b)) {
|
||||||
|
return getMergedValue(undefined, b);
|
||||||
|
} else if (!utils.isUndefined(a)) {
|
||||||
|
return getMergedValue(undefined, a);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// eslint-disable-next-line consistent-return
|
||||||
|
function mergeDirectKeys(a, b, prop) {
|
||||||
|
if (prop in config2) {
|
||||||
|
return getMergedValue(a, b);
|
||||||
|
} else if (prop in config1) {
|
||||||
|
return getMergedValue(undefined, a);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const mergeMap = {
|
||||||
|
url: valueFromConfig2,
|
||||||
|
method: valueFromConfig2,
|
||||||
|
data: valueFromConfig2,
|
||||||
|
baseURL: defaultToConfig2,
|
||||||
|
transformRequest: defaultToConfig2,
|
||||||
|
transformResponse: defaultToConfig2,
|
||||||
|
paramsSerializer: defaultToConfig2,
|
||||||
|
timeout: defaultToConfig2,
|
||||||
|
timeoutMessage: defaultToConfig2,
|
||||||
|
withCredentials: defaultToConfig2,
|
||||||
|
withXSRFToken: defaultToConfig2,
|
||||||
|
adapter: defaultToConfig2,
|
||||||
|
responseType: defaultToConfig2,
|
||||||
|
xsrfCookieName: defaultToConfig2,
|
||||||
|
xsrfHeaderName: defaultToConfig2,
|
||||||
|
onUploadProgress: defaultToConfig2,
|
||||||
|
onDownloadProgress: defaultToConfig2,
|
||||||
|
decompress: defaultToConfig2,
|
||||||
|
maxContentLength: defaultToConfig2,
|
||||||
|
maxBodyLength: defaultToConfig2,
|
||||||
|
beforeRedirect: defaultToConfig2,
|
||||||
|
transport: defaultToConfig2,
|
||||||
|
httpAgent: defaultToConfig2,
|
||||||
|
httpsAgent: defaultToConfig2,
|
||||||
|
cancelToken: defaultToConfig2,
|
||||||
|
socketPath: defaultToConfig2,
|
||||||
|
responseEncoding: defaultToConfig2,
|
||||||
|
validateStatus: mergeDirectKeys,
|
||||||
|
headers: (a, b , prop) => mergeDeepProperties(headersToObject(a), headersToObject(b),prop, true)
|
||||||
|
};
|
||||||
|
|
||||||
|
utils.forEach(Object.keys(Object.assign({}, config1, config2)), function computeConfigValue(prop) {
|
||||||
|
const merge = mergeMap[prop] || mergeDeepProperties;
|
||||||
|
const configValue = merge(config1[prop], config2[prop], prop);
|
||||||
|
(utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);
|
||||||
|
});
|
||||||
|
|
||||||
|
return config;
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user