UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

7 lines (5 loc) 181 B
interface FormatBytesOptions { numberOfDecimals: number; } declare const formatBytes: (bytes: number, options?: Partial<FormatBytesOptions>) => string; export { formatBytes };