sussy-util
Version:
Util package made by me
9 lines (8 loc) • 315 B
TypeScript
/**
* Converts the given number of bytes to a human-readable string that represents the file size.
*
* @param {number} bytes - The number of bytes to convert.
* @returns {string} A human-readable string representing the file size.
*/
declare const _default: (bytes: number) => string;
export default _default;