mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
115 B
TypeScript
8 lines
115 B
TypeScript
import prettyBytes = require('pretty-bytes');
|
|
|
|
prettyBytes(1337);
|
|
// => '1.34 kB'
|
|
|
|
prettyBytes(100);
|
|
// => '100 B'
|