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

Merge branch 'v4.0' of github.com:redis/node-redis

This commit is contained in:
leibale
2021-11-24 21:23:35 -05:00
11 changed files with 486 additions and 190 deletions

View File

@@ -86,7 +86,7 @@ export function transformRedisJsonNullReply(json: string | null): RedisJSON | nu
export function transformRedisJsonNullArrayNullReply(jsons: Array<string | null> | null): Array<RedisJSON | null> | null {
if (jsons === null) return null;
return jsons.map(transformRedisJsonNullReply);
}