1
0
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:
Shaya Potter
2024-07-23 21:07:32 +03:00
committed by GitHub
parent d09aaa311d
commit b884e132fa

View File

@@ -22,6 +22,6 @@ interface HScanNoValuesReply {
export function transformReply([cursor, rawData]: HScanRawReply): HScanNoValuesReply {
return {
cursor: Number(cursor),
keys: [...rawData]
keys: rawData
};
}