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