1
0
mirror of https://github.com/redis/node-redis.git synced 2025-07-31 05:44:24 +03:00

fix(scan): remove console.logs (#3038)

fixes #3037
This commit is contained in:
Nikolay Karadzhov
2025-07-28 14:54:50 +03:00
committed by GitHub
parent 28d719d699
commit d8e14fa4fe

View File

@ -87,7 +87,6 @@ export default {
if (options?.TYPE) {
parser.push('TYPE', options.TYPE);
}
console.log('eeeeeeeeee', parser.redisArgs)
},
/**
* Transforms the SCAN reply into a structured object
@ -96,7 +95,6 @@ export default {
* @returns Object with cursor and keys properties
*/
transformReply([cursor, keys]: [BlobStringReply, ArrayReply<BlobStringReply>]) {
console.log(cursor, keys)
return {
cursor,
keys