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 41630e2 commit 70ed5c8Copy full SHA for 70ed5c8
protocol/deno_streams/reply.ts
@@ -105,7 +105,7 @@ function readSimpleStringReply(
105
return readSingleLineReply(reader, SimpleStringCode, returnUint8Arrays);
106
}
107
108
-export function readArrayReply(
+function readArrayReply(
109
reader: BufReader,
110
returnUint8Arrays?: boolean,
111
): Promise<Array<types.RedisReply> | null> {
@@ -144,7 +144,7 @@ async function readArrayLikeReply(
144
/**
145
* NOTE: We treat a set type as an array to keep backward compatibility.
146
*/
147
-export async function readSetReply(
+async function readSetReply(
148
149
150
0 commit comments