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
Overview
Convert byte lengths into a nice formatted string.
Installation
Install using npm:
$ npm install bytelabelAPI
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';