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