Skip to content

Commit ebef8c1

Browse files
committedMay 21, 2025·
fix(json): remove debug console.logs
1 parent 9ea260f commit ebef8c1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎packages/json/lib/commands/helpers.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { isNullReply } from "@redis/client/dist/lib/commands/generic-transformer
22
import { BlobStringReply, NullReply, UnwrapReply } from "@redis/client/dist/lib/RESP/types";
33

44
export function transformRedisJsonNullReply(json: NullReply | BlobStringReply): NullReply | RedisJSON {
5-
console.log('transformRedisJsonNullReply', json)
65
return isNullReply(json) ? json : transformRedisJsonReply(json);
76
}
87

@@ -17,6 +16,5 @@ export function transformRedisJsonArgument(json: RedisJSON): string {
1716

1817
export function transformRedisJsonReply(json: BlobStringReply): RedisJSON {
1918
const res = JSON.parse((json as unknown as UnwrapReply<typeof json>).toString());
20-
console.log('transformRedisJsonReply', json, res)
2119
return res;
2220
}

0 commit comments

Comments
 (0)