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
293 B
TypeScript
10 lines
293 B
TypeScript
import { transformReplyString } from './generic-transformers';
|
|
|
|
export const FIRST_KEY_INDEX = 1;
|
|
|
|
export function transformArguments(key: string, increment: number): Array<string> {
|
|
return ['INCRBYFLOAT', key, increment.toString()];
|
|
}
|
|
|
|
export const transformReply = transformReplyString;
|