(parser: CommandParser, key: RedisArgument, member: RedisVariadicArgument)
| 6 | CACHEABLE: true, |
| 7 | IS_READ_ONLY: true, |
| 8 | parseCommand(parser: CommandParser, key: RedisArgument, member: RedisVariadicArgument) { |
| 9 | parser.push('ZMSCORE'); |
| 10 | parser.pushKey(key); |
| 11 | parser.pushVariadic(member); |
| 12 | }, |
| 13 | transformReply: { |
| 14 | 2: (reply: UnwrapReply<ArrayReply<NullReply | BlobStringReply>>, preserve?: unknown, typeMapping?: TypeMapping) => { |
| 15 | return reply.map(createTransformNullableDoubleReplyResp2Func(preserve, typeMapping)); |
nothing calls this directly
no test coverage detected