UNPKG

mdui.editor

Version:

Material Design 样式的富文本编辑器

16 lines (13 loc) 274 B
/** * 格式化内存大小 * @param memory */ export function memoryFormat(memory: number): string { const units = ['B', 'KB', 'MB', 'GB', 'TB']; let pos = 0; while (memory >= 1024) { memory /= 1024; pos++; } return memory.toFixed(2) + units[pos]; }