human-size

1.1.0 • Public • Published

node-human-size

Tiny module to get a human readable file size from a byte count.

Usage

var humanSize = require('human-size');
 
console.log(humanSize(10 * 1024 * 1024));
// prints "10 MB"
 
console.log(humanSize(10 * 1024 * 1024, 2));
// prints "10.00 MB"
 
console.log(humanSize(106168));
// prints "103 KB"
 
console.log(humanSize(106168, 2));
// prints "103.68 KB"

Readme

Keywords

none

Package Sidebar

Install

npm i human-size

Weekly Downloads

7,197

Version

1.1.0

License

MIT

Last publish

Collaborators

  • superjoe