mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-22 14:49:36 +02:00
3 lines
114 B
TypeScript
3 lines
114 B
TypeScript
export function getStringSizeInBytes(text: string) {
|
|
return new TextEncoder().encode(text).buffer.byteLength;
|
|
}
|