UNPKG

home-or-tmp

Version:

Get the user home directory with fallback to the system temp directory

7 lines (4 loc) 165 B
import {homedir, tmpdir} from 'os'; // eslint-disable-next-line unicorn/prevent-abbreviations const homeOrTemp = homedir() || tmpdir(); export default homeOrTemp;