1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-22 14:49:36 +02:00
it-tools/src/tools/text-statistics/text-statistics.service.ts
2022-04-14 01:06:06 +02:00

3 lines
114 B
TypeScript

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