UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

10 lines (9 loc) 220 B
//#region src/utils/get-string-byte-size.ts /** * Returns the byte size for a given input string */ function stringByteSize(string) { return Buffer.byteLength(string, "utf-8"); } //#endregion export { stringByteSize };