-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.js
38 lines (30 loc) · 916 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os from 'node:os'
import path from 'node:path'
function darwin (name) {
return path.join(process.env.HOME, 'Library', 'Application Support', name)
}
function xdg (name) {
if (process.env.XDG_CONFIG_HOME) {
return path.join(process.env.XDG_CONFIG_HOME, name)
}
return path.join(process.env.HOME, '.config', name)
}
function win32 (name) {
if (process.env.LOCALAPPDATA) {
return path.join(process.env.LOCALAPPDATA, name)
}
return path.join(process.env.USERPROFILE, 'Local Settings', 'Application Data', name)
}
export default function applicationConfigPath (name) {
if (typeof name !== 'string') {
throw new TypeError('`name` must be string')
}
switch (os.platform()) {
case 'darwin': return darwin(name)
case 'freebsd':
case 'openbsd':
case 'linux': return xdg(name)
case 'win32': return win32(name)
}
throw new Error('Platform not supported')
}