1.1.0 • Published 5 years ago

unit-converter v1.1.0

Weekly downloads
35
License
mit
Repository
github
Last release
5 years ago

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.