You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
don't expand/copy rawValues, return it directly. (#2800)
This commit is contained in:
@@ -22,6 +22,6 @@ interface HScanNoValuesReply {
|
||||
export function transformReply([cursor, rawData]: HScanRawReply): HScanNoValuesReply {
|
||||
return {
|
||||
cursor: Number(cursor),
|
||||
keys: [...rawData]
|
||||
keys: rawData
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user