Package Exports
- bytelabel
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (bytelabel) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
bytelabel 
Convert byte lengths into a nice formatted string.
Installation
$ npm install bytelabelTest:
$ npm testUsage/API
bytelabel(number)
The only argument takes either a number or a parseable string (e.g. "100") assumes that this value is in bytes and returns the size more nicely formatted.
Examples:
var bytelabel = require('bytelabel');
// Parsed values
bytelabel(1234); // => '1234 B'
bytelabel(5789678); // => '5.52 MB'
bytelabel('100'); // => '100 B'
// Errors
bytelabel(true)); // => 'error';
bytelabel(blah)); // => 'error';
bytelabel('a string')); // => 'error';License
MIT