it-tools/src/tools/text-statistics/text-statistics.service.ts
2022-04-14 01:06:06 +02:00

4 lines
114 B
TypeScript

export function getStringSizeInBytes(text: string) {
return new TextEncoder().encode(text).buffer.byteLength;
}