Function
parseCommand
(parser: CommandParser, key: RedisArgument, index: number, element: RedisArgument)
Source from the content-addressed store, hash-verified
| 4 | export default { |
| 5 | IS_READ_ONLY: true, |
| 6 | parseCommand(parser: CommandParser, key: RedisArgument, index: number, element: RedisArgument) { |
| 7 | parser.push('LSET'); |
| 8 | parser.pushKey(key); |
| 9 | parser.push(index.toString(), element); |
| 10 | }, |
| 11 | transformReply: undefined as unknown as () => SimpleStringReply<'OK'> |
| 12 | } as const satisfies Command; |
Callers
nothing calls this directly
Tested by
no test coverage detected