UNPKG
haven-secrets-cli
Version:
latest (1.0.1)
1.0.1
1.0.0
CLI client for Haven Secrets Manager
github.com/haven-secrets/haven-cli
haven-secrets/haven-cli
haven-secrets-cli
/
src
/
utils
/
havenFileExists.js
11 lines
(8 loc)
•
278 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
fs
from
"fs"
;
import
{ homedir }
from
"os"
;
const
havenFileExists
= (
) => {
const
havenDir =
`
${homedir()}
/.haven`
;
const
hiddenAccountFilePath =
`
${havenDir}
/havenAccountInfo.json`
;
return
fs.
existsSync
(hiddenAccountFilePath); };
export
default
havenFileExists;