1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00
Files
node-redis/packages/client/lib/commands/CONFIG_GET.ts
2021-12-15 17:08:50 -05:00

6 lines
202 B
TypeScript

export function transformArguments(parameter: string): Array<string> {
return ['CONFIG', 'GET', parameter];
}
export { transformReplyStringTuples as transformReply } from './generic-transformers';