Function
parseCommand
(parser: CommandParser, source: RedisArgument, destination: RedisArgument)
Source from the content-addressed store, hash-verified
| 3 | |
| 4 | export default { |
| 5 | parseCommand(parser: CommandParser, source: RedisArgument, destination: RedisArgument) { |
| 6 | parser.push('RPOPLPUSH'); |
| 7 | parser.pushKeys([source, destination]); |
| 8 | }, |
| 9 | transformReply: undefined as unknown as () => BlobStringReply | NullReply |
| 10 | } as const satisfies Command; |
Callers
nothing calls this directly
Tested by
no test coverage detected