You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-17 19:41:06 +03:00
10 lines
317 B
TypeScript
10 lines
317 B
TypeScript
import { transformReplyBoolean } from './generic-transformers';
|
|
|
|
export const FIRST_KEY_INDEX = 2;
|
|
|
|
export function transformArguments(key: string, group: string, consumer: string): Array<string> {
|
|
return ['XGROUP', 'CREATECONSUMER', key, group, consumer];
|
|
}
|
|
|
|
export const transformReply = transformReplyBoolean;
|