You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-10 11:43:01 +03:00
8 lines
253 B
TypeScript
8 lines
253 B
TypeScript
import { transformReplyString } from './generic-transformers';
|
|
|
|
export function transformArguments(parameter: string, value: string): Array<string> {
|
|
return ['CONFIG', 'SET', parameter, value];
|
|
}
|
|
|
|
export const transformReply = transformReplyString;
|