📄 path¶
📊 Analysis Summary¶
| Metric | Count |
|---|---|
| 🔧 Functions | 12 |
| 📊 Variables & Constants | 3 |
📚 Table of Contents¶
🛠️ File Location:¶
📂 packages/website-eslint/src/mock/path.js
Variables & Constants¶
| Name | Type | Kind | Value | Exported |
|---|---|---|---|---|
splitPathRe |
RegExp |
let/var | /^(\/?)([\s\S]*?)((?:\.{1,2}\|[^/]+?)?(\.[^./]*\|))\/*$/ |
✗ |
sep |
"/" |
let/var | '/' |
✓ |
delimiter |
":" |
let/var | ':' |
✓ |
Functions¶
resolve(args: any[]): string¶
Parameters:
argsany[]
Returns: string
Calls:
path.charAtnormalizeArray( filter(resolvedPath.split('/'), p => !!p), !resolvedAbsolute, ).join
Internal Comments:
// Skip empty and invalid entries
// At this point the path should be resolved to a full absolute path, but (x3)
// handle relative paths to be safe (might happen when process.cwd() fails) (x3)
// Normalize the path (x3)
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 || '.';
}
normalize(path: any): string¶
Parameters:
pathany
Returns: string
Calls:
isAbsolutepath.endsWithnormalizeArray( filter(path.split('/'), p => !!p), !isPathAbsolute, ).join
Internal Comments:
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;
}
isAbsolute(path: any): boolean¶
Parameters:
pathany
Returns: boolean
Calls:
path.charAt
join(paths: any[]): string¶
Parameters:
pathsany[]
Returns: string
Calls:
normalizefilter(paths, p => { if (typeof p !== 'string') { throw new TypeError('Arguments to path.join must be strings'); } return p; }).join
Code
relative(from: any, to: any): string¶
Parameters:
fromanytoany
Returns: string
Calls:
resolve(from).sliceresolve(to).slicearr.slicetrimfrom.splitto.splitMath.min[ ...Array(fromParts.length - samePartsLength).fill('..'), ...toParts.slice(samePartsLength), ].joinArray(fromParts.length - samePartsLength).filltoParts.slice
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('/');
}
dirname(path: any): string¶
Parameters:
pathany
Returns: string
Calls:
splitPathdir.slice
Internal Comments:
Code
basename(path: any, ext: any): string¶
Parameters:
pathanyextany
Returns: string
Calls:
splitPathf.slice
Internal Comments:
Code
extname(path: any): string¶
Parameters:
pathany
Returns: string
Calls:
splitPath
normalizeArray(parts: any, allowAboveRoot: any): any¶
Parameters:
partsanyallowAboveRootany
Returns: any
Calls:
parts.spliceparts.unshift
Internal Comments:
// if the path tries to go above the root, `up` ends up > 0 (x2)
// if the path is allowed to go above the root, restore leading ..s
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;
}
splitPath(filename: any): string[]¶
Parameters:
filenameany
Returns: string[]
Calls:
splitPathRe.exec(filename).slice
filter(xs: any, f: any): any¶
Parameters:
xsanyfany
Returns: any
Calls:
xs.filterfres.push
Code
Internal helpers¶
Declared inside another function in this file.
trim(arr: any): any¶
Parameters:
arrany
Returns: any
Calls:
arr.slice
Code
Generated by Syntax Scribe