UNPKG
@z-utils/react
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
0.1.3
0.1.1
0.1.0
zzy 工具库/react
@z-utils/react
/
es
/
default
/
devtools
/
formatFileSize.js
2 lines
(1 loc)
•
168 B
JavaScript
View Raw
1
2
var
t=
function
(
t
){
return
t<
1024
?t+
"B"
:t<
1048576
?(t/
1024
).
toFixed
(
2
)+
"KB"
:t<
1073741824
?(t/
1048576
).
toFixed
(
2
)+
"MB"
:(t/
1073741824
).
toFixed
(
2
)+
"GB"
};
export
{t
as
default
};