Skip to content

Commit b884e13

Browse files
authored
don't expand/copy rawValues, return it directly. (#2800)
1 parent d09aaa3 commit b884e13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/client/lib/commands/HSCAN_NOVALUES.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ interface HScanNoValuesReply {
2222
export function transformReply([cursor, rawData]: HScanRawReply): HScanNoValuesReply {
2323
return {
2424
cursor: Number(cursor),
25-
keys: [...rawData]
25+
keys: rawData
2626
};
2727
}

0 commit comments

Comments
 (0)