unit-converter

Javascript generic unit converter.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
unit-converter
1.1.05 years ago8 years agoMinified + gzip package size for unit-converter in KB

Readme

convert
Build Status
Use convenient format for writing amounts and easily convert them to useful numbers.
npm install unit-converter
Example
import { convert } from 'unit-converter';

convert('10s').to('ms');
// -> 10000

convert('1h').to('ms');
// -> 3600000

convert('2KB').to('B');
// -> 2048

convert('1MB').to('B');
// -> 1048576
Supported unit systems
Currently byte and time systems are supported.
For more details about currently supported unit systems please see lib/systems/\*.js.