Files
openclaw/src/infra/json-utf8-bytes.ts
2026-03-02 05:20:19 +00:00

8 lines
196 B
TypeScript

export function jsonUtf8Bytes(value: unknown): number {
try {
return Buffer.byteLength(JSON.stringify(value), "utf8");
} catch {
return Buffer.byteLength(String(value), "utf8");
}
}