Skip to content

Commit 1a9a5a7

Browse files
committed
revert export
1 parent 8587d4b commit 1a9a5a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/utils/src/envelope.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export function forEachEnvelopeItem<E extends Envelope>(
5656
/**
5757
* Encode a string to UTF8.
5858
*/
59-
export function encodeUTF8(input: string, textEncoder?: TextEncoderInternal): Uint8Array {
59+
function encodeUTF8(input: string, textEncoder?: TextEncoderInternal): Uint8Array {
6060
const utf8 = textEncoder || new TextEncoder();
6161
return utf8.encode(input);
6262
}

0 commit comments

Comments
 (0)