MCPcopy Index your code
hub / github.com/redis/node-redis / parseCommand

Function parseCommand

packages/client/lib/commands/ZREM.ts:7–15  ·  view source on GitHub ↗
(
    parser: CommandParser,
    key: RedisArgument,
    member: RedisVariadicArgument
  )

Source from the content-addressed store, hash-verified

5export default {
6 IS_READ_ONLY: false,
7 parseCommand(
8 parser: CommandParser,
9 key: RedisArgument,
10 member: RedisVariadicArgument
11 ) {
12 parser.push('ZREM');
13 parser.pushKey(key);
14 parser.pushVariadic(member);
15 },
16 transformReply: undefined as unknown as () => NumberReply
17} as const satisfies Command;

Callers

nothing calls this directly

Calls 3

pushKeyMethod · 0.80
pushVariadicMethod · 0.80
pushMethod · 0.45

Tested by

no test coverage detected