File: //usr/share/nodejs/@nodelib/fs.walk/src/readers/common.ts
import Settings, { FilterFunction } from '../settings';
import { Errno } from '../types';
export function isFatalError(settings: Settings, error: Errno): boolean {
if (settings.errorFilter === null) {
return true;
}
return !settings.errorFilter(error);
}
export function isAppliedFilter<T>(filter: FilterFunction<T> | null, value: T): boolean {
return filter === null || filter(value);
}
export function replacePathSegmentSeparator(filepath: string, separator: string): string {
return filepath.split(/[/\\]/).join(separator);
}
export function joinPathSegments(a: string, b: string, separator: string): string {
if (a === '') {
return b;
}
/**
* The correct handling of cases when the first segment is a root (`/`, `C:/`) or UNC path (`//?/C:/`).
*/
if (a.endsWith(separator)) {
return a + b;
}
return a + separator + b;
}