UNPKG

setup-cpp

Version:

Install all the tools required for building and testing C++/C projects.

11 lines (10 loc) 308 B
export declare function userHomeDir(): string | undefined; /** * Replaces a tilde with the user's home directory * * @example UntildifyUser("~/foo") // /home/user/foo * * @param path The path to untildify * @returns The untildified path */ export declare function untildifyUser(path: string): string;