dld_backend/node_modules/@redis/client/dist/lib/commands/REPLICAOF.js
2025-10-30 12:13:02 +05:30

8 lines
256 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.transformArguments = void 0;
function transformArguments(host, port) {
return ['REPLICAOF', host, port.toString()];
}
exports.transformArguments = transformArguments;