1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

Update packages/client/lib/commands/COMMAND_DOCS.ts

Co-authored-by: Precious <lilonaony@gmail.com>
This commit is contained in:
Avital Fine
2022-03-22 10:23:19 +01:00
committed by GitHub
parent 832519d762
commit 7507de770a

View File

@@ -18,7 +18,7 @@ type CommandDocumentation = {
type CommandDocsReply = Array<[CommandName: string, CommandDocumentation: CommandDocumentation]>; type CommandDocsReply = Array<[CommandName: string, CommandDocumentation: CommandDocumentation]>;
export function transformReply(rawReply: Array<any>): CommandDocsReply { export function transformReply(rawReply: Array<any>): CommandDocsReply {
const replyArray:CommandDocsReply = [] const replyArray:CommandDocsReply = [];
for (let i = 0; i < rawReply.length; i++) { for (let i = 0; i < rawReply.length; i++) {