Skip to content

Commit 70ed5c8

Browse files
authored
chore(protocol/deno_streams): don't export internal APIs (#573)
1 parent 41630e2 commit 70ed5c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

protocol/deno_streams/reply.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function readSimpleStringReply(
105105
return readSingleLineReply(reader, SimpleStringCode, returnUint8Arrays);
106106
}
107107

108-
export function readArrayReply(
108+
function readArrayReply(
109109
reader: BufReader,
110110
returnUint8Arrays?: boolean,
111111
): Promise<Array<types.RedisReply> | null> {
@@ -144,7 +144,7 @@ async function readArrayLikeReply(
144144
/**
145145
* NOTE: We treat a set type as an array to keep backward compatibility.
146146
*/
147-
export async function readSetReply(
147+
async function readSetReply(
148148
reader: BufReader,
149149
returnUint8Arrays?: boolean,
150150
): Promise<Array<types.RedisReply> | null> {

0 commit comments

Comments
 (0)