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 8587d4b commit 1a9a5a7Copy full SHA for 1a9a5a7
packages/utils/src/envelope.ts
@@ -56,7 +56,7 @@ export function forEachEnvelopeItem<E extends Envelope>(
56
/**
57
* Encode a string to UTF8.
58
*/
59
-export function encodeUTF8(input: string, textEncoder?: TextEncoderInternal): Uint8Array {
+function encodeUTF8(input: string, textEncoder?: TextEncoderInternal): Uint8Array {
60
const utf8 = textEncoder || new TextEncoder();
61
return utf8.encode(input);
62
}
0 commit comments