You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
fix #2561
This commit is contained in:
@@ -11,7 +11,7 @@ export default {
|
||||
IS_READ_ONLY: true,
|
||||
transformArguments(
|
||||
key: RedisArgument,
|
||||
cursor: number,
|
||||
cursor: RedisArgument,
|
||||
options?: ScanCommonOptions
|
||||
) {
|
||||
return pushScanArguments(['HSCAN', key], cursor, options);
|
||||
@@ -27,7 +27,7 @@ export default {
|
||||
}
|
||||
|
||||
return {
|
||||
cursor: Number(cursor),
|
||||
cursor,
|
||||
entries
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user