Files
old-kitabcitab-frontend/kitabcitab/node_modules/next/dist/esm/server/api-utils/web.js
2022-12-27 12:05:56 +01:00

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