aboutsummaryrefslogtreecommitdiff
path: root/src/tools/text-statistics/text-statistics.service.ts
blob: a69443c0b39c4dfc5e61ea2f9b6443c538431b28 (plain) (blame)
1
2
3
export function getStringSizeInBytes(text: string) {
  return new TextEncoder().encode(text).buffer.byteLength;
}