@valkey/client
Version:
The source code and documentation for this package are in the main [node-redis](https://github.com/redis/node-redis) repo.
11 lines (10 loc) • 323 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.transformArguments = void 0;
function transformArguments({ username, password, }) {
if (!username) {
return ["AUTH", password];
}
return ["AUTH", username, password];
}
exports.transformArguments = transformArguments;
;