1export function getHome(home?: string): string { 2 return home ?? process.env.HOME ?? "/tmp"; 3} 4 5