cloakx
Version:
Cloakx is a secure, lightweight CLI tool to manage your development secrets locally — no cloud, no hassle. Store, retrieve, and manage secrets across projects with encryption and ease. 🔐 Perfect for solo devs, indie hackers, and teams who value speed, si
12 lines (11 loc) • 337 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.setCurrentPassword = setCurrentPassword;
exports.getCurrentPassword = getCurrentPassword;
let currentPassword = '';
function setCurrentPassword(password) {
currentPassword = password;
}
function getCurrentPassword() {
return currentPassword;
}