UNPKG

haven-secrets-core

Version:

Core for Haven, the easy to use centralized secrets manager.

10 lines (7 loc) 247 B
import fs from "fs"; import havenDir from "./havenDir.js"; const hiddenAccountFilePath = `${havenDir}`; const deleteHavenAccountFile = () => { fs.rmdirSync(hiddenAccountFilePath, { recursive: true }); }; export default deleteHavenAccountFile;