/opt/canhelp/node_modules/fast-glob/out/utils
NameSizeModeActions
array.d.ts1450644editdlrm
array.js6080644editdlrm
errno.d.ts1180644editdlrm
errno.js2340644editdlrm
fs.d.ts1860644editdlrm
fs.js7560644editdlrm
index.d.ts2980644editdlrm
index.js5960644editdlrm
path.d.ts7390644editdlrm
path.js30100644editdlrm
pattern.d.ts27660644editdlrm
pattern.js85200644editdlrm
stream.d.ts1720644editdlrm
stream.js6290644editdlrm
string.d.ts1240644editdlrm
string.js2980644editdlrm
Edit: /opt/canhelp/node_modules/fast-glob/out/utils/path.d.ts (739B)
import { Pattern } from '../types'; /** * Designed to work only with simple paths: `dir\\file`. */ export declare function unixify(filepath: string): string; export declare function makeAbsolute(cwd: string, filepath: string): string; export declare function removeLeadingDotSegment(entry: string): string; export declare const escape: typeof escapeWindowsPath; export declare function escapeWindowsPath(pattern: Pattern): Pattern; export declare function escapePosixPath(pattern: Pattern): Pattern; export declare const convertPathToPattern: typeof convertWindowsPathToPattern; export declare function convertWindowsPathToPattern(filepath: string): Pattern; export declare function convertPosixPathToPattern(filepath: string): Pattern;