0.1.4 • Published 8 years ago

byte-converter v0.1.4

Weekly downloads
343
License
ISC
Repository
github
Last release
8 years ago

#byte-converter

Converts different units of Bytes. Currently supported units are B, KB, MB, GB, TB, PB. Those units are stored inside a description file 'lib/unit-description.js'.

Installation

npm install byte-converter

Usage in base 10

var converter = require('byte-converter').converterBase10;
var result = converter(1, 'MB', 'KB'); //returns 1000

Usage in base 2

var converter = require('byte-converter').converterBase2;
var result = converter(1, 'MB', 'KB'); //returns 1024