mirror of
https://github.com/astral-sh/setup-uv.git
synced 2026-07-03 02:49:30 +00:00
chore(deps): roll up dependabot updates
This commit is contained in:
parent
c4fcbafce4
commit
e808723e51
6 changed files with 1595 additions and 1321 deletions
11
dist/save-cache/index.cjs
generated
vendored
11
dist/save-cache/index.cjs
generated
vendored
|
|
@ -62342,9 +62342,14 @@ function skipComment(str, ptr) {
|
|||
}
|
||||
function skipVoid(str, ptr, banNewLines, banComments) {
|
||||
let c;
|
||||
while ((c = str[ptr]) === " " || c === " " || !banNewLines && (c === "\n" || c === "\r" && str[ptr + 1] === "\n"))
|
||||
ptr++;
|
||||
return banComments || c !== "#" ? ptr : skipVoid(str, skipComment(str, ptr), banNewLines);
|
||||
while (1) {
|
||||
while ((c = str[ptr]) === " " || c === " " || !banNewLines && (c === "\n" || c === "\r" && str[ptr + 1] === "\n"))
|
||||
ptr++;
|
||||
if (banComments || c !== "#")
|
||||
break;
|
||||
ptr = skipComment(str, ptr);
|
||||
}
|
||||
return ptr;
|
||||
}
|
||||
function skipUntil(str, ptr, sep7, end, banNewLines = false) {
|
||||
if (!end) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue