Skip to content

Commit

Permalink
revert export
Browse files Browse the repository at this point in the history
  • Loading branch information
billyvg committed Jan 11, 2023
1 parent 8587d4b commit 1a9a5a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/utils/src/envelope.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function forEachEnvelopeItem<E extends Envelope>(
/**
* Encode a string to UTF8.
*/
export function encodeUTF8(input: string, textEncoder?: TextEncoderInternal): Uint8Array {
function encodeUTF8(input: string, textEncoder?: TextEncoderInternal): Uint8Array {
const utf8 = textEncoder || new TextEncoder();
return utf8.encode(input);
}
Expand Down

0 comments on commit 1a9a5a7

Please sign in to comment.