Skip to content

Commit

Permalink
don't expand/copy rawValues, return it directly. (#2800)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjpotter authored Jul 23, 2024
1 parent d09aaa3 commit b884e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/lib/commands/HSCAN_NOVALUES.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ interface HScanNoValuesReply {
export function transformReply([cursor, rawData]: HScanRawReply): HScanNoValuesReply {
return {
cursor: Number(cursor),
keys: [...rawData]
keys: rawData
};
}

0 comments on commit b884e13

Please sign in to comment.