mirror of
https://github.com/certd/certd.git
synced 2026-04-19 00:50:53 +08:00
10 lines
201 B
JavaScript
10 lines
201 B
JavaScript
import path from 'path'
|
|
|
|
function getUserBasePath () {
|
|
const userHome = process.env.USERPROFILE || process.env.HOME
|
|
return path.resolve(userHome, './.certd')
|
|
}
|
|
export default {
|
|
getUserBasePath
|
|
}
|