UNPKG
mdui.editor
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Material Design 样式的富文本编辑器
github.com/zdhxiong/mdui.editor
zdhxiong/mdui.editor
mdui.editor
/
src
/
utils
/
format.ts
16 lines
(13 loc)
•
274 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** * 格式化内存大小 *
@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]; }