bpms_site/.svn/pristine/ba/ba1966b7edd8c92888effda2b8c77ad8fdb12df1.svn-base
2025-11-02 16:38:49 +03:30

7 lines
238 B
Plaintext

// Buffer.byteLength polyfill in the Edge runtime, with only utf8 strings
// supported at the moment.
export function byteLength(payload) {
return new TextEncoder().encode(payload).buffer.byteLength;
}
//# sourceMappingURL=web.js.map