makearmy-app/node_modules/next/dist/esm/server/api-utils/web.js

7 lines
238 B
JavaScript
Raw Normal View History

2025-09-22 10:37:53 -04:00
// 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