You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +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 {
|
export function transformReply([cursor, rawData]: HScanRawReply): HScanNoValuesReply {
|
||||||
return {
|
return {
|
||||||
cursor: Number(cursor),
|
cursor: Number(cursor),
|
||||||
keys: [...rawData]
|
keys: rawData
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user