UNPKG

untildify-user

Version:

Untildify a path for the current user even if it is root

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;