Files
cartlog-admin/node_modules/next/dist/esm/server/api-utils/web.js
2026-01-01 15:25:19 +05:30

7 lines
238 B
JavaScript

// 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