@oaklean/profiler-core
Version:
Part of the @oaklean suite. It provides all basic functions to work with the `.oak` file format. It allows parsing the `.oak` file format as well as tools for analyzing the measurement values. It also provides all necessary capabilities required for prec
9 lines (8 loc) • 414 B
TypeScript
export declare class PathUtils {
static sortFilePathArray(filePathArray: string[]): void;
static getPathRelativeTo(from: string, to: string): string;
static makeAbsolute(startDir: string, relativeFilePath: string): string;
static isAbsolute(pathString: string): boolean;
static unifyPath(pathString: string): string;
static findUp(filename: string, startDir: string): string | undefined;
}