You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-17 19:41:06 +03:00
8 lines
250 B
TypeScript
8 lines
250 B
TypeScript
import { transformReplyString } from './generic-transformers';
|
|
|
|
export function transformArguments(ip: string, port: number): Array<string> {
|
|
return ['CLUSTER', 'MEET', ip, port.toString()];
|
|
}
|
|
|
|
export const transformReply = transformReplyString;
|