File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
packages/json/lib/commands Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import { isNullReply } from "@redis/client/dist/lib/commands/generic-transformer
2
2
import { BlobStringReply , NullReply , UnwrapReply } from "@redis/client/dist/lib/RESP/types" ;
3
3
4
4
export function transformRedisJsonNullReply ( json : NullReply | BlobStringReply ) : NullReply | RedisJSON {
5
- console . log ( 'transformRedisJsonNullReply' , json )
6
5
return isNullReply ( json ) ? json : transformRedisJsonReply ( json ) ;
7
6
}
8
7
@@ -17,6 +16,5 @@ export function transformRedisJsonArgument(json: RedisJSON): string {
17
16
18
17
export function transformRedisJsonReply ( json : BlobStringReply ) : RedisJSON {
19
18
const res = JSON . parse ( ( json as unknown as UnwrapReply < typeof json > ) . toString ( ) ) ;
20
- console . log ( 'transformRedisJsonReply' , json , res )
21
19
return res ;
22
20
}
You can’t perform that action at this time.
0 commit comments