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