mirror of
https://github.com/directus/directus.git
synced 2026-04-03 03:00:39 -04:00
7 lines
161 B
TypeScript
7 lines
161 B
TypeScript
/**
|
|
* Returns the byte size for a given input string
|
|
*/
|
|
export function stringByteSize(string: string): number {
|
|
return Buffer.byteLength(string, 'utf-8');
|
|
}
|