You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-09 00:22:08 +03:00
13 lines
389 B
TypeScript
13 lines
389 B
TypeScript
import { transformArguments as transformZPopMinArguments } from './ZPOPMIN';
|
|
|
|
export { FIRST_KEY_INDEX } from './ZPOPMIN';
|
|
|
|
export function transformArguments(key: string, count: number): Array<string> {
|
|
return [
|
|
...transformZPopMinArguments(key),
|
|
count.toString()
|
|
];
|
|
}
|
|
|
|
export { transformReplySortedSetWithScores as transformReply } from './generic-transformers';
|