📄 path.js
¶
📊 Analysis Summary¶
Metric | Count |
---|---|
🔧 Functions | 12 |
📊 Variables & Constants | 15 |
📚 Table of Contents¶
🛠️ File Location:¶
📂 packages/website-eslint/src/mock/path.js
Variables & Constants¶
Name | Type | Kind | Value | Exported |
---|---|---|---|---|
up |
number |
let/var | 0 |
✗ |
last |
any |
let/var | parts[i] |
✗ |
splitPathRe |
RegExp |
let/var | /^(\/?)([\s\S]*?)((?:\.{1,2}|[^/]+?)?(\.[^./]*|))\/*$/ |
✗ |
resolvedPath |
string |
let/var | '' |
✗ |
resolvedAbsolute |
boolean |
let/var | false |
✗ |
path |
any |
let/var | i >= 0 ? args[i] : '/' |
✗ |
start |
number |
let/var | 0 |
✗ |
end |
number |
let/var | arr.length - 1 |
✗ |
samePartsLength |
number |
let/var | length |
✗ |
sep |
"/" |
let/var | '/' |
✓ |
delimiter |
":" |
let/var | ':' |
✓ |
root |
string |
let/var | result[0] |
✗ |
dir |
string |
let/var | result[1] |
✗ |
f |
string |
let/var | splitPath(path)[2] |
✗ |
res |
any[] |
let/var | [] |
✗ |
Functions¶
normalizeArray(parts: any, allowAboveRoot: any): any
¶
Code
function normalizeArray(parts, allowAboveRoot) {
// if the path tries to go above the root, `up` ends up > 0
let up = 0;
for (let i = parts.length - 1; i >= 0; i--) {
const last = parts[i];
if (last === '.') {
parts.splice(i, 1);
} else if (last === '..') {
parts.splice(i, 1);
up++;
} else if (up) {
parts.splice(i, 1);
up--;
}
}
// if the path is allowed to go above the root, restore leading ..s
if (allowAboveRoot) {
for (; up--; up) {
parts.unshift('..');
}
}
return parts;
}
- Parameters:
parts: any
allowAboveRoot: any
- Return Type:
any
- Calls:
parts.splice
parts.unshift
- Internal Comments:
splitPath(filename: any): string[]
¶
- Parameters:
filename: any
- Return Type:
string[]
- Calls:
splitPathRe.exec(filename).slice
resolve(args: any[]): string
¶
Code
export function resolve(...args) {
let resolvedPath = '';
let resolvedAbsolute = false;
for (let i = args.length - 1; i >= -1 && !resolvedAbsolute; i--) {
const path = i >= 0 ? args[i] : '/';
// Skip empty and invalid entries
if (typeof path !== 'string') {
throw new TypeError('Arguments to path.resolve must be strings');
} else if (!path) {
continue;
}
resolvedPath = `${path}/${resolvedPath}`;
resolvedAbsolute = path.charAt(0) === '/';
}
// At this point the path should be resolved to a full absolute path, but
// handle relative paths to be safe (might happen when process.cwd() fails)
// Normalize the path
resolvedPath = normalizeArray(
filter(resolvedPath.split('/'), p => !!p),
!resolvedAbsolute,
).join('/');
return (resolvedAbsolute ? '/' : '') + resolvedPath || '.';
}
- Parameters:
args: any[]
- Return Type:
string
- Calls:
path.charAt
normalizeArray( filter(resolvedPath.split('/'), p => !!p), !resolvedAbsolute, ).join
- Internal Comments:
normalize(path: any): string
¶
Code
export function normalize(path) {
const isPathAbsolute = isAbsolute(path);
const trailingSlash = path.endsWith('/');
// Normalize the path
path = normalizeArray(
filter(path.split('/'), p => !!p),
!isPathAbsolute,
).join('/');
if (!path && !isPathAbsolute) {
path = '.';
}
if (path && trailingSlash) {
path += '/';
}
return (isPathAbsolute ? '/' : '') + path;
}
- Parameters:
path: any
- Return Type:
string
- Calls:
isAbsolute
path.endsWith
normalizeArray( filter(path.split('/'), p => !!p), !isPathAbsolute, ).join
- Internal Comments:
isAbsolute(path: any): boolean
¶
- Parameters:
path: any
- Return Type:
boolean
- Calls:
path.charAt
join(paths: any[]): string
¶
Code
- Parameters:
paths: any[]
- Return Type:
string
- Calls:
normalize
filter(paths, p => { if (typeof p !== 'string') { throw new TypeError('Arguments to path.join must be strings'); } return p; }).join
relative(from: any, to: any): string
¶
Code
export function relative(from, to) {
from = resolve(from).slice(1);
to = resolve(to).slice(1);
function trim(arr) {
let start = 0;
for (; start < arr.length; start++) {
if (arr[start] !== '') {
break;
}
}
let end = arr.length - 1;
for (; end >= 0; end--) {
if (arr[end] !== '') {
break;
}
}
if (start > end) {
return [];
}
return arr.slice(start, end - start + 1);
}
const fromParts = trim(from.split('/'));
const toParts = trim(to.split('/'));
const length = Math.min(fromParts.length, toParts.length);
let samePartsLength = length;
for (let i = 0; i < length; i++) {
if (fromParts[i] !== toParts[i]) {
samePartsLength = i;
break;
}
}
return [
...Array(fromParts.length - samePartsLength).fill('..'),
...toParts.slice(samePartsLength),
].join('/');
}
- Parameters:
from: any
to: any
- Return Type:
string
- Calls:
resolve(from).slice
resolve(to).slice
arr.slice
trim
from.split
to.split
Math.min
[ ...Array(fromParts.length - samePartsLength).fill('..'), ...toParts.slice(samePartsLength), ].join
Array(fromParts.length - samePartsLength).fill
toParts.slice
trim(arr: any): any
¶
Code
- Parameters:
arr: any
- Return Type:
any
- Calls:
arr.slice
dirname(path: any): string
¶
Code
- Parameters:
path: any
- Return Type:
string
- Calls:
splitPath
dir.slice
- Internal Comments:
basename(path: any, ext: any): string
¶
Code
- Parameters:
path: any
ext: any
- Return Type:
string
- Calls:
splitPath
f.slice
- Internal Comments:
extname(path: any): string
¶
- Parameters:
path: any
- Return Type:
string
- Calls:
splitPath
filter(xs: any, f: any): any
¶
Code
- Parameters:
xs: any
f: any
- Return Type:
any
- Calls:
xs.filter
f
res.push