Initial React project
This commit is contained in:
4
node_modules/@eslint/config-array/dist/esm/std__path/posix.js
generated
vendored
4
node_modules/@eslint/config-array/dist/esm/std__path/posix.js
generated
vendored
@@ -949,7 +949,7 @@ caseInsensitive = false } = {}) {
|
||||
let endsWithSep = false;
|
||||
let i = j;
|
||||
// Terminates with `i` at the non-inclusive end of the current segment.
|
||||
for(; i < glob.length && !(c.seps.includes(glob[i]) && groupStack.length === 0); i++){
|
||||
for(; i < glob.length && !c.seps.includes(glob[i]); i++){
|
||||
if (inEscape) {
|
||||
inEscape = false;
|
||||
const escapeChars = inRange ? RANGE_ESCAPE_CHARS : REG_EXP_ESCAPE_CHARS;
|
||||
@@ -1222,7 +1222,7 @@ const constants = {
|
||||
"(": ")",
|
||||
"[": "]"
|
||||
};
|
||||
const regex = /\\(.)|(^!|\*|\?|[\].+)]\?|\[[^[\\\]]+\]|\{[^{\\}]+\}|\(\?[:!=][^\\)]+\)|\([^(|]+\|[^\\)]+\)|@\([^)]+\))/;
|
||||
const regex = /\\(.)|(^!|\*|\?|[\].+)]\?|\[[^[\\\]]+\]|\{[^{\\}]+\}|\(\?[:!=][^\\)]+\)|\([^(|]+\|[^\\)]+\))/;
|
||||
if (str === "") {
|
||||
return false;
|
||||
}
|
||||
|
||||
6
node_modules/@eslint/config-array/dist/esm/std__path/windows.js
generated
vendored
6
node_modules/@eslint/config-array/dist/esm/std__path/windows.js
generated
vendored
@@ -999,7 +999,7 @@ function assertArgs(from, to) {
|
||||
/**
|
||||
* Return the relative path from `from` to `to` based on current working directory.
|
||||
*
|
||||
* An example in windows, for instance:
|
||||
* An example in windws, for instance:
|
||||
* from = 'C:\\orandea\\test\\aaa'
|
||||
* to = 'C:\\orandea\\impl\\bbb'
|
||||
* The output of the function should be: '..\\..\\impl\\bbb'
|
||||
@@ -1289,7 +1289,7 @@ caseInsensitive = false } = {}) {
|
||||
let endsWithSep = false;
|
||||
let i = j;
|
||||
// Terminates with `i` at the non-inclusive end of the current segment.
|
||||
for(; i < glob.length && !(c.seps.includes(glob[i]) && groupStack.length === 0); i++){
|
||||
for(; i < glob.length && !c.seps.includes(glob[i]); i++){
|
||||
if (inEscape) {
|
||||
inEscape = false;
|
||||
const escapeChars = inRange ? RANGE_ESCAPE_CHARS : REG_EXP_ESCAPE_CHARS;
|
||||
@@ -1563,7 +1563,7 @@ const constants = {
|
||||
"(": ")",
|
||||
"[": "]"
|
||||
};
|
||||
const regex = /\\(.)|(^!|\*|\?|[\].+)]\?|\[[^[\\\]]+\]|\{[^{\\}]+\}|\(\?[:!=][^\\)]+\)|\([^(|]+\|[^\\)]+\)|@\([^)]+\))/;
|
||||
const regex = /\\(.)|(^!|\*|\?|[\].+)]\?|\[[^[\\\]]+\]|\{[^{\\}]+\}|\(\?[:!=][^\\)]+\)|\([^(|]+\|[^\\)]+\))/;
|
||||
if (str === "") {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user