You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
fix #2561
This commit is contained in:
@@ -6,14 +6,14 @@ export default {
|
||||
IS_READ_ONLY: true,
|
||||
transformArguments(
|
||||
key: RedisArgument,
|
||||
cursor: number,
|
||||
cursor: RedisArgument,
|
||||
options?: ScanCommonOptions
|
||||
) {
|
||||
return pushScanArguments(['SSCAN', key], cursor, options);
|
||||
},
|
||||
transformReply([cursor, members]: [BlobStringReply, Array<BlobStringReply>]) {
|
||||
return {
|
||||
cursor: Number(cursor),
|
||||
cursor,
|
||||
members
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user