mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-29 21:17:34 +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'
|