UNPKG

@thi.ng/file-io

Version:

Assorted file I/O utils (with logging support) for NodeJS/Bun

5 lines (4 loc) 133 B
const maskHomeDir = (path, home = process.env.HOME, mask = "~") => home ? path.replace(home, mask) : path; export { maskHomeDir };