File size: 219 Bytes
1e92f2d | 1 2 3 4 5 6 | // Buffer.byteLength polyfill in the Edge runtime, with only utf8 strings
// supported at the moment.
export function byteLength(payload: string): number {
return new TextEncoder().encode(payload).buffer.byteLength
}
|