1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

fix #2811 - fix EVAL[SHA][_RO] & FCALL[_RO] key extraction

This commit is contained in:
Leibale Eidelman
2024-07-30 13:21:23 -04:00
committed by GitHub
parent 2fc79bdfb3
commit c6a8586bf4

View File

@@ -412,7 +412,7 @@ export interface EvalOptions {
arguments?: Array<string>;
}
export function evalFirstKeyIndex(options?: EvalOptions): string | undefined {
export function evalFirstKeyIndex(_: unknown, options?: EvalOptions): string | undefined {
return options?.keys?.[0];
}