We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27537b0 commit 065eb5eCopy full SHA for 065eb5e
packages/json/lib/commands/helpers.ts
@@ -2,7 +2,6 @@ import { isNullReply } from "@redis/client/dist/lib/commands/generic-transformer
2
import { BlobStringReply, NullReply, UnwrapReply } from "@redis/client/dist/lib/RESP/types";
3
4
export function transformRedisJsonNullReply(json: NullReply | BlobStringReply): NullReply | RedisJSON {
5
- console.log('transformRedisJsonNullReply', json)
6
return isNullReply(json) ? json : transformRedisJsonReply(json);
7
}
8
@@ -17,6 +16,5 @@ export function transformRedisJsonArgument(json: RedisJSON): string {
17
16
18
export function transformRedisJsonReply(json: BlobStringReply): RedisJSON {
19
const res = JSON.parse((json as unknown as UnwrapReply<typeof json>).toString());
20
- console.log('transformRedisJsonReply', json, res)
21
return res;
22
0 commit comments