Files
backend_task/node_modules/@redis/client/dist/lib/commands/REPLICAOF.js
T

8 lines
256 B
JavaScript
Raw Normal View History

2025-02-11 15:06:41 +01:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.transformArguments = void 0;
function transformArguments(host, port) {
return ['REPLICAOF', host, port.toString()];
}
exports.transformArguments = transformArguments;