Socket
Socket
Sign inDemoInstall

prettier-bytes

Package Overview
Dependencies
0
Maintainers
6
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    prettier-bytes

augment pretty-bytes to make the output a little more readable (and a little less precise)


Version published
Weekly downloads
72K
increased by20.52%
Maintainers
6
Install size
9.16 kB
Created
Weekly downloads
 

Readme

Source

prettier-bytes

npm travis standard

Augment pretty-bytes to make the output a little more readable (and a little less precise)

Differences from pretty-bytes:

  • The fractional portion is rounded to one digit (ex: 2.1 MB).
  • If there is more than one digit to the left of the decimal, the fractional portion is rounded off (ex: 11 KB).
  • Changed kB to KB, for more prettiness. Regular users are not likely to care about the technical difference.
  • No dependencies.

Install

npm install prettier-bytes

Usage

var prettierBytes = require('prettier-bytes')

var pretty = prettierBytes(1337)
console.log(pretty)
// logs 1.3 KB

Examples from test output:

    ✔ bytes: 2 -> 2 B
    ✔ bytes: 9 -> 9 B
    ✔ bytes: 25 -> 25 B
    ✔ bytes: 235 -> 235 B
    ✔ bytes: 2335 -> 2.3 KB
    ✔ bytes: 23552 -> 24 KB
    ✔ bytes: 235520 -> 236 KB
    ✔ bytes: 2355520 -> 2.4 MB
    ✔ bytes: 23555520 -> 24 MB
    ✔ bytes: 235555520 -> 236 MB
    ✔ bytes: 2355555520 -> 2.4 GB
    ✔ bytes: 23555555520 -> 24 GB
    ✔ bytes: 235556555520 -> 236 GB
    ✔ bytes: 2355556655520 -> 2.4 TB
    ✔ bytes: 23555566655520 -> 24 TB
    ✔ bytes: 235555566665520 -> 236 TB

Contributing

Contributions welcome! Please read the contributing guidelines first.

License

ISC

Keywords

FAQs

Last updated on 15 May 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc