FLUTTER ECOSYSTEM

synw/filesize

人性化文件大小

filesize 项目封面
Stars
46
Forks
14
最近推送(UTC)
2023年3月17日
项目状态
已归档
synw GitHub avatar
GITHUB User

synw ↗

"All that is gold does not glitter, not all those who wander are lost". Tolkien

语言Dart

此仓库发布的插件

使用的依赖

依赖清单 3 项
  • test开发依赖^1.16.8
  • test_cov开发依赖^1.0.1
  • pedantic开发依赖^1.11.0

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

Filesize

pub package Build Status Coverage Status

A micro library that provides an easy way to get human readable file size strings

Features

  • Size can be passed as number or as string
  • Optional parameter to specify numbers of digits after comma/point

Examples

filesize(1024);                   // "1 KB"
filesize(664365320);              // "633.59 MB"
filesize(4324324232343);          // "3.93 TB"

Optional parameter to specify numbers after comma/point:

filesize(664365320, 4);          // "633.5881 MB"
filesize(4324324232343, 3);      // "3.932 TB"

Inspired by filesize.js